Recherche avancée

Médias (0)

Mot : - Tags -/tags

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 (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • 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 (...)

Sur d’autres sites (5587)

  • hevc : Simplify logical check

    2 octobre 2015, par Vittorio Giovara
    hevc : Simplify logical check
    

    The intended meaning is "if this block is the first block in a slice then
    its left boundary is a slice boundary". Silence a logical-not-parentheses
    warning from gcc.

    • [DBH] libavcodec/hevc.c
  • avcodec/cbs_h2645 : Treat slices without data as invalid

    9 décembre 2019, par Andreas Rheinhardt
    avcodec/cbs_h2645 : Treat slices without data as invalid
    

    Slices that end after their header (meaning slices after the header
    without any data before the rbsp_stop_one_bit or possibly without any
    rbsp_stop_one_bit at all) are invalid and are now dropped. This ensures
    that one doesn't run into two asserts in cbs_h2645_write_slice_data().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Fixes : 19629/clusterfuzz-testcase-minimized-ffmpeg_BSF_H264_METADATA_fuzzer-5676822528524288
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cbs_h2645.c
  • Proportion for the values of maxrate, mnrate and bufsize for encoding videos for streaming purpose and past duration too large warning

    15 décembre 2015, par himanshu nautiyal

    can you please tell me about minrate, maxrate and bufsize. And is it necessary to give maxrate and minrate for encoding videos for streaming purpose. Actually I understood the meaning and functions of minrate, maxrate and bufsize through ffmpeg documents but I am not finding any solution of what would be difference in between the values of these three.

    for example : I am using this command
    ffmpeg -y -i testing.mp4 -c:a libfdk_aac -ac 2 -ab 128k -c:v libx264 -r 24 -g 24 -b:v 2m -maxrate 1m -bufsize 1m -vf scale=1920*1080 aa.mp4

    but I am not sure if this -b:v 2m -maxrate 1m bufsize 1m is in correct propotions or not. My output is fine but I don’t want any problem on working real time. Moreover, I am also getting the following warning

    Past duration 0.634361 too large
    Past duration 0.674370 too large
    Past duration 0.714363 too large 0kB time=00:00:01.32 bitrate= 0.3kbits/s

    Past duration 0.754372 too large
    Past duration 0.794365 too large
    Past duration 0.834373 too large
    Past duration 0.874367 too large
    Past duration 0.914360 too large
    Past duration 0.954369 too large

    thanks in advance