
Recherche avancée
Autres articles (90)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (7448)
-
how to resolve error FileNotFoundError : [WinError 2] The system cannot find the file specified when using ffmpeg-python ?
24 juillet 2021, par GeoI'm trying to merge video and audio files together using ffmprg but I keep on receiving this error


ERROR :


Traceback (most recent call last):
 File "C:\Users\Geo\youtubedownloader\test.py", line 9, in <module>
 ffmpeg.concat(video,audio, v=1 , a=1).output("C:/Users/Geo/output_video/mergedretweett.mp4/").run()
 File "C:\Users\Geo\AppData\Local\Programs\Python\Python39\lib\site-packages\ffmpeg\_run.py", line 313, in run
 process = run_async(
 File "C:\Users\Geo\AppData\Local\Programs\Python\Python39\lib\site-packages\ffmpeg\_run.py", line 284, in run_async
 return subprocess.Popen(
 File "C:\Users\Geo\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 947, in __init__
 self._execute_child(args, executable, preexec_fn, close_fds,
 File "C:\Users\Geo\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1416, in _execute_child
 hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] The system cannot find the file specified
</module>


Code :




video = ffmpeg.input("C:/Users/Geo/File.mp4")

audio = ffmpeg.input("C:/Users/Geo/File_audio.mp4")


ffmpeg.concat(video,audio, v=1 , a=1).output("C:/Users/Geo/output_video/outputvideo.mp4").run()```





-
ffmpeg not recognizing %d sequence number for digits
16 juin 2022, par HEART LOCKETI am trying to use ffmpeg to combine a folder full of pngs into a video. I am following along with this lesson and trying to do the command he inputs at 00:30 minutes to combine the images. It appears that ffmpeg does not recognize the %d syntax and therefore cannot find the files.


I receive the following error :


-i /Users/heartlocket/Downloads/skeltest/%04d.png -framerate 24 -vcodec libx264 -pix_fmt yuv420p /Users/heartlocket/Downloads/video.mp4 

[image2 @ 0x13e6054b0] Could find no file with path '/Users/heartlocket/Downloads/skeltest/%04d.png' and index in the range 0-4
/Users/heartlocket/Downloads/skeltest/%04d.png: No such file or directory




-
Can you convert a video to an audio file in python without saving to a file ?
31 janvier 2017, par user2983738For a python web project I receive a video file through a flask interface.
Now to do analysis, I need to extract the audio file from it.Problem is that I can’t save the video to file first, which seemingly eliminates using ffmpeg as it requires a link to a file location.
Are there any python solutions that would allow me to pass and return audio/video files using objects only ?
Thank you in advance