Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 694 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 694 Bytes

TS

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

  1. Clean the workspace by removing old binaries / output files.

    make clean

  2. Compile the application

    make

  3. Run the application

    ./ts_demux <input_file> <output_video_file> <output_audio_file>

Usage

The ts_demux app requires 3 arguments:

  1. Input file location
  2. Output video file location
  3. 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