
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (6527)
-
FFmpeg mix audio clips at given time into a main audio file
5 mai 2020, par AramilI has been recording small audio clips for an audio book. I have the start time of each one in seconds. The music lenght is of, let's say 60 min. I am thinking in create a silence audio file of the same duration as the music, but how I can add each clip into the given start time ? No matter if the clips overlap. I tried using concat and inpoint without the blank file and the output is empty (I am using wav files), that why the idea of use a master blank file as base.



If possible I would really appreciate any example.



Thanks


-
fic : Remove redundant clips
23 avril 2014, par Derek Buitenhuis -
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