Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (99)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10640)

  • Is there any way to port ffmpeg command to Android without root the device ?

    8 février 2014, par user1429903

    This link http://www.roman10.net/how-to-port-ffmpeg-the-program-to-androidideas-and-thoughts/ talks about port ffmpeg command to Android.

    Can anyone describe more detail ?

    My purpose is to record user's behavior on Android device and save as video file which contains user's sound.

  • executing a command from php that requires being root

    8 août 2017, par P.G

    I would like to find a solution to this problem : I have a list of images that i want to convert into a video on the server. I’ve created a virtual machine with centOS and installed ffmpeg to test that. Everything working well when I type myself this line in the terminal

    sudo ffmpeg -r 10 -i img%03d.png -c:v libx264 -preset veryslow -crf 0
    video.mp4

    What I want is to call this when I click on a button. Here is the code :

    Javascript :

    $(document).ready(function(){
       $("#ffmpeg").click(function(){
           $.get('ffmpegBooklet.php', function (data) {
               console.log(data);
          });
       });
    });

    PHP :

    echo shell_exec("/usr/local/bin/ffmpeg  -r 10 -i /img%03d.png -c:v
    libx264 -preset veryslow -crf 0 video.mp4 2>&1");

    What i get in the console of the browser is :
    the log from ffmpeg and at the end —> Permission denied

    I’ve tried with a static build (after reading on internet) but I have the same problem. Is there any solution to do this without the sudo rights ? I don’t want to do this as sudo or to some tricky command to give sudo permissions through php because I think it’s not secure.

    Any helps is welcome ! Thanks for reading it :)

  • libavutil : include assembly with full path from source root

    18 janvier 2022, par Alexander Kanavin
    libavutil : include assembly with full path from source root
    

    Otherwise nasm writes the full host-specific paths into .o
    output, which breaks binary reproducibility.

    Signed-off-by : Alexander Kanavin <alex.kanavin@gmail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavutil/x86/cpuid.asm
    • [DH] libavutil/x86/emms.asm
    • [DH] libavutil/x86/fixed_dsp.asm
    • [DH] libavutil/x86/float_dsp.asm
    • [DH] libavutil/x86/lls.asm
    • [DH] libavutil/x86/pixelutils.asm
    • [DH] libavutil/x86/tx_float.asm