Re: [FFmpeg-user] ffmpeg reads cfr as vfr

2019-01-10 Thread Felix Muster
Thank you for your answer. I appended the command line and console output in my first mail. Please scroll down. The raw videostream is a cfr stream. Every frame has a duration of 1/(24000/1001). So there are no timestamps or anything like that. I don’t understand the error message. ___

Re: [FFmpeg-user] ffmpeg reads cfr as vfr

2019-01-09 Thread Carl Eugen Hoyos
2019-01-09 4:51 GMT+01:00, Felix Muster : > ffmpeg -r 24000/1001 -i test.mkv -map 0:0 -c copy test.mp4 The input option "-r" can be useful but should in general be avoided. Please explain why you need it (command line and complete, uncut console output). FFmpeg neither reads a file as cfr nor vf

[FFmpeg-user] ffmpeg reads cfr as vfr

2019-01-08 Thread Felix Muster
Hello, I'm trying to mux a video stream embedded in mkv from that mkv container to mp4 container (ffmpeg -r 24000/1001 -i test.mkv -map 0:0 -c copy test.mp4). Video stream has cfr 24000/1001 but ffmpeg thinks it is vfr. I tried the solution from here https://trac.ffmpeg.org/ticket/4768 and forc