Skip to main content

Posts

Showing posts with the label ffmpeg

How to combine TS video and audio (tsMuxer) and convert into MP4 video file

To add audio with .ts video file and convert into mp4 you can use FFmpeg. Check below link for installation steps of FFmpeg: How to setup, install, configure, use ffmpeg on Windows 10 Follow below steps to achieve above target: Open CMD and set the path where your audio and ts video files are placed: Now use below command to add audio to ts file and convert into mp4. ffmpeg -i audio_file_name.audio_ext -i video_file_name.video_ext -async 1 -c copy output_video_name.encoding_extension ffmpeg -i 01_audio.aac -i 01.ts -async 1 -c copy 01.mp4 I have done this because my download manager didn't able to download audio in TS file, I got audio and TS file separately. If you have video data only in TS files, and audio data only in another TS files. You can use tsMuxer to add the audio stream from one .ts file into the .ts file containing the video or vice versa. This is called muxing and doesn't affect the quality of the audio or video in any way. ...

How to setup, install, configure, use ffmpeg on Windows 10

FFmpeg is the leading multimedia framework to decode, encode, transcode, mux, demux, stream, filter and play. It is a command line tool and open source project and available for Linux, Windows and MAC OS. OS Requirement: All builds require at least Windows 7 or Mac OS X 10.10. Nightly git builds are licensed as GPL 3.0, and release build are licensed as GPL 3.0 and LGPL 3.0. Download Documentation Setup: After the download of ffmpeg****static.zip extract and place in desired folder. On Windows 10 I have used below path: Now go to your system properties: Click on Advanced system settings: Click on Environment Variables button: Under system variables select Path and click on edit button, now press New and add the path where you have placed the files, make sure to add bin folder as well because exes are available under bin folder: Now Windows will recognize ffmpeg command and you can use it in cmd now. Check below link for learning how t...