Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (108)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6550)

  • Minimum PHP/Server Requirements for Yii 2

    12 avril 2015, par Future King

    I tried to run my yii2 app on my web hosting (It has PHP5.4 and Linux Server). But when I tried to upload files then it showed me error that Fileinfo extension is not installed. I asked the server guys and they told me that they can not enable that extension because it is a shared hosting.

    I tried the same app on some other hosting. I received this error :

    PHP Startup : Unable to load dynamic library ’/usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so’ - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so : cannot open shared object file : No such file or directory

    I want to know, what are the minimum server requirements (or required PHP extensions) for Yii2, so that I can find another host according to that.

  • How to create a thumbnail from the middle of a video with FFmpeg

    3 août 2016, par Arman

    how to generate thumbnail from the middle of video using ffmpeg..

    e.g i have a video of duration 1 minute i want to generate thumbnail on 30th second

    i have used the following code but it generate thumbnail at 59th second. i because i mention -ss 59 how can we make it dynamic to the middle of video duration.

    ffmpeg -i input.mp4 -deinterlace -an -ss 59 -f mjpeg -t 1 -r 1 -y -s 256x160 output.jpg

    i tried that but i am getting error no directory found.

    ffmpeg -i input.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -ss `ffmpeg -i clip.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d , | awk -F ':' '{print $3/2}'` output.jpg

    thanks in advance.

  • How to create a thumbnail from the middle of a video with FFmpeg

    12 août 2021, par Arman

    how to generate thumbnail from the middle of video using ffmpeg..

    



    e.g i have a video of duration 1 minute i want to generate thumbnail on 30th second

    



    i have used the following code but it generate thumbnail at 59th second. i because i mention -ss 59 how can we make it dynamic to the middle of video duration.

    



    ffmpeg -i input.mp4 -deinterlace -an -ss 59 -f mjpeg -t 1 -r 1 -y -s 256x160 output.jpg


    



    i tried that but i am getting error no directory found.

    



    ffmpeg -i input.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -ss `ffmpeg -i clip.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d , | awk -F ':' '{print $3/2}'` output.jpg


    



    thanks in advance.