
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (8370)
-
doc/ffserver : move general stream options upwards in the list
28 novembre 2013, par Stefano Sabatini -
doc : Add dev_community/community.md for general assembly and main elections process.
19 octobre 2020, par Thilo Borgmann -
The audio export failed, possily because the bitrate you specified was > two high or too low for the video codec
13 avril 2016, par MichaelI am occasionally receiving the following error when attempting to write a m4a (aac) audio file to a video using
write_videofile
with the moviepy library. I cannot isolate what exactly is causing this error because it happens rarely. I have tried specifying different audio bitrates, but it still raise an exception.video = video.set_audio(AudioFileClip("asdf.m4a"))
video.write_videofile("video.mp4", fps=FPS, codec='libx264', audio_codec="aac", temp_audiofile='temp-audio.m4a', remove_temp=True, audio_bitrate="256k")[Errno 32] Broken pipe MoviePy error : FFMPEG encountered the
following error while writing file temp-audio.m4a :temp-audio.m4a : Permission denied
The audio export failed, possily because the bitrate you specified was
two high or too low for the video codec. : IOError Traceback (most
recent call last) :video.write_videofile("video.mp4",
fps=FPS, codec=’libx264’, audio_codec="aac",
temp_audiofile=’temp-audio.m4a’, remove_temp=True,
audio_bitrate="256k")File "", line 2, in write_videofile File
"/var/task/moviepy/decorators.py", line 54, in requires_duration
return f(clip, *a, **k)File "", line 2, in write_videofile File
"/var/task/moviepy/decorators.py", line 137, in
use_clip_fps_by_default return f(clip, *new_a, **new_kw) File
"", line 2, in write_videofile File
"/var/task/moviepy/decorators.py", line 22, in convert_masks_to_RGB
return f(clip, *a, **k)File "/var/task/moviepy/video/VideoClip.py", line 331, in
write_videofile verbose=verbose) File "", line 2,
in write_audiofile File "/var/task/moviepy/decorators.py", line 54,
in requires_duration return f(clip, *a, **k) File
"/var/task/moviepy/audio/AudioClip.py", line 204, in write_audiofile
verbose=verbose, ffmpeg_params=ffmpeg_params) File
"", line 2, in ffmpeg_audiowrite File
"/var/task/moviepy/decorators.py", line 54, in requires_duration
return f(clip, *a, **k) File
"/var/task/moviepy/audio/io/ffmpeg_audiowriter.py", line 162, in
ffmpeg_audiowrite writer.write_frames(chunk) File
"/var/task/moviepy/audio/io/ffmpeg_audiowriter.py", line 122, in
write_frames raise IOError(error)IOError : [Errno 32] Broken pipe MoviePy error : FFMPEG encountered the
following error while writing file temp-audio.m4a : temp-audio.m4a :
Permission denied The audio export failed, possily because the
bitrate you specified was two high or too low for the video codec.