
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
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)
-
avformat/utils : inform the user if the protocol cannot be determined
15 juillet 2015, par Michael Niedermayer -
Properly using FFMPEG in Android [on hold]
16 janvier 2017, par devxconI know this question must have been asked several times. But none of the answers lead me anywhere useful.
From what I understand, FFMPEG is a kind of converter that helps to convert a multimedia file format to another format. I have seen an implementation of FFMPEG called FFPLAY. But what I don’t understand is, how can we take a type of video convert and use it like a multimedia decoder. I went over to this project which teaches how to use ffmpeg (convert & so on). But my problem is, I cannot use this to show the video frames on android device. I am just using media player class from android to play whatever my device supports. I want to play other natively unsupported formats like ac3, vob and so on. Is there a way to accomplish this ? I am stuck in this for over 2 months.
Also, android devices are not fast enough to convert and play a file at same time. I don’t understand how popular players like VLC or MX player uses ffmpeg.
Thanks in advance.
-
pngdec : don’t use AV_PIX_FMT_MONOBLACK for apng
3 mai 2015, par Andreas Cadhalpunpngdec : don’t use AV_PIX_FMT_MONOBLACK for apng
AV_PIX_FMT_MONOBLACK has the AV_PIX_FMT_FLAG_BITSTREAM flag, i.e.
linesize can be smaller than width.Since x_offset is only check against the width, this can lead to
x_offset * bpp >= image_linesize.In this case ptr could be set to a position outside the image_buf in
png_handle_row, leading to memory corruption and thus crashes.Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>