
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (66)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (11116)
-
Revision 17037 : report de r17030
28 janvier 2011, par cedric -en SQLite sql_delete ne respectait pas encore le changement d’API introduit par r14495 : renvoyer le nombre de lignes supprimees ou false en cas d’echec. En renvoyant toujours true en cas de succes, meme si aucune ligne n’etait supprimee, la fonction trompait la gestion de la file d’attente de (...)
-
Set video's metadata by Python
17 février 2023, par Anton BohatovI need to upload the video to Google Photos. There is no way to set a date in request, only by metadata. I made a test by setting the date manually (windows, file options) and it works in Google Photos. So, I don't understand how to set it by Python. I found the needed value, but I can't set it.


import ffmpeg

file_path = r"test.MP4"
vid = ffmpeg.probe(file_path)

vid['streams'][0]['tags']['creation_time']



Result
'2020-11-01T20:07:09.000000Z'


I tried
vid['streams'][0]['tags']['creation_time'] = '2015-11-01T20:07:09.000000Z'


But nothing changes. Please help.


Note that this is about the video file's metadata, NOT WINDOWS DATA


-
How to put date and time in filename ? (FFmpeg)
3 novembre 2017, par lysHow to put data and time in an output file name generated from a video cut using ffmpeg ? I’ve tried some code combinations that did not work.
This code works to cut the video but not the date and time :
ffmpeg -s start -i input.mp4 -c copy -t 60 -strftime 1 -segment_format mp4 part_video% Y-% m-% d_% H-% M-% S.mp4
I have an example working for my videos 24/7 and one for the "photos", but they are not applicable to the video.
Example videos 24/7 :
ffmpeg -f dshow -i video = camera -c: v libx264 -f segment -strftime 1 -segment_time 24:00:00 -segment_format mp4 -segment_format_options movflags = empty_moov my_video% Y-% m-% d_% H-% M- % S.mp4
Example of photos :
ffmpeg -f dshow -i video = camera -qscale: v 1 -t 1 -strftime 1 -segment_format jpeg photo% Y-% m-% d-% M-% S.jpeg
Does anyone have an idea how to solve it ?