python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Can't get the right formula to set frame pts for a stream using libav
I'm trying to save a stream of frames as mp4.
Source framerate is not fixed and it stay in the range [15,30]
Encoder params:
...
eCodec.time_base = AVRational(1,3000);
eCodec.framerate = AVRational(30...
user1365836
Votes: 0
Answers: 0
using metadata or side_data in AVFrame / AVPacket to store a number
I'm struggling with adding a number to a AVFame/AVPacket before I encode it and retrieve the number back when I decode it. My original question was here but I wasn't able to get it work with the AVFra...
xyfix
Votes: 0
Answers: 1
Demuxing and decoding raw RTP with libavformat
I'm implementing a pipeline where I receive inbound RTP packets in memory but I'm having trouble figuring out how to set up libavformat to handle/unwrap the RTP packets.
I have all relevant informatio...
kevmo314
Votes: 0
Answers: 1