....wich one does not delete tracks and subtitles after the first?I would like to compress video but keeping multiple audio tracks and multiple subtitles in it.....
![]()
+ Reply to Thread
Results 1 to 9 of 9
-
-
Hybrid can retain multiple audio and sub tracks.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Thanks
Im trying to compress several movies but all of them fail on subtitles, audio tracks or image...
It´s difficult for a newie! haha....
-
-
-
You mean bitrate? Forget bitrate, use constant quality encoding. You'll always get the quality you specify.
If you have lots of files to process similarly, you can't beat ffmpeg in a batch file. Put ffmpeg.exe in c:\windows then create a batch file (on your Desktop or somewhere else convenient for you) with Notepad:
Code:ffmpeg -i %1 -vcodec libx264 -preset medium -crf 18 -acodec copy -map 0 "%~nx1.mkv"
If you find the files are turning out larger than you want use a higher crf value. Quality won't be as good though. You can use a lower crf value to get higher quality (and bigger files).
If it's too slow you can use a faster preset. Try veryfast. The quality won't be as good though. Using a slower preset like slow will get you better quality but will take longer. The possible presets are (in order from fastest and lowest quality to slowest and highest quality) ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow, placebo. There's usually little point in going faster than veryfast, or slower than slower.
There's not much difference in speed/quality between the different free programs -- they're all based on the same open source, free encoders. The difference is mostly in the default settings they use. For example, there is a 100 fold difference in encoding speed between x264's ultrafast and placebo presets.
There are many examples of how to use ffmpeg in these forums. Especially one big thread:
https://forum.videohelp.com/threads/386028-FFmpeg-Batch-for-Windows
There are many GUI front ends for ffmpeg too. And it's easy to create a batch file that reencodes every video in a folder, even a folder tree. -
@jagabo
Please have a look at powershell, it's 100 times better (not an exaggeration!).
Here are 290 powershell guides, a lot of them teach basics:
https://adamtheautomator.com/tag/powershell/
Best experience is with Windows Terminal (Windows 10) and VS Code for editing.
Similar Threads
-
is libX265 encoder in latest FFMPEG is the same as standalone x265 encoder?
By junglemike in forum Video ConversionReplies: 5Last Post: 21st Sep 2016, 01:36 -
What's a good, free MPEG2 encoder?
By -Habanero- in forum Newbie / General discussionsReplies: 66Last Post: 10th Sep 2016, 17:59 -
Free (not free trial) basic video editing software-which one suggested.
By video2016 in forum EditingReplies: 7Last Post: 12th Jul 2016, 15:14 -
Need advice for free antivirus+free firewall combo
By alegator in forum ComputerReplies: 16Last Post: 6th Jul 2016, 17:21 -
Free way to make DVD burner region free for playback?
By philglew in forum DVD & Blu-ray WritersReplies: 4Last Post: 10th Feb 2016, 05:13