
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 (36)
-
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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7558)
-
FFMPEG - Streaming GoPro4 to RSTP
20 mai 2017, par WingedGreeting !
I’m planning to capture a realtime streaming video from GoPro4 and load it into TouchDesigner in order to use this footage in a projection mapping project.So far I was able to play GoPro4 stream using ffplay doing as follows :
1. Host GoPro4 WiFi hotspot.
2. Connect a laptop WiFi to GoPro4’s hotspot.
3. Restart GoPro stream service by opening ’http://10.5.5.9/gp/gpControl/execute?p1=gpStream&c1=restart’ in s browser.
4. Run ffplay command in order to open ffplay stream video window : ’ffplay -an -fflags nobuffer -f:v mpegts -probesize 8192 rtp ://10.5.5.9:8554’The next step I opt to make it to re-stream this signal into RTSP protocol so TouchDesigner could receive this signal.
And here is my question - how to re-stream this input to RTSP ?
-
Proposer la non conservation du document d’origine
17 mai 2013Proposer la non conservation du média d’origine après réencodage.
Grâce à la méthode récupération de média depuis un serveur externe, l’utilisateur peut outrepasser la limitation de l’envoi des média par http. Certains pourraient envoyer un média brut sur le serveur sans vouloir réencoder une première fois et donc sans optimiser la qualité sur l’espace de stockage utilisé. L’utilisateur se fie à la configuration de réencodage de médiaspip.
Lorsque l’utilisateur accepte la qualité de la video réencodée, peut-on proposer à l’utilisateur de supprimer la video d’origine dont l’espace disque est potentiellement bien plus importante ?
Dans le cas d’un espace de stockage mutualisé, cette option rendra service aux voisins. Les connaissances en réencodage dû à la limite d’envoi ne seront plus nécessaires.
-
alpha support for fluent-ffmpeg complexFilter drawtext ?
24 octobre 2017, par mgdI am able to use
ffmpeg
from a console and get a text to fade in and out, but am trying, and failing, to use thealpha
option in thefluent-ffmpeg
.This works :
ffmpeg -i testvideo.mp4 -filter_complex "[0:v]drawtext=fontfile=//Lato-Black.ttf:text='This is a test':fontsize=12:fontcolor=e82e2e:alpha='if(lt(t,1),0,if(lt(t,2),(t-1)/1,if(lt(t,4),1,if(lt(t,5),(1-(t-4))/1,0))))':x=(w-text_w)/2:y=(h-text_h)/2" outfile.mp4
This fails when used within a node service :
.complexFilter({
filter: 'drawtext',
options: {
fontfile:
text: "This is a test",
fontsize: 18,
fontcolor: "ff0000",
alpha : if(lt(t,1),0,if(lt(t,2),(t-1)/1,if(lt(t,4),1,if(lt(t,5),(1-(t-4))/1,0)))),
x: 10,
y: 10
}
}, 'out')fluent-ffmpeg fails with : ffmpeg exited with code 1 : Error configuring
complex filters. Invalid argumentIs
alpha
not supported influent-ffmpeg
(I can’t find any documentation for it), or is it a different keyword ?