0
votes
0answers
28 views

Simple Build of Libavcodec.so and libavformat.so on Mac

Who needs ffmpeg? Not me. What I need is to be able to decode a video stream along with its audio stream, so that can put the frames on an opengl surface in sync with the audio. FFmpeg is a tool ...
0
votes
0answers
38 views

Green screen writing FLV file libavformat

I've written a piece of C++ code that can capture webcam video frame, decode them, convert them to YUV420P, encode them and then write them to a file. If I use the mpeg2 codec and write to a .mpg ...
0
votes
1answer
68 views

What is the best Library/SDK for Realtime 4k video Encoding?

My requirement is create a encoded video from raw frames in atleast 4k resolution. Presently I am recording videos @1080p using libavcodec (H.264, MPEG4). What will be the best solution for recording ...
1
vote
1answer
60 views

Scaling YUV420P with libswscale - getting gray image out

I've got a basic understanding of the format of YUV420p data. I understand it's in planes and that the Y data is basically black & white luma and should be width*height pixels in length. The U ...
0
votes
1answer
46 views

Can the frame size be cropped during decoding using libavcodec?

I've followed Dranger's tutorial for displaying video using libav and FFMPEG. http://dranger.com/ffmpeg/ avcodec_decode_video2 seems to be the slowest part of the video decoding process. I will ...
0
votes
0answers
20 views

Ffmpeg-Build: Error during build

I am building ffmpeg and stuck in an unusual spot. Inside libavutil we have float_dsp.h and float_dsp.c files. Inside these file there is a declaration of a methond which is: void ...
-2
votes
0answers
148 views

Decode video with CUDA nccuvid and ffmpeg [closed]

*strong text*I starting to implement custum video decoder that utilize cuda HW decoder to generate YUV frame for next to encode it. How can I fill "CUVIDPICPARAMS" struc ??? Is it possible? My ...
0
votes
1answer
44 views

Not able to read audio streams with ffmpeg

I am trying to solve a big problem but stuck with very small issue. I am trying to read audio streams inside a video file with the help of ffmpeg but the loop that should traverse the whole file of ...
0
votes
1answer
67 views

How to encode with ffmpeg if number of images smaller than GOP size

The code bellow creates mp4 video file from jpeg images. When number of images is greater than GOP size the encoding success and after 10th image gotPacket that returned by avcodec_encode_video2 is > ...
1
vote
0answers
106 views

FFMPEG: change sample rate/bit rate of a video with android-ndk

hi I am trying to change the sample rate of the audio streams of a video file using ffmpeg. but i am not able to change audio of the original file. Till now i am able to read audio and video streams ...
0
votes
0answers
120 views

rtp streaming using av_interleaved_write_frame or av_write_frame

I am using ffmpeg windows libraries to rtsp/rtp demux and muxing. But I have problem about processing time of av_interleaved_write_frame or av_write_frame, for example for h264 encoded 1920x1080 ...
0
votes
1answer
81 views

FFmpeg streaming: can't see image from h263 stream in flash

I'm using FFmpeg for live rtmp-streaming of my desktop to Wowza. If I publish stream in h264 or flashsv2 codec, everything works fine, but I need h263 support too. The problem is, that I see no images ...
3
votes
1answer
62 views

What do these two parts of libavcodec/h263data.h do exactly?

Below are two segments of code from the FFMPEG library, specifically located here: libavcodec/h263data.h (http://ffmpeg.org/doxygen/0.6/h263data_8h-source.html). I would like to know more about how ...
0
votes
1answer
122 views

How to compile ffmpeg with rm/rmvb support?

I googled around and found no solution. What's the specific arguments to compile the newest version FFMPEG to support rm,rmvb format video? I am new in video proccessing. Thanks for any help.
0
votes
0answers
41 views

How to estimate I frame motion degree?

I am measuring video quality using the video's I frames. But I found some I frames contains motion,for example a dancing MV. As a result it is inaccurate to measure the sharpness of a video according ...
0
votes
1answer
91 views

How to get number of I/P/B frames of a video file?

I want to extract information of a video file to get the count of its I/P/B frames. How to do it in ffmpeg? Or should I programming using libavformat and libavcodec to do it? Many thanks!
0
votes
1answer
597 views

How to publish selfmade stream with ffmpeg and c++ to rtmp server?

Have a nice day to you, people! I am writing an application for Windows that will capture the screen and send the stream to Wowza server by rtmp (for broadcasting). My application use ffmpeg and Qt. ...
0
votes
0answers
47 views

How to amplify audio in Libav

I use the avcodec_encode_audio() function to encode raw data from microphone, but it is very quiet (all mic settings set to max). Is there a quick way to amplify the audio or I must do it manually ...
3
votes
1answer
132 views

trouble compiling ffmpeg library and converter class

I am using this project as a reference : The code is avaiable at http://roman10.net/src/affmpeg.zip. I am trying to compile this project with ffmpeg with different configuration than the project ...
0
votes
1answer
159 views

Using zeranoe libavcodec build in visual studio 2008

I am trying to use libavcoded shared build from zeranoe in visual studio 2008. I have tested my application using libavcodec in debug mode and it is running fine. but when i am trying to build the ...
0
votes
1answer
248 views

libavcodec video decoding not working

I am trying to decode video encoded with H264. I am sending AVPacket's data and its size to decoder code. there I am trying to decode the frame and display it on a GUI. problem is when I am decoding ...
2
votes
0answers
85 views

Is it possible to add audio at the end of an existing audio stream?

I managed to implement my decoding and encoding audio class with libavformat. I can create and read mp3, ogg, ... Now, I'd like to add a function to "record at the end of an existing audio file". ...
0
votes
1answer
233 views

avformat_write_header produces invalid header (resulting MPG broken)

I am rendering a video file from input pictures that come from a 3D engine at runtime (I don't pass an actual picture file, just RGB memory). This works perfectly when outputting MP4 using ...
0
votes
1answer
131 views

Strange Sound produced by ffmpeg and SDL

I'm following the updated version of the original dranger.com/ffmpeg tutorial at https://github.com/mpenkov/ffmpeg-tutorial The third step(Source code: ...
0
votes
1answer
438 views

Convert .m4a to PCM using libavcodec

I'm trying to convert a .m4a file to raw PCM file so that I can play it back in Audacity. According to the AVCodecContext it is a 44100 Hz track using the sample format AV_SAMPLE_FMT_FLTP which, to ...
0
votes
1answer
234 views

FFMPEG Error VC1 to X264 (maybe decoding VC1)

I am encountering the following error when transcoding using FFMPEG. It seams to me that it's an error decoding the VC1 format and has actually nothing to do with the target format (x264) I want to ...
1
vote
0answers
86 views

Codec profile of AAC media file [closed]

I need to find out codec profile of some AAC media file. (I want to know if that file iz HE-ACC or some other codec profile). I tried with source like this: AVFormatContext* pFormatCtx; ...
1
vote
1answer
291 views

AVFrame to RGB - decoding artifacts

I want to programmatically convert a mp4 video file (with h264 codec) to single RGB images. With the command line this looks like: ffmpeg -i test1080.mp4 -r 30 image-%3d.jpg Using this command ...
0
votes
0answers
48 views

vmr9 surface with ffmpeg codec

I am a multimedia newbie, so pardon me if I am asking a stupid question. I want to use VMR9 surface while using the codec's from FFMPEG library. So far my search result tells that VMR9 has it's own ...
0
votes
1answer
192 views

avcodec_decode_video2 always sets got_picture_ptr to 0 while using with live555

I am trying to decode frames using libavcodec. My applications retrieves rtp packets from on rtsp stream using live555. I have searched quite a lot for reasons of avcodec_decode_video setting ...
0
votes
0answers
80 views

When could fps be a guess and not exact value?

I use libavcodec for video processing. The documentation of AVStream->r_frame_rate says Real base framerate of the stream. This is the lowest framerate with which all timestamps can be ...
0
votes
1answer
367 views

How to find and decode efficiently Nth frame with libavcodec?

Please, this is not duplicate of similar posts! I want to find and to decode Nth frame, for example 7th frame. As I understood, using time_base I can calculate how many ticks is each frame and by ...
3
votes
1answer
216 views

keyframe is not a keyframe? AV_PKT_FLAG_KEY does not decode to AV_PICTURE_TYPE_I

After decoding a packet containing AV_PKT_FLAG_KEY in the flags, I was expecting to get I-frames, but instead I got P-frames: After a call to: avcodec_decode_video2(codecCtx, frame, ...
0
votes
0answers
52 views

Is there is another way to know why encoding fails besides got_packet_ptr param?

I try to create video from jpeg images(using libavcodec), so I use this function for encoding: int avcodec_encode_video2(AVCodecContext* avctx, AVPacket* avpkt, const AVFrame* frame, int* ...
0
votes
1answer
192 views

Decoder crashes after ffmpeg upgrade

Recently I upgraded ffmpeg from 0.9 to 1.0 (tested on Win7x64 and on iOS), and now avcodec_decode_video2 seagfaults. Long story short: the crash occurs every time the video dimensions change (eg. from ...
1
vote
2answers
647 views

libavcodec get video duration and framerate

I have a video encoded in .3gp h.264 and I am looking to get its framerate and duration in C. Here is the code I use after opening the file and finding the appropriate codecs: AVRational rational = ...
0
votes
2answers
595 views

How to create video using avcodec from jpeg images of type OpenCV::Mat?

I have colored jpeg images of OpenCV::Mat type and I create from them video using avcodec. The video that I get is upside-down, black & white and each row of each frame is shifted and I got ...
0
votes
1answer
279 views

How are audio frames decoded by libavcodec?

Here is how my process of decoding an audio stream using ffmpeg's libav* [videofile]--> (read audio packets) --> [pkts queue] --> (decoder) --> speaker's sample buffer for some reason i need ...
0
votes
1answer
496 views

fps porblem when saving video in mp4 container

When I decode frames from avi file and then decode them in x264 and save to mp4 file, the fps of the output file is always 12,800. Therefore the file is played very fast. But, when I save the encoded ...
0
votes
1answer
164 views

Where ffmpeg flags like CODEC_FLAG2_BPYRAMID are located?

I'm developing on using VS2010 with ffmpeg and tried the code from here. But VS says that it cannot find ...
0
votes
1answer
327 views

av_write_frame fails when encoding a larger audio file to .mpg

I am encoding live rendered video data and an existing .wav file into an mpg-file. To do that I first write all audio frames, and then the video frames as they come in from the render engine. For ...
0
votes
1answer
91 views

What could change the fps when copying frames from mp4 file to mp4 without reencoding?

I try to copy video from in.mp4 to out.mp4 without reincoding. I'm using the code example suggested by pogorskiy here. The copy process success, but the video is played very fast. I checked the fps of ...
1
vote
1answer
653 views

Why decoding frames from avi container and encode them to h264/mp4 doesn't work?

I started using ffmpeg and I want to convert avi file to mp4/h264 file. I've read many posts including this, but I couldn't find any good example how to save frames to mp4 file. The code below is ...
1
vote
2answers
686 views

Can anyone help in understanding AVFrame.linesize[]?

I tried to find what each cell of AVFrame.linesize[] means, but I didn't found. As I understood linesize[0] is the width, linesize[1] is the height. If I'm right what does other cells mean? why ...
2
votes
0answers
191 views

FFMPEG avcodec_find_decoder(2) (CODEC_ID_MPEG2VIDEO) always returns incomplete AVCodec?

I got a problem with FFMPEG (avcodec-54.dll) 1) I wrote a .NET wrapper. As far as I can see it works well. 2) I try to decode something... and thats were the problem is: ... ...
1
vote
0answers
127 views

How to write incoming frames to file without touching in ffmpeg?

I am able to read frames from av_open_input_file and decode and reencode it with another codec and save to file. Now, I want the same thing, except i don't want to decode or reencode. I want to do ...
1
vote
1answer
276 views

Properly open audio files with libav/ffmpeg

I am trying to decode audio samples from various file formats using ffmpeg. Therefore I have started some experimenting based on the code in this discussion: How to decode audio via FFmpeg in Android ...
3
votes
0answers
261 views

FFMPEG Can't Display The Duration Of a Video

I'm trying to use ffmpeg to capture frames from a video file, but I can't even get the duration of a video. everytime when I try to access it with pFormatCtx->duration I'm getting 0. I know the ...
1
vote
0answers
350 views

how to stream h.264 video with mp3 audio using libavcodec?

I read h.264 frames from webcamera and capture audio from microphone. I need to stream live video to ffserver. During debug I read video from ffserver using ffmpeg with following command: ffmpeg -i ...
2
votes
1answer
544 views

What are the differences between FFmpeg and Libav? [closed]

According to the first comment for this question, and i quote "Libraries with this name are provided from both the FFmpeg project and the Libav project, but they are mutually ...

1 2 3