
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (24)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (6032)
-
FFMPEG force_keyframes multiple / several times
10 mai 2016, par Johan SkanebyI am looking for the correct way to use ffmpeg argument force_key_frames at multiple times in a transcode job. As an example right now I can us force_key_frames 0:00:22 to force a keyframe at 22 seconds, but I need both more granularity forcing at fram level as well as being able to select more time points in the job to have forced key frames.
Maybe one at 3 minutes 32 seconds 15 frames and another at 8 minutes 16 seconds 11 frames and so on.
-
Layering 2 Audio Files at Set Times in Node.js
8 janvier 2017, par Tom RoweJust typed a massive question and realised I was wasting space and time, so I shortened it, will answer any questions of context if needed :
PROBLEM
I have a short audio file "name.mp3" and a long audio file "Vocals.mp3", and i’m trying to make an output file where the audio from "name.mp3" occurs multiple times over "Vocals.mp3"**.
For the sake of this thread lets just say every 20 seconds.
TRIED
So far I have been using "Fluent-ffmpeg" and have just started using "Sox-audio" but I’m open to suggestions of other packages. I have been able to split "Vocals.mp3" into parts and concatenate "Name.mp3" inbetween, but this has led to timing issues.
I have also been using the Mix() method from Sox but haven’t been able to find a working system of starting each "name.mp3" input at set times.
I’ll continue looking for more threads about this topic and if i find an answer i’ll share it here.
Cheers !
-
create video from images but repeat the first and the last frame 100 times
20 septembre 2016, par ryan banzeI have images in a specific order in a directory
Order of Images is as follows
frame2_0000.jpeg
frame2_0001.jpeg
frame2_0002.jpeg
frame2_0003.jpeg
....
....
,etcI generate the video with the following command
"ffmpeg -y -r 23 -i location_of_image_folder/frame2_%04d.jpeg -c:v libx264 -s 1280*1024 -movflags faststart location_of_output_location.mp4"
Now I want to create a video such that the first frame is repeated 100 times to create the video and the last frame is repeated 100 times.
What strategy should I employ here ?