Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (22)

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

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (3320)

  • Revision a1daf009be : Merge "Use lookup table to find pixel numbers in block"

    8 janvier 2015, par Jingning Han

    Merge "Use lookup table to find pixel numbers in block"

  • Find the correct FFmpeg path in php

    30 décembre 2014, par Ashraf Hefny

    I am using FFmpeg with PHP on CentOS server.
    the php code is

    $thumbnail = $this->generateRandomString(25);
    $ffmpeg = "/usr/bin/man"; // or /usr/share/ffmpeg {not working}
    $videoFile = $_FILES['file']['tmp_name'];
    $imageFile = "uploads/images/video_thumbnail/$thumbnail.jpg";
    $size = '340x250';
    $getFrom = 10;
    $cmd = "$ffmpeg -i $videoFile -an -ss $getFrom -s $size $imageFile";
    shell_exec($cmd);

    When running command $whereis FFmpeg

    output is : ffmpeg: /usr/bin/ffmpeg /usr/share/ffmpeg /usr/share/man/man1/ffmpeg.1.gz

    So what’s the correct path.

  • Could not find audio device using ffmpeg [on hold]

    15 décembre 2014, par flight

    I execute the command :

    ffmpeg -list_devices true -f dshow -i dummy

    And find out that Audio device is "Microphone "

    After then execute Command :

    ffmpeg -f dshow -i audio="Microphone " -acodec libmp3lame -ab 128k -ac 1 -ar 44100 -re -f ac1.mp3

    Gives the Error :
    Could not find Audio device.

    Please recommend a feasible approach to solve this problem.