
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (82)
-
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 (...) -
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 (...) -
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 (...)
Sur d’autres sites (4622)
-
ffmpeg -ss timeofday timecode
19 mai 2014, par user3653763I’m trying to trim a 2 hour audio wav file at a specific timeofday timecode not start of file. Here is my code :
ffmpeg -ss 18:11:54.14 -t 00:16:17.04 -i audio.wav -acodec libfaac -b:a 128k -af "volume=6dB" output.aac
The error I’m getting is :
Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)
I’m assuming I get this error because my audio file is 2hours long, not 19 hours long. How can I adjust that ?
-
Best way to extract all keyframes from a video in Java ?
2 mars 2017, par JT JI have a Windows batch script that I’m currently trying to recreate in Java. The script runs an ffmpeg command that extracts all of the keyframes from a video and pastes them as .BMP images in a folder.
This is what it the script looks like :
ffmpeg -i input.mp4 -vf "select=eq(pict_type\,I)" -vsync 1 %%3d.bmp
The end result of this is that it takes "input.mp4" and outputs each keyframe as 001.bmp, 002.bmp... and so on.
I’m trying to avoid simply starting an ffmpeg runtime, because I want to be able to run this script on other platforms in the future. Also, I’ll be doing this for very long videos (multiple hours long sometimes) so performance is very important, and needs to be done as fast as possible. Is it possible to use multithreading ? That’s something I’m not familiar with in Java. What would be the best way to do this ?
-
How to capture screenshots from a video clip 50 minutes into the clip and do it fast ?
3 janvier 2015, par MintOk it seems that whenever I tell ffmpeg to take a screen cap half way though the clip (clip can be as long as 10 hours) it uses 100% of 1 cpu core and takes ages… whereas if I let it do a frame at the start it goes real quick, as if it scans though the video to get to the middle instead of just jumping to it !
Here is the code im currently using :
ffmpeg -y -itsoffset -“500" -i “clipname.mov" -vcodec png -vframes 1 -an -f rawvideo “clipScreenshot001.png”
This can take several minutes.
These are HD videos too, 720p/1080p and allot of the time they are raw unedited clips (e.g. very long).
So I was hoping for some better software that will make screen captures from video much faster (has to be linux and scriptable).