
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (68)
-
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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.
Sur d’autres sites (12357)
-
The system cannot find the file specified with ffmpeg
15 mai 2024, par Samhita vempattiIn the process of using the ffmpeg module to edit video files i used the subprocess module



The code is as follows :



#trim bit

import subprocess
import os
seconds = "4"
mypath=os.path.abspath('trial.mp4')
subprocess.call(['ffmpeg', '-i',mypath, '-ss', seconds, 'trimmed.mp4'])




Error message :



Traceback (most recent call last):
 File "C:\moviepy-master\resizer.py", line 29, in <module>
 subprocess.call(['ffmpeg', '-i',mypath, '-ss', seconds, 'trimmed.mp4'])
 File "C:\Python27\lib\subprocess.py", line 168, in call
 return Popen(*popenargs, **kwargs).wait()
 File "C:\Python27\lib\subprocess.py", line 390, in __init__
 errread, errwrite)
 File "C:\Python27\lib\subprocess.py", line 640, in _execute_child
 startupinfo)
WindowsError: [Error 2] The system cannot find the file specified
</module>



After looking up similar problems i understood that the module is unable to pick the video file because it needs its path, so i took the absolute path. But in spite of that the error still shows up.
The module where this code was saved and the video file trial.mp4 are in the same folder.


-
FFMPEG : Unable to find suitable output format for rtsp ://
19 juillet 2017, par Hakeem El Bakka-leeI have a WebRTC server, streaming to a WebBrowser front-end.
I feed my WebRtc Server a video and/or audio flux through FFMPEG.
The problem is that I just can’t seem to make FFMPEG stream something in rtp/rtsp.
Here is my line, wich comes from the FFMPEG website :
ffmpeg -re -i rm.mp4 -f rtsp -muxdelay 0.1 rtsp://127.0.0.1/live.sdp
I got erros like :
Connection to tcp://127.0.0.1:554?timeout=0 failed: Connection refused
Could not write header for output file #0 (incorrect codec parameters ?): Connection refusedI modified the ffserver.conf file but nothing changed.
Has anybody experienced the same problem ?
-
ffmpeg linux command line conversion a folder with FLAC files in them to MP3 (v0 LAME quality) in another directory, not deleting the original FLACs [on hold]
3 septembre 2017, par LT.SmashMaybe with the new folder is inside the original folder with the FLAC files, creating a directory named like the one with the flac files, except with (v0) at the end. It would be very useful for stuff that is on a VPS of mine without having to download the stuff home, use a gui application re-upload etc. I’m used to do some straightforward command line ffmpeg conversion for videos, but as you can see this is audio with many paramaters and I can’t get it to work and what I find here is great, but is only parts of what I’m looking for and also many seem to convert the flac files themselves, so they disappear and the mp3 remains.