Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (44)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6017)

  • Invalid option error using avcodec_open2 and libopus

    12 mai 2017, par Paul Gregoire

    I’m getting an invalid option result from avcodec_open2 in ffmpeg 3.1.6 with libopus 1.1.4. I’ve sorted through all the options and I cannot locate the offending option, I created a gist holding the relevant native code. I’ve searched all about the internet and cannot find anything helpful as of yet. I’ve also tried with and without the opts dictionary.

    results = avcodec_open2(context, codec, &opts); and results = avcodec_open2(context, codec, 0);

    All tests and variations return -22 (at line 51 in gist)

  • ffmpeg_opt : rename loop option to stream_loop

    14 octobre 2015, par Michael Niedermayer
    ffmpeg_opt :  rename loop option to stream_loop
    

    The "loop" option is used in several demuxers (like img2dec) and muxers, using the same name in ffmpeg_opt
    breaks them. Feel free to revert this and replace by any other solution or rename both as preferred
    This is just as a quick fix to avoid the regression with existing command lines and to have both named
    the same (which does not work)

    Example :
    ./ffmpeg -loop 1 -i fate-suite/png1/lena-rgb24.png -t 1 test.avi
    will produce 25 frames with the img2dec loop but only 1 frame at 25fps with the ffmpeg loop option

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffmpeg_opt.c
  • avformat/adtsenc : clarify option help

    26 avril 2021, par Gyan Doshi
    avformat/adtsenc : clarify option help
    

    Also remove unnecessary unit as option does not accept any constants.

    • [DH] libavformat/adtsenc.c