<div dir="ltr">Hello,<div><br></div><div><div>This seems like an issue I faced with my own attempt at transcoding video and a fix was suggested by a member of this mailing list (thanks James). You need to set the AVPacket duration field, otherwise this issue is present. This would mean adding something in the lines of the following line of code before your av_interleaved_write_frame is called:</div><div><div><br></div><div>// for example, if 25 FPS, and time_base is 12800, then packet.duration = 12800 / 25 = 512<br></div><div>output_packet.duration = format_context->streams[stream_index]->time_base.den / format_context->streams[stream_index]->time_base.num / format_context->streams[stream_index]->avg_frame_rate.num * format_context->streams[stream_index]->avg_frame_rate.den;<br></div><div><br></div><div> /* mux encoded frame */<br>    ret = av_interleaved_write_frame(format_context, output_packet);<br></div><div><br></div><div>Hope this helps!</div></div></div><div>Vas</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 10, 2020 at 9:19 PM Tuukka Pasanen <<a href="mailto:pasanen.tuukka@gmail.com">pasanen.tuukka@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello,<br>
<br>
I noticed that example code 'doc/examples/transcoding.c' produces in <br>
correct FPS if it's used with MP4 container. Encoded video type doesn't <br>
seem to be the case as I tested H264 and MPEG4 and both were nearly <br>
identical.<br>
<br>
With sort videos it's not much just something like 21,85 fps with 24 fps <br>
video but longer ones can be something like 0.05 fps.<br>
<br>
That it what ffprobe dump and when you play them they are really lagging <br>
as they go so slow. Packets seems to be correct and it neither wise not <br>
broken.<br>
<br>
I don't know if this just feature or is this as bug. With ffmpeg same <br>
source file produces correct file with correct fps.<br>
<br>
Sincerely,<br>
<br>
Tuukka<br>
<br>
_______________________________________________<br>
Libav-user mailing list<br>
<a href="mailto:Libav-user@ffmpeg.org" target="_blank">Libav-user@ffmpeg.org</a><br>
<a href="https://ffmpeg.org/mailman/listinfo/libav-user" rel="noreferrer" target="_blank">https://ffmpeg.org/mailman/listinfo/libav-user</a><br>
<br>
To unsubscribe, visit link above, or email<br>
<a href="mailto:libav-user-request@ffmpeg.org" target="_blank">libav-user-request@ffmpeg.org</a> with subject "unsubscribe".</blockquote></div>