Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (104)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (9668)

  • ffmpeg concatenate videos - what metadata needs to match [duplicate]

    13 juillet 2022, par yarrichar

    I am trying to concatenate videos that can come from a variety of sources.

    


    I was just using the -f concat option, but this runs into issues when the formats don't watch.

    


    I can use the filter_complex option (as described in the wiki - https://trac.ffmpeg.org/wiki/Concatenate) but this is much slower.

    


    What metadata (codec, bitrate, fps, etc) needs to match so that I can use the faster -f concat option to join the videos ? My understanding here is not great atm.

    


  • Nginx rtmp com saida UTP multicast [closed]

    31 mars 2021, par Ralph Danezin

    Bom Dia
Tenho servidor nginx rmtp
Estou precisando que esse script tenha uma saida para udp 239.192.48.75 multicast. Como poderiam me ajudar ?

    


  • ffmpeg parse cropdetect in php error

    30 août 2013, par roastbeef

    so i/m trying to parse the crop detect value from ffmpeg input using php using this :

    <form method="post" enctype="multipart/form-data">
    <input type="file" />
    <input type="submit" value="crop" />
    </form>

    &lt;?
    if(isset($_POST[&#39;crop&#39;])){

    $ffmpeg = &#39;/usr/local/Cellar/ffmpeg/1.2.1/bin/ffmpeg&#39;;

    shell_exec($ffmpeg ." -i ".$_FILES[&#39;video&#39;][&#39;tmp_name&#39;]." -t 1 -vf cropdetect -f null - 2>&amp;1 | awk &#39;/crop/ { print $NF }&#39; | tail -1
    ");


    }
    ?>

    but i get an error :

    Undefined variable: NF

    I have no clue what to do any help would be appreciated.