Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (77)

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

  • lavc : add video/audio/encoding flags to global_quality option

    30 septembre 2011, par Anton Khirnov

    lavc : add video/audio/encoding flags to global_quality option

  • ffmpeg unsupported video codec

    11 mars 2012, par user413734

    I tried to convert a .flv into an mpeg with this code :

    ffmpeg -i my.flv -target ntsc-dvd -aspect 4:3 my.mpg

    And I get a lot of these here :

    [flv @ 0x5597b8]Unsupported video codec (7)

    and then :

    Stream mapping:
       Stream #0.0 -> #0.0
       Stream #0.1 -> #0.1
    Unsupported codec (id=0) for input stream #0.0

    But when I ask ffmpeg for formats flv is supported.

    What is wrong ?

    Thanks !

  • Combining two video from ffmpeg

    4 décembre 2014, par Astha

    I want to combine two mp4 videos to form a single mp4 video using ffmpeg.

    what i tried so far is

    ffmpeg -i input1.mp4 -i input2.mp4 output.mp4

    But, every time i get the video with video codec of first input and not the other. How can i combine them ? Any idea on this will be highly appreciated.