
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (90)
-
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 -
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 (...) -
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 (...)
Sur d’autres sites (9179)
-
Stream ogv video while it is being converted
15 juin 2012, par EshMy question is how to stream an ogv video while it is being converted.
For example, I have an html page that show a html5 video that is like this :
<video>
<source src="some_url_to_video_src" type="'video/ogg'"></source>
</video>The video source here should be converted from an h264 video file located on the same server. I want to let clients be able to play the ogv video while it is being converted from the h264 file.
As I did some homework, this process could be done via ffmpeg streaming, anyone know the parameters I should use and any modification I should do in the above code as well ? A detailed answer will be much appreciated.
Thanks
-
Commandline video/image crossfading
11 juin 2012, par testerI have a
test.avi
usingffmpeg
ormencoder
or some other commandline utility,
I want to takesplash.png
put it at the beginning of the video,
fade it out, show test.avi, then at the end of test.avi, fade splash.png back in.How would I go about doing this ?
-
Convert raw image using open-source library with permissive license
30 août 2011, par BrianI need to convert a raw, rgb32-formatted image to a PNG with a library (written in, in order of preference, Java, C, C++) having a permissive (e.g. BSD or Apache) license.
I'm able to convert the image using FFmpeg with this call :
ffmpeg.exe -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb32 -s 20x40 -i infile -f image2 -vcodec png out.png
where 20x40 is the width by the height.
But, sadly, I need to avoid FFmpeg due to its license.
I've seen people speculate that libpng could do the job, but I'm skeptical given the documentation I've seen at the libpng site. Perhaps you'll give an example.
I don't know what the rawvideo and rgb32 values mean to FFmpeg, so I asked this question.
EDIT 1 : edited the ffmpeg call to show width x height.