
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (81)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (11947)
-
How can we convert pdf to images in same resolution ?
17 juillet 2012, par Preet SandhuI have two pdf of different formats, I need to convert those into video both are working with different script, I want any common script for all. any suggestion will be appreciated.
one pdf converting with below script
exec("convert -density 150 -quality 100 -resize 800x $pdf_path $temp_images ");
exec("ffmpeg -loop 1 -f image2 -r 0.5 -b 1800 -i $temp_images_wildcard -c:v libx264 -preset slow -tune stillimage -r 5 -t 22 -y $frame_target 2>&1",$output);another converting working with this script
exec("convert -geometry 1600x1600 -density 200x200 -quality 100 $pdf_path $temp_images ");
exec("ffmpeg -loop 1 -f image2 -r 0.5 -b 1800 -i $temp_images_wildcard -c:v libx264 -preset slow -tune stillimage -r 5 -t 22 -y $frame_target 2>&1",$output);Thanks
Preet -
ffmpeg combine audio and video different lengths
9 novembre 2014, par xhassassinI have an audio and video file. The audio file is the correct length but the video file is not due to some errors in the video generation. I want to combine the two and stretch the video file so that it’s the same length as the audio file. What’s the correct way for me to do this ?
One way I’ve found is I can stretch the video file using this : http://blog.grio.com/2012/01/fast-and-slow-motion-video-with-ffmpeg.html
And then I can combine the audio and video file normally.
However this is two passes. Is there any way I can do this all at once ?
-
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 ?