Hi,
a cat here. However
Please can you download this .ts video?
https://www.swisstransfer.com/d/3a601a60-de2d-4c74-bf07-f1198f53fe7c
I can play it on VLC, for a duration of 34 minutes and 31 seconds.
But I cannot transcode it, using avisynth/ffmpeg or other editing programs. Seems that a part of it is "invisibile":
the part start at 4'42'' and finish at 26'20''
Is there a way to resolve? thanks
+ Reply to Thread
Results 1 to 4 of 4
-
-
The file has a corruption on the PRC and has errors in the audio/video streams.
You can use TSDoctor to fix it. -
If you can play it in VLC - VLC can convert video too
There are 2 video streams, 3 audio streams. You can demux or combine them with eac3to, it will also fix the gaps and errors
1: h264/AVC, 1080i50 (16:9)
2: h264/AVC, 720p50 (16:9), 152987ms
3: MP2, Italian, 2.0 channels, 128kbps, 48kHz, -1153ms
4: MP2, Italian, 2.0 channels, 128kbps, 48kHz, 152523ms
5: MP2, oth, 1.0 channels, 64kbps, 48kHz, -1177ms
Stream 1 video is 10:47, Stream 2 video is 23:42 . It looks like they play sequentially in VLC. Stream 4 audio has long audio silence and 26:15. Stream 5 is 34:40 but lower bitrate audio .You could demux them and edit them as you see fit. The different resolution would cause problem for many programs, so you should probably match them
Code:eac3to "Rai 3 TGR Emilia-Romagn.ts" -demux
eg.
Code:eac3to "Rai 3 TGR Emilia-Romagn.ts" -demux 2: stream2.h264
-
For the "hidden" Stream 2 , Stream 4 belong together with Stream 2, the delay is about -153s . I wouldn't re-encode the audio, I'd just cut the beginning silence and mux it (no quality loss)
You can test sync, seeking in MPCHC to preview, to see how much you need to cut
Stream2
Code:vid2 = DGSource("stream2.dgi") aud2 = FFaudioSource("Rai 3 TGR Emilia-Romagn - 4 - MP2, Italian, 2.0 channels, 128kbps, 48kHz.mp2") audiodub(vid2,aud2) delayaudio(-153)
Or if you wanted to combine/join/edit with Video Stream 1 (and audio stream 3, they belong together), you can do that in the script too .
(Personally, I prefer not to re-encode audio, but mp2 audio might not be compatible for your situation)
Similar Threads
-
Problematic movie dvd
By Dvdman78 in forum DVD & Blu-ray WritersReplies: 2Last Post: 26th Mar 2022, 05:19 -
Would someone look at this problematic MP4 file, please?
By EmmB in forum Newbie / General discussionsReplies: 5Last Post: 17th Nov 2020, 15:56 -
A/D Transcoding Pass-through or Elgato Video Transfer?
By Obtong in forum Newbie / General discussionsReplies: 0Last Post: 7th Jul 2020, 21:34 -
RipBot264 video transcoding loses more than 4 minutes of video
By mwalimu in forum Video ConversionReplies: 4Last Post: 13th Jul 2019, 18:30 -
Trouble with DVD-Video compatible transcoding from 5:4 to 4:3
By pauleck in forum Newbie / General discussionsReplies: 7Last Post: 21st Apr 2019, 09:29