
Recherche avancée
Autres articles (45)
-
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 -
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9947)
-
How to convert videos with ffmpeg
18 juin 2012, par MeenaI want to convert a video from one format to another using ffmpeg. I try lots of code but it does not convert the video.
For example :
exec("ffmpeg -i mickey.flv -ar 22050
-ab 32 -f avi -s 320x240 mickey.avi ") ;This code does not convert the video, it does not show any error, it is loading continuously.
-
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 ?