Newest 'libx264' Questions - Stack Overflow

http://stackoverflow.com/questions/tagged/libx264

Les articles publiés sur le site

  • screen recording and video encoding with ffmpeg

    2 septembre 2016, par Alexander M.

    1.we need to record screenshots into video with 2-3 fps. Quality - the minimum possible to make text on the screen readable, 256 colors. It is important to reduce the output video file size as much as possible.

    2.we've made a lot of tests, and currently the most suitable way is to make screenshots every 300-500msec, save them in PNG, then run ffmpeg to encode to H.267 with these params:

    ffmpeg -f image2 -i "C:\png5min\image%04d.png" -y -an -vcodec libx264 -preset veryfast -crf 30 "C:\output.mp4"
    

    3.is it the best way to get minimum output size with 2-3fps screencast?

    4.the output file plays very quickly, codec by default concerns that images represent 25fps. But they are 2fps actually. Ok, but if we try to decrease the output frame rate, output file size increases for about twice!! (from 3mb to 6mb for a 3m:26s video). And if we set the output frame rate as 2 - video does not play frames at all or plays just 2 frames for 3mins...:

    -r 2 -f image2 -i "C:\png5min\image%04d.png" -y -an -vcodec libx264 -preset veryfast -crf 30 -r 2 "C:\image5min_2fps_crf30_test__R2-2.mp4"
    

    so, how can we just add some latency after each frame without increasing the output file size???

  • What is the difference between H.264 and x.264 ?

    17 août 2016, par AbdulMomen عبدالمؤمن

    I'm new to video compression; but I see many of the terms repeated over and over again. I'm wondering what's the difference between x.264 and libx264 and H.264?

  • What is the difference between H.264 and x.264 ?

    17 août 2016, par AbdulMomen عبدالمؤمن

    I'm new to video compression; but I see many of the terms repeated over and over again. I'm wondering what's the difference between x.264 and libx264 and H.264?

  • Need assistance to compile X264 in Visual Studio

    8 août 2016, par Vikram Bammanhalli

    I have been trying to open x264 code base in Visual Studio, by creating a separate project for it, but without any success.

    I thought it should have been straight forward. I could build X264 code using MinGW, but I need to edit the code and extract motion estimation code.

    Has anyone compiled/run the x264 from Visual Studio?

    Thanks!

  • Need assistance to compile X264 in Visual Studio

    8 août 2016, par Vikram Bammanhalli

    I have been trying to open x264 code base in Visual Studio, by creating a separate project for it, but without any success.

    I thought it should have been straight forward. I could build X264 code using MinGW, but I need to edit the code and extract motion estimation code.

    Has anyone compiled/run the x264 from Visual Studio?

    Thanks!