
Recherche avancée
Autres articles (96)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8169)
-
avcodec/sonic : Fix leaks upon allocation errors
13 septembre 2020, par Andreas Rheinhardtavcodec/sonic : Fix leaks upon allocation errors
The Sonic decoder and encoders allocate several buffers in their init
function and return immediately if one of these allocations fails ; this
will lead to leaks if there was an earlier successfull allocation. Fix
this by setting the FF_CODEC_CAP_INIT_CLEANUP flag.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
segment : Fix the failure paths
5 janvier 2015, par Luca Barbatosegment : Fix the failure paths
A failure in segment_end() or segment_start() would lead to freeing
a dangling pointer and in general further calls to seg_write_packet()
or to seg_write_trailer() would have the same faulty behaviour.CC : libav-stable@libav.org
Reported-By : luodalongde@gmail.com -
FFMPEG loses drop frame flag when converting from 29.97 mov to mp4
18 décembre 2018, par dementisI’ve got a 29.97 drop frame video, proven with the mediainfo output lines
framerate: 29.97
andDelay_DropFrame: Yes
. I want to convert it to an mp4.Running
ffmpeg -i INPUT.mov -y -b:v 1500k -vcodec libx264 -vf scale=640:-1 -pix_fmt yuv420p -movflags +faststart -strict -2 OUTPUT.mp4
yields a non-drop frame video. When I run mediainfo against the new file, I can see that the framerate is still 29.97, but there is no indication of drop frame anymore.
This also happens when i run the above outputting an mov, and also when i runffmpeg -i INPUT.mov OUTPUT.mov
, so i think it’s purely in the conversion where the data is being lost.One lead i’m following is that mediainfo outputs 3 sections for the original mov, [General], [Video], [Other], while my new mp4 only outputs [General] and [Video].
My FFMPEG version is 3.4.1
Any ideas ?