Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (11045)
-
Java VLCJ canvas and drawing ontop with transparent background
23 janvier 2013, par DizzleI have spent a bit of time researching about whether it is possible to draw on top of a VLCJ movie within a Java application. I have found a few bits of conflicting advice some saying it is not possible and some referencing articles which have moved on oracle.com.
Can someone clarify if it is or is not possible to draw java2d graphics like rectangles/lines which also have transparent backgrounds so the video stream underneath can be viewed whilst the shapes are present on screen ?
If this is not possible with vlcj what would be a good alternative for a linux and windows compatible media player allowing for annotation over a playing video stream ? Please note i do not have to be limited to java but something where i can get re-use out of developed drawing routines for multiple platforms would be ideal.
-
Use C++ and FFmpeg to stream to Flash Media Server
25 janvier 2014, par FarawinI'm building an application in C++ that should use FFmpeg to send a live stream to Flash Media Server. For starters I would like to be able to send a .mp4 file. Using the FFmpeg .exe I can do it like this :
ffmpeg -re -i TEST.mp4 -vcodec libx264 -f flv rtmp://[host]/[application]/[stream]How would you go about implementing something like that in code ? I can only figure out how to read data, not write it. I have found functions to open input but nothing about how to connect to FMS. All write functions I can find seems to be how to write to file. Please advice.
-
ffmpeg output to another device
16 juin 2017, par Eugene AlexeevI have a simple Java application which mapping the videostream from the video and sending it to the ios app over the socket connection. Here’s the
ffmpegcommand :ffmpeg -i 1.mp4 -map 0:0 output.mp4So far so good, but I need to cut down the time between convertation the video and getting it in the ios app. And basically my idea is - sending the output of
ffmpegcommand already onto device. I’m trying to do this by command :ffmpeg -i 1.mp4 -map 0:0 -f ffm tcp://192.168.0.106:1112/Documents/output.mp4Clearly I’m missing something, but I didn’t find much information for my case in the internet, so I simply don’t really know from what side I should approach this task. I’ve read something about
ffserverbut I did not get how to use it in my case. Any help and advice would be really appreciated ! Thanks.