Tagged Questions

Provides best-in-class performance, compression, and features. Achieves dramatic performance, encoding 4 or more 1080p streams in realtime on a single consumer-level computer. Gives the best quality, having the most advanced psychovisual optimizations. Support features necessary for many ...

learn more… | top users | synonyms

18
votes
4answers
2k views

Generating movie from python without saving individual frames to files

I would like to create an h264 or divx movie from frames that I generate in a python script in matplotlib. There are about 100k frames in this movie. In examples on the web [eg. 1], I have only seen ...
10
votes
1answer
9k views

How to encode series of images into H264 using x264 API? (C/C++)

How to encode RBG images into H264 frames (Keyframe + some dependent frames)? So I created some images how to turn them into H264 now?
4
votes
3answers
5k views

Encoding h.264 with libavcodec/x264

I am attempting to encode video using libavcodec/libavformat. Audio works great, but when I try to encode video I get the following errors: [libx264 @ 0x10182a000]broken ffmpeg default settings ...
3
votes
1answer
399 views

FFmpeg/X264: Split video mid-GOP without reencoding entire stream

I've got an H264 video (Stored in an MP4 file). Each GOP is approx 10s long. I want to trim the first couple of seconds off the video, which means I need to split the first GOP. Is there a way to do ...
3
votes
4answers
1k views

h264 lossless coding

Is it possible to do completely lossless encoding in h264? By lossless, I mean that if I feed it a series of frames and encode them, and then if I extract all the frames from the encoded video, I will ...
3
votes
5answers
823 views

I'm creating opensource GPL H264 encoding lib/app (based on x264) do I need to pay for the license?

I'm creating opensource GPL H264 encoding lib/app (based on x264) do I need to pay for the license?
3
votes
3answers
3k views

H264 Encoders other than ffmpeg x264

The iPhone app I am working on captures images in series within certain user-defined time interval, I am looking for a way to combine these images into H264 encoded videos. I have done some research ...
2
votes
1answer
384 views

How to encode a picture into H264 using x264 API?

I encode a picture following the link How to encode series of images into H264 using x264 API? (C/C++), but every time x264_encoder_encode(encoder, &nals, &i_nals, &pic_in, &pic_out) ...
2
votes
3answers
400 views

Compiling x264 for i386

How would I compile the x264 library for the i386 architecture? Usually to force an architecture I would use the follow command: ./configure CC="gcc -arch i386" CXX="g++ -arch i386" But it doesn't ...
2
votes
2answers
158 views

How would I assign multiple MMAP's from single file descriptor?

So, for my final year project, I'm using Video4Linux2 to pull YUV420 images from a camera, parse them through to x264 (which uses these images natively), and then send the encoded stream via Live555 ...
2
votes
1answer
121 views

Manually feeding x264 with my own motion data?

I am trying to encode a stream using x264 (by feeding individual images), but what's unusual is that I already have some motion information for my frames. I know exactly which areas have been modified ...
2
votes
2answers
534 views

CPU usage and memory of Gstreamer pipleline

I'm using gstreamer to capture video from a webcam, encode it with x264 and stream it using a gstrtpbin. It works great. However, it uses about 50% of all four of my cores and a lot of memory. Is ...
2
votes
1answer
813 views

Auto launch the video player in Android from the browser like an iPhone does

I have just created and iPhone web app, which has some x264 (mp4) video files on it. When I link directly to the file on the iPhone and the user taps the link, the video player is loaded and the video ...
2
votes
1answer
836 views

open source examples of use of x264 lib with directshow mobile?

Where to find open source examples of use of x264 (or any other h264 encoding lib) with directshow on windows mobile? (for example to record video from camera in the mobile phone where h264 is not ...
1
vote
1answer
66 views

How to solve bad instruction `vadd.i16 q0,q0,q0' when attempting to check gcc for neon instruction

Checking gcc supports failed for neon instruction vadd.i16 q0,q0,q0 test.c int main () { __asm__("vadd.i16 q0, q0, q0"); return 0; } arm-linux-androideabi-gcc test.c ...
1
vote
1answer
40 views

Linking to libx264 library from c code Ubuntu

I'm trying to write a small C application which uses the x264 API, and I'm having problems compiling the code with a link to the x264 libaray. In the /project/ directory there are two sub-folders: ...
1
vote
1answer
37 views

x264_coeff_last64_sse2

The x264 lib is crashing on Windows as always. Now, I'm trying to fix it, and I don't understand one thing. In the code we can see only the function signature: int x264_coeff_last64_sse2( dctcoef ...
1
vote
1answer
322 views

Theatrical quality ffmpeg/x264 encoding of a high-motion 1080p video

I've been struggling with encoding videos using FFMPEG and x264. The output stutters when played back in Quicktime, while in VLC it shows a lot of compression artifacts at the same places Quicktime ...
1
vote
1answer
204 views

Encoding a video in FFmpeg to X264 and have it playable in Quicktime

I am wondering which command line settings i need to explicitly set (or avoid) to make a video encoded into x264 (in the mp4 format) using ffmpeg by default playable in Quicktime. I find that a number ...
1
vote
0answers
376 views

libx264 performances on iOS

I was wondering whether someone has some experience using libx264 on iPhone. How does it perform? What framerate can I expect? Will it work for simultaneous encoding & decoding (video call) or ...
1
vote
1answer
397 views

error while compiling x264 in linux

Hey all I'm trying to compile x264 under linux (x64). But it keeps throwing me an error. I've googled around but found nothing. Here's the commandline history: spin@around:~/x264$ git clone ...
1
vote
1answer
217 views

video streaming - mp4 file (x264) - and skip to location

Previously I was using apache to serve .flv files which an embedded player on an intranet page was playing. Is it possible to stream mp4 files (x264 encoded) in a similar manner? Are there any open ...
1
vote
1answer
585 views

Build error while compiling ffmpeg on cygwin with libx264

configured ffmpeg(0.6.1) with below command (with x264-snapshot-20101228-2245 snapshot) with Gcc version : gcc (GCC) 4.3.4 20090804 (release) ./configure --enable-shared --disable-static ...
1
vote
3answers
186 views

How can I run this command in a shell script

This is my shell script but it gives errors: #!/bin/sh while getopts "i:o:" flag do case $flag in i) file_input=$OPTARG ;; o) file_output=$OPTARG ;; esac done mplayer -nosound ...
1
vote
1answer
572 views

x264 encoder with JNA

I have been busy creating a JNA wrapper around x264.dll. I have the following class for my x264_param_t: http://pastebin.com/Mh4JkVpP However, when I try to initialize my x264_param_t like that ...
1
vote
1answer
232 views

Quantization Matrices in x264

I've downloaded the source code and am wading through it --- does anybody know where the QMs for the images and the residuals are stored?
1
vote
1answer
919 views

x264 IDR access unit with a SPS and a PPS

I am trying to encode video in h.264 that when split with Apples HTTP Live Streaming tools media file segmenter will pass the media file validator I am getting two errors on the split MPEG-TS file ...
1
vote
1answer
3k views

h264 RTP timestamp

I have a confusion about the timestamp of h264 RTP packet. I know the wall clock rate of video is 90KHz which I defined in the SIP SDP. The frame rate of my encoder is not exactly 30 FPS, it is ...
1
vote
3answers
541 views

How can I send images to x264 one by one?

I've got an image generator written in C. Now I want to pass those images to x264 to encode them and write it to a file. Every 100th image should be a key frame in order to save the video to disk ...
1
vote
2answers
244 views

What will be the best to parse x264 bitstream for extracting motion vectors information?

What will be the best way to parse x264 bitstream for extracting motion vectors information?
0
votes
0answers
17 views

Compiling x264 for iOS 5

I'm trying to compile the latest version of libx264 to iOS 5 arm. In mid-2010, the Gabriel script for building worked. It doesn't anymore. It says "No working C compiler found." Can anyone give me ...
0
votes
1answer
40 views

Writing numpy arrays using cv2 VideoWriter

I have a problem with writing a toy example video using opencv2.3.1 VideoWriter, here is how I do it: writer = cv2.VideoWriter('test1.avi',cv.CV_FOURCC('P','I','M','1'),25,(640,480)) for i in ...
0
votes
0answers
55 views

Use opencv to encode into flv, playable by flash player

I've compiled ffmpeg with libx264 using configure options given at 1. This results in the following codecs being available in ffmpeg: $ ffmpeg -codecs | grep "264\|flv" ffmpeg version 0.10 ...
0
votes
0answers
109 views

ffmpeg-X264 encode --BGRA to AVFrame(ffmpeg) and viceversa? for IOS

Am working Video Processing in IOS(iphone/ipod/ipad) Using Objective c. i am using AVFoundation Framework to Capture Video . i want to Encode/decode those video frame using ffmpeg-libx264. i have ...
0
votes
0answers
33 views

x264 num_units_in_tick can not be correctly set

When I use x264 lib to encode yuv video stream,I can not set the sps parameter num_units_in_tick(i_num_units_in_tick in struct). I init the x264_param_t as : x264_param_t* ...
0
votes
0answers
43 views

Compiling ffmpeg with mingw + libx264

I'm installed most necessary components to build ffmpeg and x264. Here's the process: Launched msys, went ahead and moved the x264 source folder, ran the following configure with make and make ...
0
votes
2answers
96 views

How to get h264 video info?

How can I get specific h264 video information from video file? I need to know profile (Baseline/Main/High) and is there B-Frames in movie?
0
votes
0answers
138 views

How to solve libx264 not found when building ffmpeg-with-libx264-enabled for android?

i am trying build android-ffmpeg-x264 downloaded from git. Link https://github.com/halfninja/android-ffmpeg-x264 After running ./config_make_everything.sh i am getting following error ERROR: ...
0
votes
0answers
63 views

Usage of libx264.dll in C++ under windows

I have been able to build the libx264 dll from source using hints from here. I am successfully able to load the Dll via my application using the LoadLibrary method. But when i try to get the address ...
0
votes
1answer
88 views

Mencoder Mp4(x264) Encoding

I want to convert any video to mp4(x264).But codecs of videos which will be processed are different(x264,Xvid,etc.). I want that properties of video which I convert should be same with video which I ...
0
votes
1answer
379 views

Build FFMPEG with x264 for Android

I am trying to build FFMPEG with libx264 for Android. I can successfully build and use FFMPEG for Android but I realized that I need the ability to encode, therefore I am trying to build FFMPEG with ...
0
votes
2answers
160 views

AVCodecContext settings for H264 (1080i)

I'm trying to configure x264 for 1080i capturing. Most of these settings below are found in different examples. However, compiled together they don't work. ffmpeg API reports no error, but ...
0
votes
2answers
156 views

x264 & libavcodec

After some considerable amount of time while trying to build the ffmpeg static library with the x264 encoder on Windows, I have spent some more time for writing some example with it. Of course, there ...
0
votes
0answers
45 views

compressing an RGB framebuffer with libxvidcore library

I want to compress a framebuffer (or any RGB raw image data) instance and compress it using xvid codec (actually any other compression library is also welcome especially libx264). I successfully get ...
0
votes
1answer
155 views

EC2 for video-encoding

I have a potential job which will require me to do some video encoding with FFMPEG and x264. I'll have a series of files which I'll need to encode once, then I'll be able to bring down the instances. ...
0
votes
0answers
97 views

Handbrake x264 advanced options tutorial

Can anyone point me to any tutorials on using the advanced string options in Handbrake? Something like 'Handbrake-the missing manual' would be awesome.
0
votes
1answer
80 views

Linking against libx264 does not work (Cygwin)

I want to use libx264 in one of my projects on windows. I compiled x264 with cygwin including the shared and static library. Everythin works out fine, also the static and dynamic libraries are ...
0
votes
0answers
416 views

YUY2 image ==>>sws_scale ==>>x264_encoder_encode doesn't work in Windows

I have a multi media app in Windows using x264 built using MSYS-MingW and ffmpeg Windows binaries. This works for most of the cameras which capture data in RGB24 and RGB32 formats in most of the OSes. ...
0
votes
0answers
83 views

Android: Native Code, libx264

I am working with Android OS, my aim is doing propriotary imgproc and send the result as H264 video stream out of the device, for this, I will need to use a compression tool, I have considered the ...
0
votes
0answers
251 views

Howto Install x264 10bit and 8bit in same Linux machine? [closed]

Is that possible to install both version in same machine? I want try the 10bit x264 but It's only possible when I remove/replace the 8bit x264 version. I don't know how to install both in same ...

1 2