
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#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
Autres articles (7)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (3196)
-
fftools/ffmpeg : Take type limitations of AVFifo API into account
20 novembre 2021, par Andreas Rheinhardtfftools/ffmpeg : Take type limitations of AVFifo API into account
The types used by the AVFifo API are inconsistent :
av_fifo_(space|size)() returns an int ; av_fifo_alloc() takes an
unsigned, other parts use size_t. This commit therefore ensures
that the size of the muxing_queue FIFO never exceeds INT_MAX.While just at it, also make sure not to call av_fifo_size()
unnecessarily often.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avfilter/bwdif : account for chroma sub-sampling in min size calculation
6 décembre 2023, par Cosmin Stejereanavfilter/bwdif : account for chroma sub-sampling in min size calculation
The current logic for detecting frames that are too small for the
algorithm does not account for chroma sub-sampling, and so a sample
where the luma plane is large enough, but the chroma planes are not
will not be rejected. In that event, a heap overflow will occur.This change adjusts the logic to consider the chroma planes and makes
the change to all three bwdif implementations.Fixes #10688
Signed-off-by : Cosmin Stejerean <cosmin@cosmin.at>
Reviewed-by : Thomas Mundt <tmundt75@gmail.com>
Signed-off-by : Philip Langdale <philipl@overt.org> -
mpegtsenc : Take max_delay into account when buffering multiple audio packets into...
2 avril 2015, par Martin Storsjömpegtsenc : Take max_delay into account when buffering multiple audio packets into one PES packet
Make sure we don’t buffer up more than max_delay worth of data
before writing a PES packet, even if pes_payload_size is set to
a larger value.Signed-off-by : Martin Storsjö <martin@martin.st>