eng3
eng3

Reputation: 452

How do I batch encode hevc videos using avisynth source?

I have several videos I need to process using avisynth then encode to hevc mkv format.

I can use avsproxy and open in avidemux but I can't batch it. I have a lot of videos that use basically the same script. I can easily create a script for each file but I don't have anything that takes it as an input.

Upvotes: 0

Views: 950

Answers (2)

ivan866
ivan866

Reputation: 582

this is the simplest command line call for ffmpeg

SET ffmpegpath=c:/ffmpeg-win-2.2.2/ffmpeg.exe
%ffmpegpath% -i input.avs -c:v libx265 -f matroska -y output.mkv

Upvotes: 0

Alexander Sorkin
Alexander Sorkin

Reputation: 904

If Windows is an option, you can use FFASTrans - it's automation encoding software, based on AviSynth and FFMpeg.

You can either use built-in modules to process video or your own AVS files as a source of video.

The software is freeware, though is not open sourced.

Upvotes: 1

Related Questions