Batch-Quick-hack for converting to FFV1

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
peter_b
Chatterbox
Posts: 371
Joined: Tue Nov 12, 2013 2:05 am

Batch-Quick-hack for converting to FFV1

Post by peter_b »

Code: Select all

@echo off
cls

SET FILE_IN=%1
SET FILE_OUT=%FILE_IN:~0,-4%-FFV1_PCM.avi
SET "FFMPEG=C:\Program Files\ffmpeg\bin\ffmpeg.exe"

@echo.
@echo Konvertiere "%FILE_IN%" nach FFV1...
@echo Ausgabe. %FILE_OUT%
@echo.
@pause


"%FFMPEG%" -i "%FILE_IN%" -c:a pcm_s16le -c:v ffv1 -level 1 -g 1 "%FILE_OUT%"

cls
Post Reply