
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (52)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 -
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 (6560)
-
ffmpeg continous file stream or live stream
17 novembre 2019, par shrwI work in a news channel. and the use case is little common.
Where we have ads lined up. Let’s say 1000 ads in the entire day. ads are usually gif files overlay of 100 pixels X 500 pixels and usually less than 10 seconds.
then we need to either play mp4 files or stream live content.
What i really want is to :- if we have 30 mp4 files to play in the entire day and 1000 gif overlay ads.
- Is it possible to switch(with the help of any coding languale like node.js or linux commands)
streams from file to live stream.
-
Bad behavior live streaming from opencv to ffserver (ffmpeg)
9 octobre 2015, par jlarghiI’m trying to do live streaming of the traffic videos.
I have this fragment of C++ code :
Mat frame, output;
Size sizeOutput(640,360);
cvtColor(frame, output, CV_RGB2GRAY);
resize(output, output, sizeOutput);
cout << output.data;In the other hand I run :
./opencvvehicletrack | ffmpeg -f rawvideo -pix_fmt gray -s 640x360 -i - -an http://localhost:8090/feed1.ffm:
Where
opencvvehicletrack
print on thestdout
.And I got the next result : https://youtu.be/HqpAv_oi3u4
I can’t fix the "continous displacement to the right"
Can anyone help me ? Thanks a lot.
-
FFmpeg drawtext filter - is it possible to use variables with live data for x,y coordinates ?
3 mai 2019, par DavidKI’d like to use variables for FFmpeg’s drawtext filter’s x,y coordinates so I can feed them with real-time data. The below solution with sendcmd works but I have to add relative timecodes at the beginnings so FFmpeg can link coordinates to time positions. Can it be done without timecodes with only the actual coordinates and tell FFmpeg that it should update these coordinates every 100ms ?
It would look like this in my case :
cmd.txt
drawtext reinit ’x=960:y=540’ ; (coordinates change when there’s a new position from the live source and FFmpeg updates these via sendcmd regularly).
Thanks !