The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
30 views

libx264.dll exposes function x264_encoder_open_130, shouldnt this be x264_encoder_open?

I checked in my version of x264 dll file that the open function is named 'x264_encoder_open_130' and 130 happens to be the specific build number of x264 that i use. I build using minGW on windows and ...
0
votes
1answer
33 views

How to achieve 2 pass encoding using x264?

is there a parameter in the x264_param_t structure or do I have to send frames to x264 dll twice.. ? Because I just use encoder_encode function and that returns nal units . Im guessing it should be ...
0
votes
0answers
20 views

Decoding by libjpeg -> Encoding by x264, strange artefacts on frames

I have a collection of jpeg, which must be decoded by lib jpeg, and after it, encoded by x264 (after it encoded packets are streamed via rtmp). Code I used for decoding: struct my_error_mgr { ...
0
votes
0answers
57 views

How to set x264 encode parameters through ffmpeg AVCodecContext

I'm trying to use ffmpeg/libx264 to encode and transmit a realtime video, when I use **av_dict_set(&opts, "tune", "zerolatency", 0); ** the system works well. As the X264 encode parameters are ...
0
votes
1answer
127 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 ...
0
votes
1answer
76 views

is this right when i use the x264?

is this right to use the new x264 api ,i want to get a frame ,and encode it with x264,then save it to a .264 file? but i do not know is this is right ? picIn.img.plane[0] = pInBuffer ; ...
0
votes
0answers
54 views

X264 Decoder complete frame not come in one NAL Unit

I am using libX264 library for encoding purpose . After encoding data is in form of NAL Unit ()..... .This is same format( AVC) what I require but problem is one frame come in two Nal Unit ( One ...
1
vote
0answers
96 views

How to set x264 baseline profile with libav in C++

I am writing a small tool, which converts a video into a raw h264 file. These files shall be played later by a SIP phone. I have the following code: eccx->pix_fmt = PIX_FMT_YUV420P; ...
0
votes
0answers
129 views

ffmpeg + x264 in Android, undefined reference to several functions

I was trying to use the halfninja's tutorial to get the library for Android. However, it has error: error: ERROR: libx264 not found After painful searching, I found that Panayiotis Karabassis's ...
0
votes
0answers
62 views

Debug Assertion Failed on dllinit.cpp Line703 by using own regular DLL

I'm creating a Regular DLL(mylib.dll and mylib.lib) that using libx264.dll(dynamic linking by import lib) and libfaac.lib(static linking). mylib.dll created and has no build errors, but Debug ...
0
votes
1answer
103 views

Compile x264 with Thread Support for Android Platform

I've been tryin' to compile x264 for Android with Thread Support...But with no success... I've managed to compile the same without thread support...The configure command is as follows : ./configure ...
1
vote
1answer
187 views

x264 library speed - Altivec vs SSE4 -

I have simple cheap dualcore intel-3ghz-debian and access to super-expensive powerPc7-Aix. And after few days of strugle, i compiled libx264 and tested it on both computers: GCC: library x264 on ...
1
vote
1answer
66 views

Stream video and commands on same connection or split connections?

Background I am in the middle of writing a client/server app that i will install on every machine within my office (roughly 30 - 35 machines). I currently have the client connecting to the server and ...
0
votes
1answer
127 views

Error on compilation of x264 on qnap

We are facing issues on compiling x264 on qnap. We need to compile ffmpeg with x264 library, qnap packages have the built-in x264 0.66 library but ffmpeg-0.9.2 doesn't support too old version of x264 ...
0
votes
0answers
203 views

FFMPEG with x264 encoding

I'm trying ton encode video from set of jpeg images to h264, using ffmpeg + x264 for it. I init AVCodecContext in such way: _outputCodec = avcodec_find_encoder(AV_CODEC_ID_H264); _outputCodecContext ...
1
vote
1answer
153 views

VLC libx264 build error - “undefined reference to 'x264_encoder_open_128'”

Primary issue Steps to attempt to repeat this error. Download latest git (git://git.videolan.org/x264.git). Run ./configure - You can use any options, the error is present with all. Run sudo make - ...
1
vote
1answer
439 views

Confused about x264 and encoding video frames

I built a test driver for encoding a series of images I have captured. I am using libx264 and based my driver off of this guy's answer: StackOverflow link In my case I am starting out by reading in ...
-1
votes
1answer
130 views

How can I get RGB pixels from an opengl FrameBufferObject for libx264 encoding?

I want to get RGB pixels from the FrameBufferObject: fboName. Is there any method ? Do memmory map from GPU to CPU cost large time ? glGenFramebuffers(1, &fboName); ...
0
votes
1answer
494 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
163 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
150 views

Dump libx264 encoding parameters in ffmpeg

Is it possible to get a list of parameter values used in libx264 while encoding a stream? I am using a ffmpeg binary to encode.
0
votes
0answers
377 views

How to use x264 for encoding with ffmpeg?

I tryed to use ffmpeg for encoding video/ But it fails on initialization of AVCodecContext annd AVCodec. What I do: _codec = avcodec_find_encoder(CODEC_ID_H264); _codecContext = ...
0
votes
1answer
87 views

Is it possible to force I_PCM mode in x264?

I need to use I_PCM mode in all blocks for some of I frames in video being compressed using x264. I know those frames will take a huge amount of space, but it is a requirement to keep them as faithful ...
0
votes
0answers
31 views

Linking FFmpeg against libx264 while using -fwhole-program

If I compile libx264 using -fwhole-program then go to compile ffmpeg without using -fwhole-program and then link it against ffmpeg will that cause a compiler issue? (and vice versa) Likewise, could ...
0
votes
1answer
362 views

h264 global header

I need to process an incoming h264 stream from an external server. This stream is composed by h264 frames with sps / pps information. I need to "strip" this information out and pass the data along ...
1
vote
1answer
367 views

speeding up x264 encoding (C++ code with libavcodec)

I am trying to capture windows screen (continuous screen shots) and encode them into x264. For that I am using avcodec_encode_video2 function available with libavcodec. However, it takes a huge amount ...
0
votes
2answers
1k views

libx264 encoder error in ffmpeg android build

Right now, I have a ffmeg build script which recognizes libx264 and compiles succesfully. I have also compiled x264 and obtained libx264.a library. Both ffmpeg and libx264 are built from source. I ...
1
vote
1answer
414 views

Yet another ffmpeg/libx264 issue

My current situation is; ffmpeg and libx264 has been compiled for Android, as shared and static libraries respectively. Since I have libx264.a and libffmpeg.so with me, only thing that remains is to ...
0
votes
2answers
301 views

Alternative to sws_scale

I am performing encoding of the captured windows screen with x264 using libavcodec. Since, the input is RGB, i am converting it to YUV to make it compatible with x264. I am using the sws_scale ...
0
votes
0answers
256 views

libx264 2 pass encoding with mbtree option, first pass fails

I'm working on an application which uses libx264. When doing 2-pass encodes, if the mbtree option is enabled, the 1st pass doesn't seem to put anything into the stats files: ...
0
votes
0answers
541 views

no c compiler found libx264 build [closed]

I have been trying to build ffmpeg for Android and I have managed to do so by using roman10's tutorial. However, I needed x264 and I enabled libx264 in the configurations but it wasn't able to find ...
0
votes
1answer
57 views

What, if any, guarantees are there for when `nalu_process` will be called?

In particular, can a call to x264_encoder_encode return before every nalu_process callback associated to it has returned? Someone in #x264 suggested it's settings-dependent; I'm talking here about the ...
1
vote
1answer
204 views

GStreamer x264enc and SIGSEGV on Android

I am trying to play around with GStreamer-java and it's h.264 encoder (x264enc) on Android. Now, I tried to encode raw video from test video source (set its is-live property to TRUE), and when data ...
0
votes
1answer
799 views

ffmpeg syntax has changed

Just like what was talked about in this post: FFmpeg cannot recognize a preset even though it does exsist Ubuntu 12.04 I have help, with deblockalpha which has been depreciated from ffmpeg for along ...
0
votes
0answers
163 views

Compiling ffmpeg+libx264 for ios with sdk 4.3

I want to compile FFMPEG with libx264 for iOS with SDK4.3. Scripts i found were for previous sdk version. Since 4.3 version, gcc is replace with llvm+clang so they didn't work. I edited script and i ...
0
votes
1answer
117 views

Libx264 without cygwin1.dll?

I have build libx264-125.dll by MinGW and Msys. However, libx254-125.dll need call cygwin1.dll and cyggcc_s-1.dll for run. Could anyone tell me how to build static libx264-125.dll Thanks for your ...
0
votes
1answer
2k views

Using ffmpeg with Flash Media Server and HDS

I want to use ffmpeg to encode and publish a live stream to Flash Media Server. In order to support iOS devices, I need to implement HTTP Live Streaming as well. The video needs to be in H.264 format ...
7
votes
1answer
4k views

streaming H.264 over RTP with libavformat

I've been trying over the past week to implement H.264 streaming over RTP, using x264 as an encoder and libavformat to pack and send the stream. Problem is, as far as I can tell it's not working ...
2
votes
1answer
376 views

Given an x264 stream and an ogg vorbis stream, how do I make a muxed stream that mplayer/VLC can read?

I'm confused and a bit stuck with this question. All I can find on Google is basic usage of transcoding software, which is not related to the question. I'm making a game and I'd like to include ...
0
votes
1answer
505 views

Tune FFmpeg H.264 Decoder

I'm using the FFmpeg avcodec to decode live video - the avcodec_decode_video2 function from libx264 to be exact. How can I decrease the decoding time for each frame? At the moment it takes 20 ms for ...
0
votes
1answer
239 views

Encoding video only FLV

I am trying to generate a video only FLV file, I am using: libx264 + ffmpeg 30 fps ( fixed ) playback is done using VLC 2.0.1 and flowplayer When playing the FLV the frame-rate seems ~1 frame per ...
2
votes
0answers
770 views

x264 Faster decode speed

I'm using x264 to encode videos for a flash video streaming site. I use -tune fastdecode, which turns off cabac and deblock, which I've heard are the features which take most cpu to decode. However, ...
0
votes
1answer
181 views

What is the minimum amount of metadata is needed to stream only video using libx264 to encode at the server and libffmpeg to decode at the client?

I want to stream video (no audio) from a server to a client. I will encode the video using libx264 and decode it with ffmpeg. I plan to use fixed settings (at the very least they will be known in ...
0
votes
1answer
289 views

VLC libx264 streaming muxed as FLV

I have a question on streaming output of libx264. My scenario is that Iam capturing video from webcam, encoding with x264 and then streaming data to flash, muxed as FLV. For muxing, Im using ...
2
votes
2answers
672 views

Weird and unpredictable crash when using libx264 cross-compiled with MinGW

I'm working on a C++ project using Visual Studio 2010 on Windows. I'm linking dynamically against x264 which I built myself as a shared library using MinGW following the guide at ...
1
vote
0answers
2k views

ffmpeg libx264 AVCodecContext settings

I am using a recent windows (Jan 2011) ffmpeg build and trying to record video in H264. It is recording fine in MPEG4 using the following settings: c->codec_id = CODEC_ID_MPEG4; c->codec_type = ...
0
votes
1answer
861 views

FFmpeg settings to convert MTS into MPG for YouTube

I would like to discuss the optimal parameters for FFmpeg to convert an MTS video file with the following profile for the upload onto YouTube. YouTube published their suggested resolutions and ...
1
vote
1answer
981 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: ...
1
vote
1answer
67 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
489 views

How do I build ffmpeg including x264 library for android?

Lots of question and answer available on the ffmpeg and android. But I did not get thing that directly address ffmpeg building with x264 library. Actually I want to make a movie from some still ...

1 2