Recherche avancée

Médias (91)

Autres articles (34)

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

  • FFmpeg/X264 : Split video mid-GOP without reencoding entire stream

    10 juillet 2012, par yoda_alex

    I've got an H264 video (Stored in an MP4 file). Each GOP is approx 10s long. I want to trim the first couple of seconds off the video, which means I need to split the first GOP. Is there a way to do this without re-encoding the entire video ?

    I've got FFmpeg and x264 available. I'm happy to use either the FFmpeg command line, or my own program linked against ffmpeg of x264 libraries.

    Thanks in advance !

  • Is it possible to Create sample movie ( mini movie) with ffmpeg ?

    23 août 2014, par Royi Namir

    Is it possible to create a mini movie ( if i have a movie which is 1 hour - i want 3 seconds of it) with ffmpeg ?

    How do i do it ?

  • Add audio (with an offset) to video with FFMPEG

    5 novembre 2011, par slotishtype

    I have a 10 minute video and a 50 minute audio mp3.
    The video starts at 500 seconds into the audio.
    Using FFMPEG, how can I add the the audio to the video but specify a 500 seconds audio offset (So that they sync up) ?

    EDIT:::: :

    Down the bottom of this page it suggests how to specify an offset.

    $ ffmpeg -i video_source -itsoffet delay -i audio_source -map 0:x -map 1:y ......

    However, when I apply this, it still starts the audio from the start.

    Thanks