
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (59)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (8175)
-
How to update watermark realtime while streaming video with ffmpeg ?
28 juillet 2017, par boygiandiI’m trying to add a watermark to video while streaming. However this watermark get update every second. How to tell ffmpeg to update the watermark ? Try added -r 2 before -i watermark but didn’t works.
The ffmpeg command like this
ffmpeg -i /tmp/45893_video_0.ts -i /tmp/watermark.jpg -filter_complex ’[1:v]colorkey=0x2bade0:0.3:0.2[ckout] ;[0:v][ckout]overlay[out]’ -map ’[out]’ -f flv "rtmp ://"
-
Seamlessly switching from streaming one video to another
28 octobre 2018, par mustangSuppose I have two videos :
Video A is of a ball going through one full cycle of a bounce and is 30 frames long. At frame 1, the ball is at the top. On frame 15, the ball hits the floor, and on frame 30 the ball is back up at the same position as it started (suppose zero energy loss).
Video B is of the same ball drifting to the right and it is 30 frames long too. At frame 1, the ball is in the same position as it is in Video A. On frame 15, it is half way to the right and down. n frame 30, it is all the way right and on the ground.
I want a way to stream video A indefinitely. Then, when some event occurs, I want to be able to wait until video A is on frame 1 and seamlessly change over to streaming video B. How would I perform that ?
-
FFMPEG : streaming two different videos using the same resource
27 mai 2020, par DonmoearI'm trying to use FFMPEG to stream a video to a web-server, 
I'm using Local-host for now,It works like a charm Both on MacOs and Ubuntu, 
But I want to try streaming two videos, on the same resource (PC webcam), 
On macOS it works,



On ubuntu I get :
/dev/video0: Device or resource busy



the used command is :



ffmpeg -f v4l2 -framerate 30 -video_size 640x480 -i /dev/video0 -f alsa -ar 11025 -i hw:0 -f mpegts -codec:v mpeg1video -s 320x180 -b:v 160k -bf 0 -codec:a mp2 -b:a 64k -muxdelay 0.001 http://localhost:8081/stream/1Zd7atYxVTy27jbKfhGva9cKJan/one



I want to understand what might be causing the issue on Linux. 
Thanks