
Recherche avancée
Médias (5)
-
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
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (92)
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (10244)
-
convert a 10fps video into a one frame per second video with half resolution ffmpeg ?
22 septembre 2022, par yeahmanI want to convert my video (h264) into a video with half the resolution of the original video and with one frame per second ; this will be used a small size preview video


-
write_gif is automatically changing the resolution of the resultant gif as compared to the supplied video(mp4) file ? How to avoid that ?
14 septembre 2022, par Mohammed HussainPlease see the code below and the result. How can we get the gif in the original dimensions. The moviepy documentation doesn't seem to say much.


from moviepy.editor import * import os os.chdir(r'G:\') clip = VideoFileClip("VID.mp4").subclip(6*60, 6.1*60) clip.write_gif("vidgif.gif",program = 'ffmpeg')




-
When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate
2 septembre 2022, par SevenFantasticI tried to use this code, but ffmpeg doesn't recognize this way of writing


ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)" -f mp4 -y output.mp4



even replace the iw to const 1000, it doesn`t work.


ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)" -f mp4 -y output.mp4



But this way of writing it works fine I'm baffled


ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4