
Recherche avancée
Autres articles (20)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (5428)
-
How to do FFMPEG live transcoding to HTML5 video from file(.MP4, .MKV) in PHP ?
12 octobre 2014, par user3534650I’m using windows, tried to follow this tutorial and downloaded the code : blog page is http://sixserv.org/2010/11/30/live-transcoding-for-video-and-audio-streaming/ and the github https://github.com/4poc/php-live-transcode. It doesn’t work, I’m getting some errors in mplayer saying "MPlayer has not identified the file you provided".
I just need a simple working live media transcoder that can work on most browsers even in mobile devices (HTML5) using FFMPEG in PHP. I’ve been searching this the entire time, I found nothing.
-
FFMpeg Copy Live Stream (Limit to 60s file)
17 février 2021, par Garret HarpI currently have a working way to get a live stream and start downloading it locally while it is still live.



ffmpeg -i source_hls.m3u8 -c copy output.mkv -y



The problem is I do not actually want to save the entire thing, I just periodically run another command on the output.mkv command to create a clip of part of the live stream.



I was wondering if it was possible to limit the output.mkv file to be only 60s long so once the stream goes over 1 minute it will just cut off the old video and be replaced by the new rolling video.



Is this possible or no ?


-
Need to record and stream live video in ffmpeg
16 août 2020, par ankurgoelNeed to record live webcamera and live stream it also record at the same time on the server.


I was trying to implement this using FFMpeg in vue but not sure if this is the best way to implement this.


Please guide if this can be done more efficiently than this.