0
votes
0answers
112 views

FFMPEG avformat_open_input returns unpopulated Format context

I am trying to load avi and flv files programatically with FFMPEG API.The files seem to get loaded because avformat_open_input doesn't return 0 .But when inspecting AVFormatContext variable for ...
0
votes
1answer
259 views

omxplayer AVPacket

Hi Im trying decode video usin OpenMax component and hello_video example from GitHub. I simply edit video.c and replace "main frame while" on AVFormat -read frame packet for read not only *.h264 ...
0
votes
3answers
389 views

FFmpeg not honoring bitrate for different containers?

I am attempting to encode a mp4 video file into a flv video. Here is what I am doing: #include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include ...
0
votes
1answer
490 views

How to write NALs produced by x264_encoder_encode() using ffmpeg av_interleaved_write_frame()

I have been trying to produce a "flv" video file in the following sequence: av_register_all(); // Open video file if (avformat_open_input(&pFormatCtx, "6.mp4", NULL, NULL) != 0) return -1; ...
0
votes
1answer
474 views

h264 ffmpeg: How to initialize ffmpeg to decode NALs created with x264

I have encoded some frames using x264, using x264_encoder_encode and after that I have created AVPackets using a function like this: bool PacketizeNals( uint8_t* a_pNalBuffer, int a_nNalBufferSize, ...
1
vote
0answers
328 views

libav/ffmpeg: avcodec_decode_video2() returns -1 when separating demultiplexing and decoding

I'm using libav (from a C++ program on Linux and Windows) to decode video streams from a file, which works fine (decoding various formats like H264 and MPEG2) using avformat_open_input(), ...
2
votes
0answers
203 views

Error when Decode h264 file by using FFMPEG with multithreading?

I write the code for decoding many .flv video files. Each video file is decoded by a separate thread. When I try on 1 thread, everything is ok. But when I try on more than 2 threads, it always occurs ...
0
votes
0answers
223 views

FFmpeg seeking in Mpeg4 streams

I am currently attempting to develop a player that can perform accurate seeking based on an mpeg4 elementary video stream. I'm in the planning stage and trying to decide how to go about things and I'd ...
13
votes
1answer
2k views

Decoding Video using FFMpeg for android

I tried to decode video using FFMpeg library from the sample examples available on internet, i figure it out with new version of ffmpeg, here is the code which I called from my class file, private ...
4
votes
1answer
666 views

FFmpeg av_read_frame and maximum packet size

Any possibility to detect maximum packet (AVpacket) size that av_read_frame() can read?
0
votes
1answer
524 views

Decode audio stream channels to multiple wavs using ffmpeg?

My goal is to decode an ac3 from avi to multiple wavs - each for each channel, using ffmpeg, please, help me with that. Now, using ffmpeg.exe -i teh.avi -c:a copy teh.ac3 teh.wav Would decode it ...
1
vote
1answer
3k views

mp3 decoding using ffmpeg API (Header missing)

i have been trying to decode an MP3 file to pcm, using ffmpeg API, but i keep getting an error [mp3 @ 0x8553020]Header missing this is the code i use : #include <stdlib.h> #include ...
2
votes
2answers
4k views

using FFmpeg, how to decode H264 packets

I'm new to FFmpeg struggling to decode H264 packets which can be obtained as an array of uint8_t. After many of investigations, I think it should be able to just put the array into an AVPacket like ...
1
vote
0answers
169 views

What is the minimum buffer size needed to initialize .ts (transport stream) file using FFMPEG

I can play .ts files using FFMPEG by passing full file. Now I have to play .ts as a buffer. Now I'm reading a ts file say 188*200 means 200 packets. Can anybody tell me what is minimum buffer size or ...
1
vote
3answers
2k views

Decode h264 video

I am looking for a way to decode h264 (or indeed any video format) using c#. The ultimate goal is to be able to decode the images and very strictly control the playback in real time. The project I am ...
2
votes
2answers
772 views

What are the APIs for hardware accelerated video decoding in phones?

I have seen many smartphones coming with hardware accelerated video decoding supporting mpeg2 and h264, but unlike in desktop and laptop systems, it is not clear to me how to interact with the ...
0
votes
0answers
660 views

Problem with using ffmpeg on Android

I am using ffmpeg on Android for play audio. But it doesn't work well. This is my Java code. public class AudioPlayerActivity extends Activity { private AudioTrack track; private FileOutputStream ...
1
vote
0answers
393 views

How to switch from Stereo to mono

I'm using SDL and FFMPEG to decode audio. my test file has combination of Stereo and mono channels. When i try to play the audio file the stereo part will play, but my application fails to play when ...
2
votes
1answer
998 views

How to decode H.264 HL with ffmpeg programically?

I'm going to decode H.264 HL with ffmpeg library on iPhone. There aren't any samples decoding with ffmpeg programically. Who have a ffmpeg sample code decoding any codec? Thanks for your help.
0
votes
2answers
2k views

The problem with FFmpeg on Android

General problem in the following: I decode the audio as follows: ReSampleContext* rsc = av_audio_resample_init( 1, aCodecCtx->channels, aCodecCtx->sample_rate, ...
1
vote
1answer
969 views

Android FFMPEG - Loading a http radio url and decoding to play it

I'm trying to load a aac radio stream and play it. For this I'm trying to decode the audio and play it using audiotrack. I'm trying to use FFMPEG for this purpose. Is it possible to pass in the http ...
1
vote
1answer
1k views

Playing music in Android through the Audio Track

I wrote a script that decodes aydio using FFmpeg. Here's the code: JNIEXPORT jint JNICALL Java_org_libsdl_app_SDLActivity_main( JNIEnv* env, jobject obj, int argc, jstring argv, jbyteArray array) { ...
3
votes
1answer
1k views

FFMPEG and MP3. How decode

How to decode mp3 audio using ffmpeg (using the API)? If not complicated - example code? PS I went to open the file, find the audio channels. then I do not understand what to do ...
0
votes
2answers
5k views

How to decode audio via FFmpeg in Android

I am writing a player for Android with FFmpeg compiled for Android NDK. I could open the file through FFmpeg and wrote this: av_register_all(); char* str = (*env) -> GetStringUTFChars(env, ...
3
votes
1answer
6k views

H264: decode series of nal units with ffmpeg

I tried to decode a series of nal units with ffmpeg (libavcodec) but I get a "no frame" error. I produced the nal units with the guideline at ...