i want to convert x264 5.1 profile video file to 4.1 profile
Expert tell me how to use this command, when i click on ffmpeg in this directory:
C:\Users\*****\Desktop\ffmpeg-4.1-win32-static\ffmpeg-4.1-win32-static\bin
dos/cmd open for 2-3 seconds and close automatically
i have windows 7 32 bit
+ Reply to Thread
Results 1 to 6 of 6
-
-
You are answering an 8 year old post. Things have changed a little:
1. get latest ffmpeg, not "special" version linked in first answer (I think you already have, this is for others)
2. ffmpeg is a command-line utility. It expects you to type some command on the command prompt instead of double-clicking it. See this tutorial. (here so asked a similar question)
3. Use command:
Code:ffmpeg -i "YOURINPUTFILE" -map 0 -c copy -bsf:v h264_metadata=level=41 "OUTPUTFILE"
Note: this will only change the flag of the bitstream. If it exceeds e.g. the DPB size your player supports then playback will continue to fail. Then you need to completely re-encode the file.
https://ffmpeg.org/ffmpeg-bitstream-filters.html#h264_005fmetadata
https://trac.ffmpeg.org/wiki/Encode/H.264 (<- for re-encoding)Last edited by sneaker; 21st Feb 2019 at 11:52.
-
-
dc7800,I moved your post to a new thread,next time start a new thread instead of grave digging.
I think,therefore i am a hamster. -
-
In folder run:
Code:for %a in (*.mkv) do ffmpeg -i "%~a" -map 0 -c copy -bsf:v h264_metadata=level=41 "outputfolder\%~a"
https://ss64.com/nt/for_r.html
Similar Threads
-
Changing x264 profile of an mp4 from High@L5.2 to High@L5.1 or lower.
By vk199 in forum EditingReplies: 4Last Post: 12th Oct 2017, 09:25 -
Can I convert color profile with FFMPEG?
By PabstBlueRibbon in forum Video ConversionReplies: 0Last Post: 9th Sep 2017, 13:41 -
XMedia Recode profile file format?
By Videogamer555 in forum EditingReplies: 3Last Post: 13th Sep 2014, 20:40 -
How To Convert Mp4 File to MPEG4 Simple Profile
By arunraj6300 in forum Video ConversionReplies: 2Last Post: 13th Aug 2014, 17:45 -
MeGUI and X264 - The better profile for encoding HD files
By klode in forum Video ConversionReplies: 8Last Post: 26th Mar 2014, 09:49