Quote:
Originally Posted by antihero
TS is the video stream file format used by MFC.
You can easily re-mux (without transcoding) the TS file to a MP4 file with FFmpeg.
ffmpeg -i input.ts -acodec copy -bsf:a aac_adtstoasc -vcodec copy output.mp4
The new MP4 file can be played in VLC smoothly.
|
If you replace ffmpeg version 3.2.4 with version 2.8.3
https://www.videohelp.com/download/f...in32-static.7z and use this line in your exe:
ffmpeg -i (url) -c:v copy -c:a libvo_aacenc -b:a 128k (path + filename)
you can save in FLV format like with rtmpdump.exe ... that file not need fixing or converting.