
Recherche avancée
Autres articles (76)
-
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" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7989)
-
avformat/hlsenc.c : the size of init.mp4 is zero.
30 octobre 2018, par Charles Liu -
how to uses ffmpeg's xfade transition filter to connect multiple video files to a single file by cshrp ?
8 septembre 2021, par Mark2how to uses FFmpeg's xfade transition filter to connect multiple video files to a single file by cshrp ?


I find a scripts on GitHub :https://github.com/qq2225936589/xfade-ffmpeg-script , but I did not good at shell scripts.
I read the official documents and spliced the two videos. If there are more than one, my idea is to splice two by two, and then splice them into a large one. Is there a better solusion ?


-
Merge Audio and Video using ffmpeg - Python Lib [duplicate]
15 janvier 2021, par badri have tried


import ffmpeg
video = ffmpeg.input('video.mp4')
audio = ffmpeg.input('audio.mp3')
ffmpeg.merge_outputs(video, audio).run()



and it returns


TypeError: Expected incoming stream(s) to be of one of the following types: ffmpeg.nodes.OutputStream; got <class>
</class>


and i have tried


import ffmpeg
video = ffmpeg.input('video.mp4')
audio = ffmpeg.input('audio.mp3')
ffmpeg.concat(video, audio, v=1, a=1).output('finished_video.mp4').run()



and it returns


FileNotFoundError: [WinError 2] The system cannot find the file specified



also i did try


import subprocess 
subprocess.run("ffmpeg -i video.mp4 -i audio.mp3 -c copy output.mp4")



and it returns


'ffmpeg' is not recognized as an internal or external command



how can i do it right ?