
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (43)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (8084)
-
Best solution to automatically enrich a video stream with dynamic overlay (text, images, ...)
17 novembre 2016, par hg.mIn my company, we are currently looking for a solution to enrich a given video stream (which is being broadcasted via RTMP) from a remote webcam with dynamic information, such as current date/time, special measure values which are available on a server or the most recent entries in a database. Basically we want to achieve a simple, dynamic on-screen display as, for example, TV stations are using. The modified stream should then be restreamed, for example to be viewed in VLC Player or on YouTube.
So far, I came up with the following ideas :
-
Using OBS with some own scripts and plugins - that’s disadvantageous because we would like to run the solution on a high-network performance server 24/7 without a GUI. Basically I’d need a fully command-line based version of OBS.
-
Using ffmpeg : I know that there are text filters available, but they are mainly static (or periodically polling a file with text) and don’t allow for any design adjustments other than font, font size and color. It would be great if there was some way of overlaying a Webkit browser view onto the stream, because this would allow us to design the overlays in HTML5 and CSS and using WebSocket technology for updating the data.
- The overlay could be captured with PhantomJS, but how should we unify it with the stream and would it be fast enough to render 30 FPS ?
Are there additional (preferably open source) tools we could use ? What would be the best strategy to implement this without buying expensive TV broadcasting software ?
-
-
What is the Target Build Os in FFmpeg 3.1.3 ?
28 février 2017, par belle tianIn configure help info,there are two type of compiler related options :
- target-os*
- host-os*
Do they have the same meaning as GNU Build System ? such build ,host ,target.
-
【CV】use ffmpeg to process video through cmd in python
26 novembre 2019, par user66124when reading the segment generation function in https://github.com/zhengshou/scnn, I encounter the following sentence :
cmd = '../lib/preprocess/ffmpeg -i ' + input_video + ' -r ' + str(framerate) + ' -f image2 ' + framedir + videoname +'/%06d.jpg' + ' 2>' + framedir + 'frame_extract.log'
Is there anyone know the meaning of each part ?