
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 (73)
-
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 -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (7793)
-
FFMPEG outputs a broken-picture video when input alpha stdin videoraw
27 septembre 2021, par NTPHCMI follow this to bring a stdinput to FFMPEG.


The idea is : we use AS3 to capture every frame in Animate to byteArray (with ARGB pixel format - means the frame can have transparancy background). After that, we transfer that byteArray to FFMPEG to get output.


If I capture non-transparency picture (the picture with background), the process works well to create motion video.


But when I capture transparency picture and make motion (multi-frame video), the problem appears as below :
Output picture


We can see the bird print a long streak, but I expect one bird flying from the right to the left like this.


-
avfilter/elbg : Extend filter to include alpha values in the quantization procedure
26 septembre 2021, par Soft Worksavfilter/elbg : Extend filter to include alpha values in the quantization procedure
Usage example :
ffmpeg -y -loglevel verbose -i "..\fate-suite\apng\o_sample.png" -filter_complex "elbg=pal8=1:use_alpha=1" -frames:v 1 out.png
Signed-off-by : softworkz <softworkz@hotmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
How can I convert a webm file with alpha channel to a hevc encoded file that will play in safari on an IPad ?
21 septembre 2021, par Programming GuyI've got a webm file with transparency : https://itype.techforge.com.au/assets/videos/upshot/module1/NP_1A.webm


I'm trying to convert it into something that will play in the video element of a web page in the Safari browser on an IPad.


An example of a file that works is : https://rotato.netlify.app/alpha-demo/movie-hevc.mov


My attempts at doing this conversion have all failed. 3rd party apps seem to all lose the alpha channel.


On my mac I tried ffmpeg


ffmpeg -i input.webm -c:v hevc_videotoolbox -allow_sw 1 -alpha_quality 0.75 -vtag hvc1 output.mov



However, while this resulted in a file that reported a codec of MPEG-H Part2/HEVC (H.265) (hvc1) the resulting file still has a black background instead of a transparent one.


ffmpeg log : https://pastebin.com/DMM9y5PU