Tagged Questions
0
votes
0answers
6 views
How to convert Live video stream from YUV(HDYC) to RGB
I want to convert video streams from webcam. that video streams are called HDYC. I think it's a little special so I didn't control now.
My question is How to convert that format to rgb in c++ using ...
0
votes
0answers
28 views
FFmpeg streaming to Akamai like FMLE does
I am trying to stream video from my webcam to AkamaiHD service using ffmpeg (like it is implemented in Flash Media Live Encoder)
ffmpeg -f dshow -i video="Webcam C110" -s 640x360 -aspect 16:9 ...
0
votes
0answers
7 views
Force XGA in SDP for H.264
I have checked H.264 profile levels and seems to be there is no definition for XGA.
I have the following scenario:
My App <---> SIP/H264 <---> Cisco MCU
Cisco MCU supports a variety of ...
0
votes
2answers
63 views
How to encode jpeg images to H264 very fast (transform images to video)
I have 30 JPEG images (.jpg) at a resolution of 480 x 640.
Each image takes aboout 20KB (all of them takes about 600KB).
I am using FFmpeg command to encode these images into a video in H264 format.
...
0
votes
2answers
39 views
Codec not found while H.264 encoding using FFMPEG in iOS
I am trying to encode video in h.264 format using FFMpeg in iOS. Actually I am receiving sample buffer from iPhone Camera and then converting it AVFrame and further from AVFrame to H.264 video. But ...
-2
votes
0answers
37 views
ffmpeg and H264 confusion [closed]
I am new in video encoding, and just starting to learn now. I am confused about the ffmpeg and H264
What are the differences of these?
Is ffmpeg the encoder and H264 the
codec?
Is it possible to ...
0
votes
0answers
59 views
avi encoded to streaming mp4 or webmnot playing in html5 player
[EDIT]
I'm trying to get ffmpeg to encode various AVI files to mp4 for streaming purposes
I use this nodejs to start FFMPEG.
When I try this (webm) (some settings are wrapped by the node module but ...
0
votes
1answer
51 views
av_guess_format h264 returns NULL on Android
executing this code:
av_log_set_callback(_log_callback);
av_register_all();
avcodec_register_all();
LOG(avcodec_configuration());
AVOutputFormat * fmt = av_guess_format( "h264", NULL, NULL );
And ...
0
votes
0answers
213 views
How to convert H264 RTP stream from PCAP to a playable video file
I have captured stream of H264 in PCAP files and trying to create media files from the data. The container is not important (avi,mp4,mkv,…).
When I'm using videosnarf or rtpbreak (combined with python ...
0
votes
0answers
89 views
How can I convert .mp4.avi file to .h263 [closed]
I'm doing an experiment and I need .h263 bitstream samples however I didn't find many of them on internet (I would like files which size around 10MB) so I ended up deciding to convert some files from ...
0
votes
1answer
266 views
Encoding H.264 video using FFmpeg C API
I'm trying to encode a H.264 video with the FFMPEG C API.
I have successfully compiled and executed the decoding/encoding example provided by FFMPEG.
The problem I'm facing is that the .mpg file ...
2
votes
1answer
149 views
Pseudo-streaming mp4 files does not work with flash player
I've got a problem with streaming audio on my website. I thought I could put the MP3 file inside an MP4 container with h264 codec, so I can use pseudo-streaming ability of mp4 codec.
The code I'm ...
0
votes
0answers
28 views
Change in MP4 duration from actual Video duration
I have muxed a 10s H.264 video with 10s aac audio using FFMPEG into a mp4 container. But the total duration showed by VLC Player is 14seconds, any idea why this might happen?
0
votes
0answers
124 views
h.264 video in mp4 container jumps when played in VLC
I have H.264 video and AAC audio generated in Andriod phone recieved wirelessly using SIP protocol and muxed using FFMPEG APIs, The generated mp4 when played through VLC or other player is never in ...
0
votes
1answer
156 views
Decode h264 stream with ffmpeg introduces a delay, how to avoid?
I'm working on some code that encodes a video feed, sends it over UDP to a client that then decodes the stream. It working fine using a x264 encoder, my only problem is that when i call ...
0
votes
1answer
77 views
Media container for H264 and Opus [closed]
I am looking for a media container that can hold H264 video and Opus audio,
allowing me to perform playback using VLC or equivalent. H264 is a hard
requirement, and I picked Opus because of the ...
0
votes
1answer
101 views
How get sps struc from h264 video with libav ffmpeg
For my HW decoder I need know additional codec specification about video codec like h264? How I can extract low level codec info with libav ffmpeg?
The data that I need: ...
1
vote
0answers
229 views
AAC ffmpeg encoding iOS [closed]
So I have spent most of the day writing an FFMPEG client for iOS, and I ran into a problem when trying to convert my hardware encoded h.264/aac mov file to h.264/aac flv. I borrowed the muxing.c ...
0
votes
0answers
103 views
trying to efficiently extract images from h264 stream [closed]
I have a webcam (Logitech C920) that can generate H.264 stream. I want to encode it into HTTP Live Streaming (HLS) AND extract out 'thumbnail' images about once a second.
I have a command that ...
0
votes
1answer
277 views
mpeg-ts h264/aac into mp4 container change unplayable on Quicktime playable on VLC [closed]
I'm trying to change the container of a video streamed with HLS into an mp4 file. The capture and conversion is being done with ffmpeg libavformat, the output video is playable in VLC but not on ...
0
votes
1answer
324 views
convert flv video file to m3u8 format with h264 and aac codec in ffmpeg
I want to convert a flv video file to a m3u8 container using AAC and H264 encoding in FFmpeg version 0.7.15. Can anyone help me on this?
I used this command to convert to the m3u8 format, but it ...
0
votes
1answer
455 views
How to use FFMPEG to play H.264 stream from NAL units that are stored as video AVPackets
I am writing client-server system that uses FFMPEG library to parse H.264 stream into NAL units on the server side, then uses channel coding to send them over network to client side, where my ...
1
vote
0answers
133 views
Incorrect frame rate in video (Xuggler + MPEG 4 + H.264)
I have a problem with incorrect value of frame rate in output file, after converting. I made a really simple example to describe a problem:
public static void main(String[] args) {
// reader
...
0
votes
1answer
303 views
build an encoder on android(FFMPEG)
I need to build an encoder on android. Trying to encode the video stream captured by camera to h.264.
I've got the libffmpeg.so file, but I don't know how to use it.
I'm new on this. Could anyone ...
0
votes
1answer
131 views
Get frame from live video stream
I am streaming live video from my camera on my android phone to my computer using the MediaRecorder class.
recorder.setCamera(mCamera);
recorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
...
2
votes
1answer
165 views
C++ FFMPEG not writing AVCC box information
I'm trying to encode raw H264 into an mp4 container using the FFMPEG API in C++. It all works fine, however the AVCC box is empty, and it returns the error:
[iso file] Box "avcC" size 8 invalid
If I ...
0
votes
0answers
164 views
Decoding realtime h264 stream using ffmpeg.Do I need to set zero-lantancy to ffmpeg.How to set it
I write something like realtime video conference application.
I use x264 library to encode a realtime video data, Then I put the data to another end throughout the network. I want to decode ...
0
votes
1answer
176 views
H.264 is patented. What happens when developing a commercial app in Android using H264 codec in ffmpeg? [closed]
H.264 is patented.
In countries where patents on software algorithms are upheld, vendors
and commercial users of products that use H.264/AVC are expected to
pay patent licensing royalties for ...
0
votes
1answer
304 views
FFMPEG streaming RTP: time base not set
I'm trying to create a small demo to get a feeling for streaming programmatically with ffmpeg. I'm using the code from this question as a basis. I can compile my code, but when I try to run it I ...
2
votes
2answers
331 views
Modify H.264 Level in MP4 stream
I have 1000+ videos with wrong Level information, and hence do not play on some devices. They are H.264 baseline with aac audio in mp4 container. I want to correct them but avoid re-encoding. Am I ...
0
votes
1answer
45 views
What format should uploaded videos be converted to using FFMpeg?
I want to use FFMpeg to process short, uploaded videos for storage on a linux server.
These videos will be played back using the html5 version of Flowplayer. I don't care about supporting FLV.
I ...
0
votes
1answer
159 views
FFmpeg does unnecessary muxing
I am writing a script that takes videofiles such as MKV or AVI and changes them to MP4, and then prepares them from web streaming. I want my output to use H.264 and AAC codecs.
So far my command ...
5
votes
1answer
811 views
H.264 muxed to MP4 using libavformat not playing back
I am trying to mux H.264 data into a MP4 file. There appear to be no errors in saving this H.264 Annex B data out to an MP4 file, but the file fails to playback.
I've done a binary comparison on the ...
0
votes
1answer
350 views
Muxing a H.264 Annex B & AAC stream using libavformat with vcopy/acopy
I'm doing some integration work with video (H.264) and audio (AAC) from an IP camera.
I've made a bit of progress and I can store the video & audio streams individually with the ability to play ...
0
votes
1answer
206 views
ffmpeg - using crf and setting a mximum bitrate [closed]
I am trying to transcode a video to h.264/mp4.
I am using the crf = 20 but according to the requirements I also want to limit the maximum bitrate to 3mbps.
I was trying to cheat though it by using ...
0
votes
1answer
719 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
3answers
259 views
SPS values for H 264 stream in iPhone
Can someone point me to documentation that will help me get correct SPS and PPS values for iPhone.
0
votes
2answers
467 views
errors when decode H.264 frames using ffmpeg
I am getting the following errors when decoding H.264 frames received from the remote end of a H.264 based SIP video call. Appreciate any help in understanding there errors.
non-existing PPS 0 ...
-1
votes
1answer
149 views
Reducing the bit rate is dropping the audio stream [closed]
I'm a newbie to the ffmpeg, x264 commands and conversion. So please bear w/ me.
I've a H.264 content w/ very high bit rate and I'm using ffmepg, x264 commands to reduce the bit rate. The bit rate is ...
2
votes
1answer
379 views
Build ffmpeg for windows phone 8
How could I build ffmpeg for windows phone 8, arm?. I couldn't find any info about it.
Could I call from c++ to h.264 hardware encoder/decoder in windows phone 8? It looks like Media Foundation is ...
0
votes
1answer
274 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
1answer
277 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 ...
0
votes
1answer
549 views
Demux audio (AMR_WB) and video(H264) from mp4 file using ffmpeg
I want to demux audio (AMR_WB) and video(H264) from an mp4 file. I need to write a program which does this using ffmpeg libraries.
In demuxing.c file which is there in FFMPEG examples i was able to ...
0
votes
3answers
459 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
523 views
Best way to put video from RTSP to HTML page?
I have a url to RTSP stream with authentication in H264 - MPEG-4 part 10 codec.
Lik looks like this: rtsp://login:pass@xxx.xxx.xxx.xxx:557
Is there way to show video in HTML-page?
Is it require to ...
1
vote
1answer
501 views
ffmpeg: how to save h264 raw data as mp4 file
I encode h264 data by libavcodec.
ex.
while (1) {
...
avcodec_encode_video(pEnc->pCtx, OutBuf, ENC_OUTSIZE, pEnc->pYUVFrame);
...
}
If I directly save OutBuf data as a .264 file, it ...
0
votes
1answer
569 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
1answer
363 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
1answer
211 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 ...
3
votes
0answers
229 views
How do I encode KLV packets to an H.264 video using libav*
Currently I am using libav* to encode H.264 videos. I want to add KLVPackets to the bitstream but do not know where to implement it.
There is a struct within avcodec, but I am unsure of how to write ...

