
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (88)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (3229)
-
Write Live Photo metadata to video using FFMPEG
13 août 2021, par Luke BurnsAccording to Apple Live Photo file format, there are three pieces of metadata that need to be written for a JPEG and MOV to be accepted as a live photo. I can use exiftool and ffmpeg to write the necessary content identifier metadata.


For the JPEG :


exiftool -TagsFromFile reference.jpeg -makernotes -ContentIdentifier image.jpeg
exiftool -ContentIdentifier="$id" image.jpeg



Similarly, ffmpeg can be used to write the top-level Quicktime metadata with matching id.


However I'm having trouble with the timed metadata :
["com.apple.quicktime.still-image-time" : 0xFF]
.

I can't even manage to produce a copy of an existing live photo MOV file using ffmpeg that preserves the necessary timed metadata.


ffmpeg -i original.mov -map 0 -c copy -movflags use_metadata_tags copy.mov



copies the global metadata (i.e. com.apple.quicktime.content.identifier), but loses the necessary still-image-time which can be confirmed using exiftool :


> exiftool -G -U -ee original.mov | grep 'Still Image Time'
[QuickTime] Still Image Time : -1
> exiftool -G -U -ee copy.mov | grep 'Still Image Time'
> 



How can I write the timed metadata using ffmpeg—specifically the still-image-time data ?


Edit : it looks like this may be happening because ffmpeg does not know how to handle the
mebx
tag on data streams :

[mov @ 0x7fb232091400] Unknown hldr_type for mebx, writing dummy values



And ffmpeg doesn't seem to have a way to copy unknown streams. This appears to also be a problem for dealing with the
fdsc
tag in GoPro metadata streams (e.g. see https://gist.github.com/radimklaska/8974637522a751adb49db0de3be482c9#file-gopro_hevc_to_dnxhd-sh-L125), so it's often copied over asgpmd
data, which ensures it's not overwritten with dummy values, but this trick doesn't work in the case of live photosmebx
metadata.

-
Write timed Live Photo metadata to video using FFMPEG
20 décembre 2020, par Luke BurnsAccording to Apple Live Photo file format, there are three pieces of metadata that need to be written for a JPEG and MOV to be accepted as a live photo. I can use exiftool and ffmpeg to write the necessary content identifier metadata, but I'm having trouble with the timed metadata :
["com.apple.quicktime.still-image-time" : 0xFF]
.

I can't even manage to produce a copy of an existing live photo MOV file using ffmpeg that preserves the necessary timed metadata.


ffmpeg -i original.mov -map 0 -c copy -movflags use_metadata_tags copy.mov



copies the global metadata (i.e. com.apple.quicktime.content.identifier), but loses the necessary still-image-time which can be confirmed using exiftool :


> exiftool -G -U -ee original.mov | grep 'Still Image Time'
[QuickTime] Still Image Time : -1
> exiftool -G -U -ee copy.mov | grep 'Still Image Time'
> 



How can I write the timed metadata using ffmpeg—specifically the still-image-time data ?


-
avformat/asfdec_o : Don't segfault with lots of attached pics
12 novembre 2020, par Andreas Rheinhardtavformat/asfdec_o : Don't segfault with lots of attached pics
The ASF file format has a limit of 127 streams and the "asf_o" demuxer
(the ASF demuxer from Libav) has an array of pointers for a structure
called ASFStream that is allocated on demand for every stream. Attached
pictures are not streams in the sense of the ASF specification, yet the
demuxer created an ASFStream for them ; and in one codepath it also
forgot to check whether the array of ASFStreams is already full. The
result is a write beyond the end of the array and a segfault lateron.Fixing this is easy : Don't create ASFStreams for attached picture
streams.(Other results of the current state of affairs are unnecessary allocations
(of ASFStreams structures), the misparsing of valid files (there might not
be enough ASFStreams left for the valid streams if attached pictures take
up too many) ; furthermore, the ASFStreams created for attached pictures all
have the stream number 0, an invalid stream number (the valid range is
1-127). This means that invalid data (packets for a stream with stream
number 0) won't get rejected lateron.)Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>