
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (83)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
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 (...)
Sur d’autres sites (6839)
-
FOR FFMPEQ CODE LIVE [on hold]
20 août 2017, par Trung lêOne user live streaming and he used ffmpeg with 1 pc : 1core,1GB ram AND LIVE WITH 20 threads EVENTS ON YOUTUBE @@ unbelievable . i would like need "code live", can i help you ? tks very much
https://ffmpeg.org/documentation.html -
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.

-
How to stitch ad on live streaming ?
3 mai 2021, par user951215I want to stitch ad in live stream. I achieved live stream by using nginx as rtmp server and OBS as rtmp client which ingest data into nginx and then nginx convert it to hls and store in server path so i link that m3u8 file to stream in html player using js hls lib. All i wanted now is stitch ad video in this live streaming. which will be better solution should i process hls playlist stored in the server and merge it with ad video or any other way. if any one know about ad stitching in live streaming please suggest me better way to implement in java using ffmeg.