
Recherche avancée
Autres articles (47)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (9318)
-
Hide or show overlay with sendcmd
28 janvier 2019, par Сергей СергеевCan I hide the overlay and then show it with sendcmd ?
-
AAC stream has errors, but I can't use ffmpeg to show me errors
25 avril 2019, par Gyula SoósI saw some results here on stack related to this issue, but I just can’t make it to work for my life. What is wrong with this command ? How was I supposed to run it ?
ffmpeg -err_detect explode http://ohnewerbung.ice.infomaniak.ch/radiobasilisk-64-0.aac
This gives the error :
Output file #0 does not contain any stream
I’m running ffmpeg on a mac if it makes any difference. :/
-
automatically show blue screen in ffmpeg when live video source disconnects
13 janvier 2015, par user1913115i’m capturing a live source using ffmpeg :
ffmpeg -i rtsp://192.168.1.143/source -codec copy output.mp4
which works great. the ip address is an address of an RTSP proxy server which takes in the camera itself as the source. i.e. my setup :
camera ->> RTSP proxy ->> ffmpeg(output)
if camera disconnects (accidentally or on purpose) the recording stops (obviously) and only continues when I re-connect the camera.
Question : is there a way for ffmpeg to ’fill’ the down time with blue screen or green screen of some sort ?
i know i can ’play’ a still image of a green screen using ffmpeg to record an mp4 out of it :ffmpeg -loop 1 -y -re -i green.jpg -r 30 -vcodec libx264 -an -f h264 greenvideo.mp4
so i could set it up this way :
ffmpeg(green) ->> ffmpeg(output)
but I would need to run the command manually. is there a way for ffmpeg(output) to automatically detect the disconnect and use green.jpg as a ’video’ source ? or i can even create a 5-minute green.mp4 video of just green screen.
put it another way, is it possible for ffmpeg to automatically switch input sources if one goes down ?