
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (83)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (6768)
-
avformat/movenc : properly handle cover image codecs
1er juin 2018, par Timo Teräsavformat/movenc : properly handle cover image codecs
Find codec tag for attached images using appropriate list of
supported image formats.This fixes writing the cover image to m4v/m4a and other container
formats that do not allow these codecs as a track.Signed-off-by : Timo Teräs <timo.teras@iki.fi>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avformat/movenc : fix recognization of cover image streams
4 juin 2018, par Timo Teräsavformat/movenc : fix recognization of cover image streams
For chapter images, the mov demux produces streams with disposition set
to attached_pic+timed_thumbnails. This patch fixes to properly recognize
streams that should be encoded as cover image (ones with only and only
attached_pic disposition set).Signed-off-by : Timo Teräs <timo.teras@iki.fi>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avformat/movenc : support writing iTunes cover image
14 avril 2018, par Timo Teräsavformat/movenc : support writing iTunes cover image
Fixes https://trac.ffmpeg.org/ticket/2798
This makes movenc handle AV_DISPOSITION_ATTACHED_PIC and write
the associated pictures in iTunes cover atom. This corresponds
to how 'mov' demuxer parses and exposes the cover images when
reading.Most of the existing track handling loops properly ignore
these 'virtual streams' as MOVTrack->entry is never incremented
for them. However, additional tests are added as needed to ignore
them.Tested to produce valid output with :
ffmpeg -i movie.mp4 -i thumb.jpg -disposition:v:1 attached_pic \
-map 0 -map 1 -c copy movie-with-cover.mp4The cover image is also copied correctly with :
ffmpeg -i movie-with-cover.mp4 -map 0 -c copy out.mp4AtomicParseley says that the attached_pic stream is properly
not visible in the main tracks of the file.Signed-off-by : Timo Teräs <timo.teras@iki.fi>