Newest 'x264' Questions - Stack Overflow

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

Les articles publiés sur le site

  • x264 CLI crash while encoding [migrated]

    28 août 2011, par Ithilion

    i'm having hard time with x264 CLI encoding. I'm trying to encode a blu-ray source (8gb .m2ts file) into a mp4 video, but x264.exe keeps always crashing at approximately 20% progress.

    This is the Avisynth script i'm using:

    Source="C:\Ithilion\Temp\Editing\Anime\input.m2ts"
    V=FFVideoSource(Source,fpsnum=24000,fpsden=1001)
    A=FFAudioSource(Source)
    AudioDub(V,A)
    
    GradFun2DBmod(str=1.2)
    
    aWarpSharp2(depth=20)
    LimitedSharpenFaster(strength=255)
    
    TextSub("C:\Ithilion\Temp\Editing\Anime\subs1.ass")
    TextSub("C:\Ithilion\Temp\Editing\Anime\subs2.ass")
    

    These are the commands i'm using for the encode:

    x264 --profile high10 --level 5.1 --crf 23 --bframes 10 --b-adapt 2 --direct auto
    --me umh --merange 24 --partitions all --rc-lookahead 60 --ref 16 --subme 10 
    --trellis 2 --deblock -2:-2 --psy-rd 0.6:0.0 --aq-strength 1 --acodec aac 
    --abitrate 256 --output "output.mp4" "input.avs"
    

    This is the error i get:

    Name of the application that generated the error: x264.exe, Version: 0.0.0.0, time stamp: 0x4e427829
    Module name that generated the error: KERNELBASE.dll, Version: 6.1.7601.17651, time stamp: 0x4e211319
    Exception Code: 0xc00000fd
    Fault offset 0x0000b9bc
    Process ID that generated the error: 0xaac
    Start time of the application that generated the error: 0x01cc64e7f962548a
    Path to the application that generated the error: C:\Ithilion\Temp\Editing\x264\x264.exe
    Path of the module that generated the error: C:\Windows\syswow64\KERNELBASE.dll
    ID alert: a702ec4e-d0e7-11e0-b4d3-0023547ccfc5
    

    I'm running Win7 64 on a Q9400 @3200mHz with 4 GB RAM

    Thanks in advance for your support Best regards

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

    24 août 2011, par Jason

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

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

    24 août 2011, par Jason

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

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

    23 août 2011, par x264 fans

    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 machine

  • encode raw YUV420 to mpeg-ts using libavcodec and stream it

    18 juillet 2011, par user472155

    I have to encode raw frames (YUV420) to mpeg-ts and stream it. This should probably be divided in a few questions...

    I guess I have to use x264 codec for this. For a start, how to properly configure codec context before encoding?

    Once we do that, the output should be the encoded frame (at least I expect it to be so, please correct me if I am wrong)... what to do next with it in order to create a valid streaming server?