
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (90)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (8792)
-
avformat/oggenc : Avoid allocating and copying when writing page data
3 mai 2020, par Andreas Rheinhardtavformat/oggenc : Avoid allocating and copying when writing page data
When the Ogg muxer writes a page, it has to do three things : It needs to
write a page header, then it has to actually copy the page data and then
it has to calculate and write a CRC checksum of both header as well as
data at a certain position in the page header.To do this, the muxer used a dynamic buffer for both writing as well as
calculating the checksum via an AVIOContext's feature to automatically
calculate checksums on the data it writes. This entails an allocation of
an AVIOContext, of the opaque specific to dynamic buffers and of the
buffer itself (which may be reallocated multiple times) as well as
memcopying the data (first into the AVIOContext's small write buffer,
then into the dynamic buffer's big buffer).This commit changes this : The page header is no longer written into a
dynamic buffer any more ; instead the (small) page header is written into
a small buffer on the stack. The CRC is then calculated directly via
av_crc() on both the page header as well as the page data. Then both the
page header and the page data are written.Finally, ogg_write_page() can now no longer fail, so it has been
modified to return nothing ; this also fixed a bug in the only caller of
this function : It didn't check the return value.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
avformat/movenc : initialize pts/dts of timecode packet
14 mars 2022, par Limin Wangavformat/movenc : initialize pts/dts of timecode packet
Fix below error message when timecode packet is written.
"Application provided duration : -9223372036854775808 / timestamp : -9223372036854775808 is out of range for mov/mp4 format"try to reproduce by :
ffmpeg -y -f lavfi -i color -metadata "timecode=00:00:00:00" -t 1 test.movNote although error message is printed, the timecode packet will be written anyway. So
the patch 2/2 will try to change the log level to warning.Fixes ticket #9488
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
-
How to compile avconv with libx264 on Ubuntu 12.04 LTS (Precise Pangolin) ?
1er janvier 2015, par KugutsumenIs there a step-by-step guide on how to compile avconv in Ubuntu ?
It seems hard to search for any tutorial with avconv compared to ffmpeg.