Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

  • Combining find -execdir with grep

    31 mai 2021, par pasan

    I want to go through a bunch of files in various sub folders within a root directory quickly to get the video and audio format type.

    


    I can get the information I need from a single file using :

    


    ffprobe file.mp4 2>&1 >/dev/null | grep "Stream"


    


    I can run ffprobe for each file inside the root folder using

    


    find . -name "*.mp4" -execdir ffprobe "{}" \;


    


    What I am struggling with is to use grep with the second command to filter the output I want (as per the first command) and pipe the entire output into a file.
What is the missing link/s here ?

    


  • How to rotate thumbnail image in ffmpeg

    27 mai 2014, par Vishal Sharma

    I am using this code for my thumbnail image

    <?php
    $ffmpeg = '/usr/bin/ffmpeg';
    $second = 2;
    $video = 'video/123.mp4';    
    $image = 'thumb/123.jpg';
    $command = "$ffmpeg  -itsoffset -$second  -i $video -vcodec mjpeg -vframes 1 -an -f rawvideo -s 175x150 $image";

    its giving me the thumbnail image BUT i want to rotate that thumbnail image. I already tried transpose and rotate but nothing happen even i lost the thumbnail image also.

    Tried solutions but nothing happen :-

    $command ="$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -vf 'transpose=1' -an -f rawvideo -s 175x150 $image";

    and

    $command ="$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -vf 'rotate=PI/2' -an -f rawvideo -s 175x150 $image";

    Please help me.....

  • ffmpeg : what rate to set in this example

    2 février 2013, par jeet

    I'm compiling a video with ffmpeg, multiple images and a wav file.
    It gets compiled properly, but images seem to end before the wav finishes. Basically the last few frames are blank.
    Is there a calculation I can apply to set frame rate etc, so that this does not happen ?
    Wav duration : 60 seconds
    Number of images : 175
    command used :

    ffmpeg -r 5 -i img%d.jpg -i audio.wav -r 30 video.mov

    what rates should I use here ?