
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (47)
-
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 -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (9678)
-
Xuggler encoding images to video FPS issue
1er novembre 2011, par Chris RobinsonI've been experimenting with encoding a video from a series of images using CaptureScreenToFile.java as a basis. My output is to be an
MP4
file. From 26 images, using the code as is (taking the images from a directory instead of from a screen capture obviously), the encoding video is 11s. However, if I change theframerate
variable to :frameRate = IRational.make(1, 24);
which I believe should result in a video of 24FPS. It does not however, (no change from the original video in fact). I experimented with changing the
timeStamp
variable inencodeImage()
method to :long timeStamp = (firstTimeStamp*1000)+(i*40);
where
0 < i < 25
to see if that would help but it doesn't. Can anyone explain to me how to encode a directory of images to a video with a framerate that I can set ? -
progressive streaming in silverlight
5 mai 2012, par JewelThiefI am using FFMPEG to convert my videos into mp4 format and serve them over internet using custom player
ffmpeg -i input.wmv -b 250k -vcodec libx264 -acodec libvo_aacenc -ab 100000 -r 24 -s 640x480 -y output.mp4
When i play this on HTML5 player, it loads up pretty quick but when the same video is getting rendered using silverlight player, it takes noticeably LONG time to load.
What is that we can do different here to improve experience in Silverlight as well. No we dont have option of adaptive streaming.
-
ffmpeg : How to add frames or black at the end of a video ?
10 mai 2012, par Jim HoyleHow to copy an arbitrary amount of duplicates of the last frame at the end of any video ? Or alternatively, how to add black frames at the end of any video ? Can this be done by scripting and ffmpeg ? Of course any other tool is fine, as long as the action is scriptable.
The difficulty is that all video formats, or at least as wide range of video formats as possible, should be supported. The script should take in any video formats without manually changing the script per video.