
Recherche avancée
Autres articles (46)
-
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. -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (9444)
-
Play a HLS live m3u8 playlist, with expiring key
3 novembre 2016, par maxgalbuI’m trying to play an HLS url from the NBA servers, from Kodi (which is using ffmpeg).
It’s behind a login, so you won’t be able to play it.
This url has an expiring encryption key, and if I try to play that playlist from the NBA website, I can see that the player, every 5 seconds, does a request for the same playlist, and every time it downloads a new encryption key. If i play it with ffmpeg, there’s only one request, and the key eventually expires interrupting the streaming. Is it possible to do the same with ffmpeg ?
(Searching for ffmpeg hls refresh key yields no results :()
-
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.

-
Live website to video
25 janvier 2016, par Asaf NevoI have a website which shows a slideshow of pictures using JS.
The pictures objects are coming from a web service and are being updated from time to time.
In few days, I doing a test with a potential client to present the pictures slideshow on his big LED screen.
He’s using BSPlayer for the content on screen, an able to present a website, but it will never be a clean full screen (the X button and such will always be presents).
He’s the most comfort with presenting a video rather than a website.
One of my ideas of solutions was to check if there is a way to stream a content of a website.
Googling it got me to a solution combined
ImageMagic
andFFMPEG
which you can read about hereMy problem is that this solution only creates a slide show out of static pictures - which I can do, but i’m losing the dynamic part of my live slideshow.
Is there a tool for capturing websites and converting them into a stream of videos ?
Or maybe a workaround to achieve the same functionality ?