
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (13258)
-
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 !
-
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 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.