
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (26)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
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 (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (7721)
-
How to say ffmpeg ignore reboot of ip camera
25 août 2016, par Svishchev SemenI record stream from ip camera with batch file :
ffmpeg -rtsp_transport tcp -stimeout 50000000 -i rtsp://192.168.50.50:554/user=admin&password=&channel=1&stream=0.sdp?real_stream" -b:v 900k -acodec copy -vcodec copy -r 30 -f segment -strftime 1 -segment_time 00:30:00 -reset_timestamps 1 -segment_format avi D:\Camera\level2\output_%%d-%%m_%%Y_%%H_%%M.avi
When ffmpeg lost tcp connection ( 10 sec) to camera recording paused, then link goes up ffmpeg continues to write in the current file. But when i reboot camera by power off/on ffmpeg stop the record and crushes.
How to say ffmpeg wait for signal from camera and not close record.
Sorry for my English i’m from Russia.
-
FFMpeg Playlist with pipe for streaming [on hold]
24 juillet 2017, par sword1stI’m trying to find a solution for stream multiple files without any connection breaks. I found this answer from KKetch :
I managed to stream a static playlist of videos by using for each video a pipe (ex vid1.mp4 -> pipe1, vid2.mp4 -> pipe2 etc). Then i write into a single stream named pipe "stream" this way cat pipe1 pipe2 pipe3 > stream, and i use the stream pipe as input in FFMPEG to publish my stream.
(I’m using windows. I don’t know to use named pipes. I searched a lot but i couldn’t do it. I can do it with vb.net if it’s possible. But i don’t know how :/ Sorry for my bad english)
But i can’t reply his message cuz i don’t have enough reputation. I hope someone can help me how can i use pipes for input like playlist. Thanks !
-
Is there a way to stream a list of videos in a directory rtmp ffmpeg
22 février 2021, par GuisoI would like to stream videos to twitch with ffmpeg.


I investigeted and found this :


this streams the screen and works


ffmpeg -f gdigrab -framerate 30 -i desktop -vcodec libx264 -b:v 5M -acodec aac -b:a 256k -f flv rtmp :"link"


I tried to stream a single file but it looks like it works but doesn't, no errors are shown but it doesn't stream it


.\ffmpeg -i .\FinalFiles\FinalVideo\amar.mp4 -b:v 5M -acodec aac -b:a 256k -f flv rtmp ://rio.contribute.live-video.net/app/live[StreamKey]


my idea is to have a folder where I add and remove videos, and ffmpeg streams it and the stream never stops, how should I do this ?


sorry for bad english