
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (87)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (11793)
-
How to use multiple palettegen arguments in FFMPEG
16 juillet 2019, par friendlygiraffeI am creating a palette with FFMPEG using the following :
ffmpeg -i movie.mov -vf palettegen=max_colors=5 palette.gif
I want to use additional features such as reserve_transparent as mentioned in the FFMPEG palettegen docs, but having trouble getting it to work :
ffmpeg -i movie.mov -vf palettegen=max_colors=5,reserve_transparent=1 palette.gif
What am I doing wrong ?
-
FFmpeg Erorr 512 [on hold]
8 juin 2017, par user8126255Basically I am trying to run an executable on WSL(to use bash commands on Windows) and I get this error. However, FFmpeg is installed and when I type in ffmpeg it gives me the configuration and usage. Can someone help ?
MAKEMPG : Movie format files (.m) stored in zivnya.01.tar.gz
sh: 1: Syntax error: Bad fd number
MAKEMPG : |---WARNING---> Error code 512 returned by FFmpeg (see makempg.log).
MAKEMPG : Animations aborted, execution continuing...
MAKEMPG :
MAKEMPG : Movie format files (.m) stored in zibnya.01.tar.gz -
Why same command in FFMPEG takes longer in moviepy ?
15 octobre 2020, par soroushamdgI'm trying to convert a .flv file to .mp4 file using moviepy, when I run follow command in FFMPEG :


ffmpeg -i "movie.flv" -r 1 -preset ultrafast "output.mp4"



It takes about 5 minutes. The input .flv file's fps is 1000 and it's 95 minutes clip. So using command above I'm dropping fps to 1.
But using moviepy, even simple commands, it estimated 96 hours ! and it's super slow, this is my python moviepy code :


video = VideoFileClip("movie.flv")
videos[0].write_videofile('multiple_audio_videos.mp4',
 preset="ultrafast",
 fps=1,
 )



I even tried setting output fps using ffmpeg_params like this :


video = VideoFileClip("movie.flv")
videos[0].write_videofile('multiple_audio_videos.mp4',
 preset="ultrafast",
 ffmpeg_params=['-r','1'],
 )



Both are super slow. What should I do to make moviepy export faster ?