This repository hold the source code to a command-line app to be used to demultiplex audio and video file from a DVB transport stream file (.ts file)
Current Status : in progress
-
Clean the workspace by removing old binaries / output files.
make clean
-
Compile the application
make
-
Run the application
./ts_demux <input_file> <output_video_file> <output_audio_file>
The ts_demux app requires 3 arguments:
- Input file location
- Output video file location
- Output audio file location
The correct usage is: ./ts_demux <input_file> <output_video_file> <output_audio_file>
e.g. ./ts_demux /tmp/watermarking_test_task.ts /tmp/video.mp4 /tmp/audio.wav