Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (97)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (12779)

  • PHP exec() Not Working With ffmpeg

    28 juillet 2016, par Dodinas

    I’m attempting to run the following command in PHP (on Ubuntu) :

    <?php
    if (exec("/home/johnboy/ffmpeg/ffmpeg -i test1.mp4 -acodec aac -ab 128kb -vcodec mpeg4 -b 1220kb -mbd 1 -s 320x180 final_video.mov"))
         { echo "Success"; }
         else { echo "No good"; }

    And I always get "No good" echoed back, and no file created.

    Interestingly, if I run the same exact command in Shell, it works, no problems.

    Also, when I run the same code above, but subsitute "whoami" instead of the ffmpeg stuff, it works. (It echoes back "Success")

    Any ideas on why this wouldn’t be working ? Thanks.

  • HLS stream from multiple FFMPEG to RTMP command at VideoJS keep repeating for segments

    14 août 2018, par Lokesh Kumawat

    I am building on demand video streaming application based on user interaction at frontend using FFMPEG and RTMP, which eventually converted to HLS using nginx-rtmp-module, with hls_continuous flag set to true.

    While running back to back FFMPEG command to RTMP(i.e. once one FFMPEG command done with execution at RTMP stream, another FFMPEG command is executed at same stream), observation at VideoJs player that some of the HLS segment keeps repeating.

    Would be great help if someone could help me to figure out what could be possible reason, and how to fix the same ?

    Thanks in Advance.

  • ffplay : is there a way to get the timestamp of the currently paused video frame ?

    17 septembre 2022, par John_Sheares

    Currently, I have ffplay setup to draw the timestamp as overlay text, so that I can manually record the value of the paused frame. This getting tedious and I was thinking of extracting it with a custom program that monitors stdout.

    


    I noticed that when I turn on the log output, I can see the debug information for the text formatting of the drawn timestamp. When paused, I can read back several lines to see the timestamp that matches the one shown in the overlay text. It seems consistently 4 formatting debug messages back, but that is probably unreliable.

    


    Any ideas on how this can be done and reliably ?