
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 (56)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 ;
Sur d’autres sites (9308)
-
Anomalie #3380 (En cours) : Un rédacteur peut attacher un document à un article qu’il n’a pas le d...
4 juin 2015, par b bOn ouvre de nouveau car il reste un point à éclaircir :)
-
change position of image overlay on the fly
16 août 2012, par user1603231I need some help on an issue that I am having overlaying images on a live feed.
Currently, I am streaming raw data from a device, transcoding that data (i.e.ogg
) and then re-streaming using HTTP because I need to view through an HTML page. My problem is that I need to overlay an image on the stream where - when a particular object moves - the image overlay moves as well.For example, if you wanted to place an 'X' over a moving object where that object may move left-to-right or top-to-bottom. At this point, I am able to overlay the image at a fixed point using the following command :
ffmpeg -i rtsp ://[host] :[port] -i x.png -filter_complex 'overlay=10:main_h-overlay_h-10' http://[host] :[post]/output.ogg
This will give me an 'X' over the object at the start but, once the object moves I need to change the position of that 'X'.
The only real requirement is that the technologies that I utilize need to be available for Linux.
Any ideas ?
Thanks !
-
How to stream Xuggler live video by any medium
22 décembre 2014, par ANTARAWhat I want to do is to
- grab live stream of video (for example screen capture),
- set the stream quality, framerate etc.
- process frames (indicate current mouse position on image or place watermark)
- encode it with Xuggle (or FFMPEG)
At his point I should have a byte array or DataOutputStream to send via any medium.
For instance I will send byte array over java socket, then on the other side I want to- receive byte array
- decode the stream as video stream and display or save to file
The closest solution I have found was this
http://stackoverflow.com/a/3606006/1768467
but I can not change it to work according to point 4, 5 and 6 - it’s an example of streaming via RTMP only