Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (41)

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

  • ffmpeg : change command line option -dump to work without -loglevel debug

    10 décembre 2015, par Tom Marecek
    ffmpeg : change command line option -dump to work without -loglevel debug
    

    - hex and -dump command line options do nothing unless -loglevel debug is set.

    - dump by itself is useful for monitoring live streams (to get the current PTS for example) however when it is used with -loglevel debug for an RTMP stream, librtmp also dumps the packet data which makes the output too noisy.

    do_pkt_dump is only set in check_keyboard_interaction or by the -dump command line option so this change should have no effect on any other parts of the code..

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

    • [DH] ffmpeg.c
  • lavc/vp9_superframe_bsf : avoid error messages in one line

    16 mai 2019, par Fu Linjie
    lavc/vp9_superframe_bsf : avoid error messages in one line
    

    Add "\n" to avoid continuous error messages in one line.

    Signed-off-by : Fu Linjie <linjie.fu@intel.com>

    • [DH] libavcodec/vp9_superframe_bsf.c
  • using ffmpeg command line with python's subprocess module [on hold]

    3 décembre 2013, par user1485853

    I have few wav files that I can use either of the following command line mentioned here to concatenate

    ffmpeg -f concat -i &lt;(for f in ./*.wav; do echo "file &#39;$f&#39;"; done) -c copy output.wav
    ffmpeg -f concat -i &lt;(printf "file &#39;%s&#39;\n" ./*.wav) -c copy output.wav
    ffmpeg -f concat -i &lt;(find . -name &#39;*.wav&#39; -printf "file &#39;%p&#39;\n") -c copy output.wav

    anyone know how to convert either of them to work with python's subprocess module, it would be better if your solution is platform independent .

    the <(...) notation does is create a temporary file to
    contain the result, and inserts that file name on the command line. so is there any way to create a temporary file by Python here ?