-2
votes
0answers
135 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 ...
1
vote
1answer
30 views

h264 high profile video: playback from specified point

What is the proper and fast way to start streaming/playback of h264 high profile HDTV video dump from the specific point? Huge sample of the real life stream: this file. According to 'ffprobe ...
0
votes
0answers
46 views

decode h264 over rtp

I'm trying to decode a h264 bitstream from UDP. after 8 bytes UDP header and 12 bytes rtp, it looks like below: 00 01 01 00 [2 bytes seq] 6D 7C ... 00 01 01 00 [2 bytes seq] 6D 7C ... 14 02 13 02 [2 ...
1
vote
0answers
381 views

Tunneling OpenMax for video decode to video encode component

Has any one know how to set up tunnel with video_decode and video_encode OpenMax component on Raspberry Pi ? And how correctly setup properties for input and output ports ? ...
0
votes
1answer
254 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
370 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
457 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, ...
0
votes
0answers
198 views

h.264 - SVC video decoder

Im working on a project with audio/video files. I have a pcap file with h.264 - SVC video data and I need to decode this file back to video. I did this for some other protocols but have some ...
0
votes
0answers
174 views

Playing out of spec RTP H246 using gstreamer

I need to play this UDP RTP transmission, of H264. All is good when the payload is within reserved allowed range according to RFC3550 (Payload types 96-127). My problem is that on some transmissions, ...
1
vote
0answers
324 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(), ...
1
vote
2answers
1k views

AVAssetReader with streamed H.264 samples

I'm writing an RTSP/H.264 client. Live555 for parsing the RTSP is great, but using ffmpeg for software decoding is just too slow. I'd like to use AVFoundation to hardware decode the samples. I'm not ...
1
vote
1answer
212 views

Syncronization audio and video

I need to display stream video using MediaElement in Windwso Phone application. I'm getting from web-service a stream that contains frames in H264 format AND raw-AAC bytes (strange, but ffmpeg can ...
1
vote
1answer
67 views

Render frame from ISO file

I have a video_file.mp4 and I know that the mdat atom contains H.264 frames. Also I have a H.264 codec lib in my project. So, am I right that if I put mdat raw data into my lib's byte * decode(byte * ...
3
votes
1answer
6k views

How can I perform hardware-accelerated H.264 encoding and decoding for streaming? [closed]

I am able to get the RGBA frame data from the camera, and I want to encode it in H.264 format. I've used FFmpeg to encode and decode H.264 video, but at a frame size of 640x480 it's too slow for my ...
0
votes
1answer
677 views

Openmax on Android for H.264 decoder?

I am starting to develop a sample code to run H.264 decoder based on OpenMax IL. The requirement is that the docoder should work fine on any chipest(like snapdragon, omap or others supporting OpenMax, ...
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 ...
0
votes
1answer
538 views

decode h264 video in iphone

I have video in my library . I have compress that video using h264 codec . now I want that video to be decoded in the normal video by that mean it should be decoded in the mode that I want . can ...
0
votes
1answer
1k views

mp4-h264 video decoding with Media Foundation

I'm testing how to integrate libavcodec (http://en.wikipedia.org/wiki/Libavcodec) using MS Media Foundation SDK, in order to decode h264-lossless format video to YUV/RGB raw data I have 2 question: ...
2
votes
1answer
966 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
1answer
348 views

What is faster: decode H264 1920x1080 and display it on screen 1920x1080 or decode H264 1280x720 and display 1920x1080?

So we are creating some video server. We broadcast flv's to our flash clients. our providers can provide us with h254 videos of 1920x1080 and 1280x720 video sizes. But that videos vill be generated ...
10
votes
3answers
11k views

How to decode H.264 video frame in Java environment

Does anyone know how to decode H.264 video frame in Java environment? My network camera products support the RTP/RTSP Streaming. The service standard RTP/RTSP from my network camera is served and it ...