Download for windows:
https://ffmpeg.zeranoe.com/builds/
Choose:
Version: 3.4.1 (latest version today)
Architecture: Windows 32 or 64bit
Linking: Static
--> and use the Download Built link.
extract the file, and you will find ffmpeg in the bin directory
In Windows Explorer go to a directory with the file you want to convert (copy the ffmpeg file to that directory also!), hold SHIFT down and right click in the area where the file is located -> command prompt
https://youtu.be/9NX_TT37rLI?t=26s
If you have the black command window, now you can use one of the codes below, or find your own code depending on what you want to do with the file(s).
BATCH extract 5 channel audio
BATCH Audio conversion to WAV
* NON-BATCH Conversion: remove the [FOR /F "tokens=*" %G IN ('dir /b *.*') DO] - part
Rotate
Streaming from a website with a *.m3u8 link
* output.mp4 or output.ts
https://ffmpeg.zeranoe.com/builds/
Choose:
Version: 3.4.1 (latest version today)
Architecture: Windows 32 or 64bit
Linking: Static
--> and use the Download Built link.
extract the file, and you will find ffmpeg in the bin directory
In Windows Explorer go to a directory with the file you want to convert (copy the ffmpeg file to that directory also!), hold SHIFT down and right click in the area where the file is located -> command prompt
https://youtu.be/9NX_TT37rLI?t=26s
If you have the black command window, now you can use one of the codes below, or find your own code depending on what you want to do with the file(s).
BATCH extract 5 channel audio
FOR /F "tokens=*" %G IN ('dir /b *.*') DO ffmpeg -i "%G" -vn -ar 48000 -map 0:a:0 "%~nG0.wav" -map 0:a:1 "%~nG1.wav" -map 0:a:2 "%~nG2.wav" -map 0:a:3 "%~nG3.wav" -map 0:a:4 "%~nG4.wav"
FOR /F "tokens=*" %G IN ('dir /b *.*') DO ffmpeg -i "%G" -vn -ar 48000
FOR /F "tokens=*" %G IN ('dir /b *.*') DO ffmpeg -i "%G" -vn -ar 44100
FOR /F "tokens=*" %G IN ('dir /b *.*') DO ffmpeg -i "%G" -vn -ar 44100
Rotate
ffmpeg -i input.mp4 -vcodec libx264 -preset medium -crf 24 -threads 0 -vf transpose=1 -acodec copy output.mkv
ffmpeg -i "http://webriplink.m3u8" -c copy output.mp4
Comment