Recherche avancée

Médias (91)

Autres articles (102)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11956)

  • How can I record the desktop action to a video file with ffmpeg without showing the ffmpeg console window ?

    24 décembre 2018, par Dubi Duboni

    Tried this method either by calling it from the constructor or a button click event :

    private void StartRecordingDesktop()
           {
               Process process = new Process();

               // Stop the process from opening a new window
               process.StartInfo.RedirectStandardOutput = true;
               process.StartInfo.UseShellExecute = false;
               process.StartInfo.CreateNoWindow = true;
               process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

               // Setup executable and parameters
               process.StartInfo.FileName = @"d:\SavedScreenshots\ffmpeg.exe";
               process.StartInfo.Arguments = "-f gdigrab -framerate 24 -i desktop -preset ultrafast -pix_fmt yuv420p testwithforms.mp4";

               // Go
               process.Start();
           }

    Two problems :

    1. It’s not recording when I shut down the application there is no video file on the hard disk.

    2. When I shut down the application sometimes it leaves a working exe file parto f the ffmpeg in the background that make the mouse cursor to shake a bit stuttering.

    What I want is to start/stop recording without showing the ffmpeg console window. The idea in the end is to make some identification of the recording mode if recording or not using a tray icon as indiacator.

  • What are the alternatives of PHP-ffmpeg and LaravelFFMpeg repo

    24 juin 2019, par Sirsemy

    I use Laravel and PHP. I’d convert video during streaming, and I’d like to put watermark to the video.
    I spent days to try to set up the pascalbaljetmedia/laravel-ffmpeg repo from GitHub and try to use PHP-ffmpeg but I couldn’t.

    Are there any alternative for the same usage ?

    I use

    • Laravel 5.8
    • PHP 7.1
    • Windows 10
    • Wamp server

    Thanks for the help in advance.

    Edit

    We’ve used this code for call an external ffmpeg but that also haven’t worked.

       $ffmpeg = "c:\\ffmpeg\bin\\ffmpeg.exe";
       $cmd = $ffmpeg . " -i " . $videoPath . " -i " . $watermark . " -filter_complex 'overlay' " . $saveLocation;
       exec($cmd, $output);

    Created the video but didn’t use the filter what the repo mention.

  • The appearance of silence time at the end when the -r is too small

    14 juin 2023, par Kazbekuri

    I have one mp3 and one picture I want to make mp4 and put this picture in the background, so that the rendering is very fast, because it is just a picture and do not want to put a lot of fps (weak pc), but there is a problem which is the appearance of silence time after the audio information. If I put more -r then everything is solved, but I need an alternative way to make it work fast and without typing different parameters like -t.

    


    My command :
ffmpeg -loop 1 -r 1 -i peg.jpeg -i ex.mp3 -c:a aac -b:a 320K -strict -2 -shortest -fflags +shortest -max_interleave_delta 100M video.mp4

    


    I tried "-max_muxing_queue_size 9999" but that didn't work for me. I also tried -fflags+shortest -max_interleave_delta 100M. This helped me a little, but not enough.