Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (50)

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

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

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (5544)

  • converting mp4 to mp3 using ffmpeg failing

    26 décembre 2014, par LiveEn

    im trying to convert a mp4 file into a mp3 using ffmpeg on my linux vps

    Currently i have installed ffmpeg to my server and im my php code i have the below

    $saved = 'videos/move1.mp4';
    $out = 'videos/move1.mp3';

    $ffmpeg = "ffmpeg -i ".$saved." -ar 44100 -ab 128k -ac 2 ".$out."";

    $cmd = exec($ffmpeg);

             if($cmd)
                 {
                  echo "success";
                 }
                 else
                 {
                  echo "failed";
                 }

    It always returns failed. can someone tell me what am i doing wrong ?

  • How do i convert videos uploaded by user to .swf ?

    3 avril 2020, par Anish Silwal

    I am creating a website which enables to upload videos. But we know that user can upload any kind of video but the browser can't play them. So, I thought that I somehow can convert them into .swf and play them using a flash player. I tried to use ffmpeg-php but it didn't worked. my code was :

    



    shell_exec('ffmpeg -i in.mp4 out.swf');


    



    It does not show any error neither it returns out.swf.

    



    Please ! help me.

    


  • FFMPEG Extra just codec information

    18 juin 2014, par Jim

    I am planning on using FFMPeg with Java, to detect a specific codec and convert this to another. Using the FFMpeg line -

       ffprobe -v quiet -print_format json -show_streams "input.avi"

    I can print off all of the stream information of the video, but this includes video information, audio information, all metadata, all tags and other information which I just don’t need.

    Question : Is it possible to launch an FFMpeg command which only returns the video codec, so I don’t have to wave through unnecessary information ?