
Recherche avancée
Autres articles (108)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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
Sur d’autres sites (14979)
-
How to stream all videos in a folder ?
30 mai 2015, par KrishnenduHi i want to stream videos over web using ffserver. i got this link as reference.
Now what i am not able to figure out is how to pass a folder(which content all videos i want to stream) as input to stream all videos. I also want add more videos dynamically to this folder in time to time and streaming should happen(like how it works in Darwin). now i can’t use Darwin because it doesn’t support for iOS.
please give me a suggestion.
is there any other open source tool by which i can do this ?
-
Mix 2 videos with FFmpeg (overlay one on top of other)
10 août 2016, par iSunI using
ffmpeg
throughAndroid-NDK
. I’ve 2 pieces of the videos , The first one is my main video and the second one is my effect video.Now I wanna mix this 2 videos together, Is it possible ?
Note : Both videos decoding through MP4 format.
-
OSError : [WinError 6] Checking Video Duration of Clips moviepy ffmpeg
28 juin 2017, par Frikkie MaritzAny help will do
my script used too run 100% without any problems but since yesterday keep getting this errorTraceback (most recent call last):
File "C:\Users\renushas\Desktop\videoCompuser Temp.py", line 19, in <module>
video1 = VideoFileClip(clipspath)
File "C:\Program Files\Python36\lib\site-packages\moviepy\video\io\VideoFileClip.py", line 81, in __init__
fps_source=fps_source)
File "C:\Program Files\Python36\lib\site-packages\moviepy\video\io\ffmpeg_reader.py", line 32, in __init__
fps_source)
File "C:\Program Files\Python36\lib\site-packages\moviepy\video\io\ffmpeg_reader.py", line 256, in ffmpeg_parse_infos
proc = sp.Popen(cmd, **popen_params)
File "C:\Program Files\Python36\lib\subprocess.py", line 842, in __init__
_cleanup()
File "C:\Program Files\Python36\lib\subprocess.py", line 505, in _cleanup
res = inst._internal_poll(_deadstate=sys.maxsize)
File "C:\Program Files\Python36\lib\subprocess.py", line 1259, in _internal_poll
if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0:
OSError: [WinError 6] The handle is invalid
</module>This is the code i am using
import os
from moviepy.editor import VideoFileClip
path = 'C:/Renusha/'
for folders in os.listdir(path):
print(folders)
if "." in folders:
print("this is a file")
else:
infolders = path + folders + "/"
print(infolders)
for clips in os.listdir(infolders):
print(clips)
if ".mp4" in clips:
clipspath = infolders + "\\" + clips
video1 = VideoFileClip(clipspath)
print(video1.duration)
del video1.reader
del video1It reads and prints a lot of the clips duration and then randomly gives this error