
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (41)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (7462)
-
How to get equal segment times using ffmpeg ?
13 décembre 2015, par Abhay CnI used the following command to split a video into segments :
ffmpeg -i inputfile -c copy -map 0 -segment_time 5 -f segment outputfile
But I got varying segment times ie. some segments were 5s, some were 2s and others were 8s. How do I correct this ?
-
Pydub of Python doesn't work-Probably ffmpeg installed wrongfully
1er janvier 2016, par bnounisI have recently downloaded and installed
Pydub
but it doesn’t work.I installed it with pip and then downloaded and installed
ffmpeg
. Whenever I try to import the library or write a simple code, I get this error message :RuntimeWarning : Couldn’t find ffmpeg or avconv - defaulting to ffmpeg,
but may not work .Could someone explain to me what I’ve been doing wrong ??
What is the problem with ffmpeg ?
-
Can I run ffmpeg from my Python code and return a signal when it's done compressing ?
7 février 2016, par xavierSeems that what I am looking for ( a simple ffmpeg interface for python ) is not available for python 3.5. I want to run a commandline from my code that I will fill with variables like :
video_file = "/path/to/video/video.file"
sound_file = "/path/to/sound/sound.file"
output_name= (video.file + 'mp4')
fmpeg -loop 1 -i video_file -i sound_file -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -pix_fmt yuv420p -shortest output_nameIs it possible to return a signal to trigger the next function that would use output_name as value to do next thing ? Is this even possible ¿ ?