
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (76)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
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 (...) -
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 (6068)
-
Flash Media Server Recording Delay
14 novembre 2011, par CoreyI have an application where a user can record themselves singing along to a song. Once I receive the NetStream status event 'Record.Start' I start playing an audio file. Once the audio completes, I stop recording. Next, I have a script that runs FFMPEG to combine the recorded video/audio with the same music file. The problem I'm finding is that there is a noticeable delay between the recorded audio and the music. It seems also that this delay depends on network speed as it varies depending on the network. Can I determine this delay through the FMS dynamically ?
-
Trying to install FFMPEG on Heroku
20 avril 2019, par João LucasI’m trying to host a Discord bot with music feature in Heroku, but when I play the music, it says "FFMPEG not found", so I tried adding that buildpack : https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git
but it gives the same error, even if I restart the dynos. What should I do ? -
Making some simple video editing in python [closed]
21 décembre 2023, par billy 356So I have a background.mp4 file, music.mp3
And a list of mp4 files like this : [1.mp4, 2.mp4, 3.mp4...] (these files are basically small images with a sound over them)


In my python program, I want to add the music to the background.mp4 file, then for each file in my list, I want the file to be overlayed in the video (one after another at each time), and scaled at 75% and be placed at Y400, knowing that Y0 is the center.
The video will stop when there are no more files to add.


I want to do this in python.
I tried using moviepy to do it, but exporting it took hours.
So I heard about ffmpeg-python, but I don't know how to use it.
I think it is easy, because that's some basic editing, but I don't know how to do it fast with python, any help would be appreciated !