
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (31)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (5143)
-
How to create a JPEG 2000 sequence with alpha channel with FFmpeg
7 avril 2021, par floritHow can I create a JPEG 2000 sequence preserving the alpha of an input video with FFmpeg ?


ffmpeg -i /path/to/movie_with_alpha.mov -c:v jpeg2000 -pix_fmt rgba /output/path/sequence_%04d.jp2



… throws this info :


Incompatible pixel format 'rgba' for codec 'jpeg2000', auto-selecting format 'rgb24'



I tried other options for
-pix_fmt
with no luck.

-
Unable to manually parse the HEVC video with alpha [closed]
17 novembre 2023, par leoI'm trying to parse the bitstream of HEVC video with alpha on linux(specific video format reference WWDC2019 : https://developer.apple.com/videos/play/wwdc2019/506).


Taking the 'puppets_with_alpha_hevc.mov' file from 'Using HEVC Video with Alpha' as an example, I would first extract the HEVC bitstream, then parse its fields. When it comes to the VPS field, as I reach the vps_extension, I find that the bitstream in 'puppets_with_alpha_hevc.mov' does not conform to the HEVC standard document, preventing further parsing.


The extracted HEVC bitstream binary is shown in the following image.


I analyzed the VPS part of the bitstream, and the vps_extension field should start from 0x3F. However, I encountered an issue when parsing up to 0xA4, as shown in the picture, and could not continue with the parsing.



I'm not sure at which step the error occurred, but it should be somewhere between the 0x3F on line 28 and 0xA4 on line 34. Is anyone familiar with HEVC with alpha ? Could you provide some insights or tips for analysis ?


-
ProRes 4444 with alpha output file is HUGE, how to compress it with FFMPEG ? [closed]
3 avril 2024, par NoKeyI am using FFMPEG to output a .mov file. It needs to be a .mov file with an alpha channel. ProRes 4444 supports this, this is the command I use (this is simplified but does show the high increase of file size) :


ffmpeg -y -i vid.mov -c:v prores_ks -profile:v 4444 -c:a pcm_s16le -pix_fmt yuva444p10le vid2.mov



The output file shows what I want, but it is HUGE. I mean from a 10.8 MB .mov file, it creates a 340 MB output file. I tried reducing the file size with using the
-crf
command, but then I get this warning and the file size is unchanged :

Codec AVOption crf (Select the quality for constant quality mode) has not been used for any stream. The most likely reason is either wrong type (e.g. a video option with no video streams) or that it is a private option of some encoder which was not actually used for any stream.



How to output a .mov file with alpha channel with a smaller file size than the lossless ProRes one ?