Hi
Reuben Martin
I am a new for ffmpeg , I got the problem similar as this topic talked. Application needs specific video PID and audio PID and PCR PID and PMT PID, and i try the command as you said .
ffmpeg -i input.mp4 -codec:v copy -codec:a copy -streamid 0:50 -streamid 1:52-f mpegts output.ts
Result is video and audio ‘s pid are correct , but this command changed PCR PID too . I don’t understand why ?
when i try command to modify PCR PID like
ffmpeg -i d:\1.m2t -acodec copy -vcodec copy -f mpegts -mpegts_start_pid 0x150 d:\test.m2t
Result is PCR PID 0x150 ,problem happen for stream pid , video pid is changed also
0x151(original is 0x200) , audio pid is changed to 0x152(original is 0x201).
I don’t know why?
I just want to specified value respectively.
wait for you help . thanks a lot !