Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9107)

  • how to compile the ffmpeg library on windows [closed]

    4 septembre 2012, par Naseeb Sheoran

    Possible Duplicate :
    difficulty in building ffmpeg for windows

    I want to make an app with video editing facility and i want to use ffmpeg for that purpose.Even after going through many tutorials,i am not understanding how to compile the ffmpeg library for using in android application.Can you please help me in this regard.Thanks in advance.

  • ffmpeg - Windows batch file for 2pass conversion using loudnorm [closed]

    3 septembre 2024, par David

    How do you write a windows batch file that will do the following with ffmpeg ;

    


      

    1. make a windows batch file
    2. 


    3. convert all mkv files in a directory
    4. 


    5. use two pass
    6. 


    7. use the loudnorm audio filter
    8. 


    


  • ffmpeg c# Windows forms

    7 février 2017, par TODO

    I’m fairly new to windows forms and ffmpeg (unity background).

    I’m trying to get a button click on a windows form to take a png sequence, and convert it to an mp4 with ffmpeg.

           Process ffmpeg = new Process();

           ffmpeg.StartInfo.FileName = Path.Combine(Environment.CurrentDirectory, @"c:\test\ffmpeg.exe");

           ffmpeg.StartInfo.Arguments = "-framerate 25 -i 0001_IMG%03d.JPG -c:v libx264 -preset ultrafast -crf 0 -vf scale=-2:1080 -pix_fmt yuv420p temp.mp4";

           ffmpeg.Start();

    I have no problem running the same ffmpeg command from cmd, or from within a c++ console application I experimented with Using system("")

    I’ve been stuck on this for a little longer than I care to admit, and have tried searching for answers, but am still learning as i go.

    Any help would be much appreciated.