Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (100)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9656)

  • How to use FFmpeg in C# ? [duplicate]

    22 juillet 2017, par brsteej

    I have FFmpeg + video.mp4 in bin directory so I want convert video.mp4 to music.mp3 using ffmpeg

    I found some solutions here but couldn’t understand it. I am new to C# and Programming

    ffmpeg  - i video.mp4 - b:a 192K - vn music.mp3

    So what i need is how to use this command line in windows form

    private void button2_Click(object sender, EventArgs e)
    {
       OpenFileDialog ofd = new OpenFileDialog();
       if (ofd.ShowDialog() == DialogResult.OK)
       {

           //how to use this cmd line ?
           //ffmpeg  - i video.mp4 - b:a 192K - vn music.mp3


           //ended
           //var convert = new NReco.VideoConverter.FFMpegConverter();
           //convert.ConvertMedia(ofd.FileName, Application.StartupPath + "\\converted.ac3", NReco.VideoConverter.Format.ac3);


       }
    }

    Can any one help .. i mean from ZERO :D

  • Executing ffmpeg command in Cmd with vertical Bar

    2 mai 2017, par CSDD

    I am trying to use the postprocessing command from ffmpeg wtih command prompt.

    pp=hb/vb/dr/fq|8

    Here is the overall syntax : https://ffmpeg.org/ffmpeg-filters.html#pp

    However, the vertical makes Window CMD think that I am trying to execute another command.
    So how to bypass this to make the command run correctly ?

  • Batch file not running, only individual command runs

    11 décembre 2019, par Rajiv Sukhla

    I have a batch file of the following code

    cd C:\xampp\htdocs\Projects\videos\images_compare_english && ffmpeg -framerate .25 -i img-%02d.jpg -i music.mp3 -c:v libx264 -preset veryslow -crf 0 -c:a copy -shortest compare_english\output.mp4

    The above code has two commands which is separated by &&, means the second command will run only after the execution of the first. But it is not running. I am basically combining some images with music. But it is not working. However entering manually one command at a time works. Can anybody help me, what is the problem with command prompt ?