
Recherche avancée
Autres articles (57)
-
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 -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (6953)
-
Frames drop when it comes to the last image - Android FFMPEG
1er novembre 2015, par RahulI’m using the code
ffmpeg -f image2 -framerate 0.2 -pattern_type sequence -framerate 25 -i /Source_Folder/Temp/a%d.jpg Dest_Folder/name.mp4;
When I execute it for a number of images, I always lose frames in the last image. Ex : If every image comes up for 3 seconds each, the last one just half a second or so short. What should I change in the above command ?
-
Presentation on the HTML5 video tag
29 avril 2010A few weeks back, I was given the opportunity to present at MinneWebcon. My talk, "<video> will be your friend" focused on the legal issues and implementation possibilities surrounding the HTML5 video tag.
I’ve put my slides online, if you want to take a look. I’ve also recorded the first half the of the lecture as part of a test of our Mocha class capture application. I’ll be recording the second half Real Soon Now.
HTML5 Video PresentationView more presentations from sith33. -
avformat/demux : add duration_probesize AVOption
29 mars 2024, par Nicolas Gaullieravformat/demux : add duration_probesize AVOption
Yet another probesize used to get the durations when
estimate_timings_from_pts is required. It is aimed at users interested
in better durations probing for itself, or because using
avformat_find_stream_info indirectly and requiring exact values : for
concatdec for example, especially if streamcopying above it.
The current code is a performance trade-off that can fail to get video
stream durations in a scenario with high bitrates and buffering for
files ending cleanly (as opposed to live captures) : the physical gap
between the last video packet and the last audio packet is very high in
such a case.Default behaviour is unchanged : 250k up to 250k << 6 (step by step).
Setting this new option has two effects :override the maximum probesize (currently 250k << 6)
reduce the number of steps to 1 instead of 6, this is to avoid
detecting the audio "too early" and failing to reach a video packet.
Even if a single audio stream duration is found but not the other
audio/video stream durations, there will be a retry, so at the end the
full user-overriden probesize will be used as expected by the user.Signed-off-by : Nicolas Gaullier <nicolas.gaullier@cji.paris>