Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (7807)

  • How to force Constant Bit Rate using FFMPEG

    6 octobre 2014, par user1338254

    I use FFMPEG (command line Input) to convert my videos to a specific output format. The problem I am facing is when I try to pass a constant bit rate(700 kbps) to FFMPEG, the result is an output video with a different bit rate(say 1000 kbps). This phenomenon occurs invariably for all videos.Why is this happening ? I need to maintain a constant bit rate. Can anyone help me out.

    My FFMPEG version is 0.5

    The command line parameter which I am passing to FFMPEG is,

    -i {inputfile}
    -b 700k -ab 64k
    -vcodec libx264
    -acodec libfaac -ac 2 -ar 44100
    -y -s 320x240
    {outputfile}

    EDIT :

    I was able to force CBR with a fluctuation of 3% when I used the following parameters.

    ffmpeg -i myfile.avi
    -b 4000k -minrate 4000k
    -maxrate 4000k -bufsize 1835k   out.m2v

    But when I used -maxrate and - minrate along with my parameter set I was not able to force CBR. My parameter set is as follows,

    -i {inputfile}
    -b 1200k -minrate 1200k
    -maxrate 1200k -bufsize 1200k
    -ab 64k -vcodec libx264
    -acodec libfaac -ac 2 -ar 44100
    -y -s 320x240
    {outputfile}

    Why is this happening ?

  • Revision 4282955ee1 : Skip intra mode tests depending on inter residuals This commit allows encoder t

    29 août 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/encoder/vp9_speed_features.h



    Skip intra mode tests depending on inter residuals

    This commit allows encoder to skip intra coding mode test, when
    the known inter residual is less than the source variance. It
    reduces the runtime of speed 3 for test clips :
    bus cif 1000 kbps : 8587 ms -> 8260 ms, 3.8% speed-up
    pedestrian 1080p 2000 kbps : 161381 ms -> 155241 ms, 3.7% speed-up.

    The compression performance is down by
    derf -0.36%
    stdhd -0.25%

    Change-Id : I75ce1e035b4da2153cb1ac14111d1a07c05a735d

  • Revision 33176fef87 : Skip comp inter mode tests for arf coding This commit skips the compound inter

    2 septembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Skip comp inter mode tests for arf coding

    This commit skips the compound inter mode prediction check in the
    rate-distortion optimization loop for ARF coding. It reduces the
    runtime for certain test clips at speed 3, at no compression
    performance change :

    bus CIF 1000 kbps, 8260 ms -> 8090 ms, 1.8% speed-up
    stockholm 720p 1000 kbps, 74453 ms -> 71826 ms, 2.9% speed-up

    No visible speed-up for pedestrian area 1080p at 2000 kbps.

    Change-Id : Ic68aa56837159b726563b784e2e3729e846465ad