
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (17)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
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 (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (6268)
-
How do I use FFMPEG to scene detect and split a clip at each cut ?
31 août 2015, par Brendan LuuI want to take an edited video and split it into a sequence at each cut. I figured out how to use scene detection with FFMPEG and have the correct timestamps for when scenes change but I would like to use the .txt or .csv to split the full video into individual clips. Can this be done ? If it’s possible, how can I do it ?
The command I used to get the scene detection is
ffprobe -show_frames -of compact=p=0 -f lavfi "movie=MOVIEFILENAME,select=gt(scene\,.4)" > MOVIEFILENAME.csv
-
Extracting Frames from Video using FFMPEG in GPU and File Name with TimeStamp in Linux
2 septembre 2019, par SRajI have Long video 8hrs to be converted to individual frames to be saved in a folder with the filename in the format "InputVideoName_Frame_Number_TimeStampoftheframeinthevideo.jpg" for example : InputVideo2_234_130425 in a python code. My system has GPU to process the load.
I was able to get to a part of it by running the below code in terminal but was not able to have the filename in the format i need and also was not able to run it in python code with absolute pathnames
ffmpeg -i ActualPath/Video.mp4 -vf fps=1 Outputfolder/out%d.jpg
-
Retrieving and Saving media metadata using FFmpeg
22 mars 2024, par Rahul PatwaI want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.



Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.



Or, is there any other tool/utility/API that I can use for this ?