Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 13804  / 1 Year ago, mon, march 13, 2023, 6:27:57

I am trying to convert an MKV file to MP4 to be compatible with my PS3. I am using:


avconv -i file.mkv -c copy file.mp4

It fails and I get the following error:


[mp4 @ 0x8a17c00] pts < dts in stream 0
av_interleaved_write_frame(): Invalid argument

The file is h264 video and ac3 audio.


More From » mp4

 Answers
4

I believe that



avconv -i file.mkv -c:v copy -c:a copy file.mp4


is the correct command. You need to specify the codec copy property for the streams you want to copy separately.


[#33180] Monday, March 13, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
brellked

Total Points: 63
Total Questions: 107
Total Answers: 104

Location: Morocco
Member since Fri, May 22, 2020
4 Years ago
;