
Advanced search
Medias (91)
-
GetID3 - Boutons supplémentaires
9 April 2013, by
Updated: April 2013
Language: français
Type: Picture
-
Core Media Video
4 April 2013, by
Updated: June 2013
Language: français
Type: Video
-
The pirate bay depuis la Belgique
1 April 2013, by
Updated: April 2013
Language: français
Type: Picture
-
Bug de détection d’ogg
22 March 2013, by
Updated: April 2013
Language: français
Type: Video
-
Exemple de boutons d’action pour une collection collaborative
27 February 2013, by
Updated: March 2013
Language: français
Type: Picture
-
Exemple de boutons d’action pour une collection personnelle
27 February 2013, by
Updated: February 2013
Language: English
Type: Picture
Other articles (104)
-
Encoding and processing into web-friendly formats
13 April 2011, byMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Gestion de la ferme
2 March 2010, byLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 March 2010, byLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3); le plugin champs extras v2 nécessité par (...)
On other websites (10861)
-
Concatenate Movies from Python List using MoviePy or FFmpeg
24 September 2020, by Python_Learner_DKI have about 10,000 short videos that I am trying to make several longer videos from.



I've created these videos using MoviePy, but keep getting memory errors when trying to concatenate them back together.



In my code I have an outer loop going through each letter of the alphabet and getting the files that start with that letter.



From the returned video clips I get the length and and strip off the last 3.5 seconds (
outro_clip_duration
) of the video, and then add it into a Python listclips
.


Where I'm stuck is I then want to take this list of trimmed videos and make one long long video from it.



I have all the files, I just need to trim them, concatenate them, and then export them as one.



I've tried many times with different MoviePy attempts and keep getting MemoryErrors so I gave up and took a swing at an ffmpeg solution seen here but it is not working out either.



The latest version of the main part of my code is here:



clips = []
outro_clip = mpy.VideoFileClip('Logo_Intro_w_Stinger_Large.mp4')
outro_clip_duration = outro_clip.duration
for def_image in vid_list_long:
 video_item = mpy.VideoFileClip('F:/sm_My_Video/sm_%s.mp4' % def_image)
 video_item_duration = video_item.duration
 clips.append(ffmpeg_extract_subclip(video_item,0,(video_item_duration - outro_clip_duration), targetname = def_image))

# #Append the outro_clip to the end 
clips.append(mpy.VideoFileClip('Logo_Intro_w_Stinger_Large.mp4',target_resolution = (h,w),audio=True))
slided_clips = [CompositeVideoClip([clip.fx( transfx.crossfadein, transition_seconds)]) for clip in clips]
#added 'method = compose' NEED TO TEST - supposedly removes the weird glitches.
c = concatenate_videoclips(slided_clips, method = 'compose')
c.write_videofile('F:/Extended_Play/%s_Extended_Play_vid.mp4' % letter,fps=23.98)




My PC is Windows 10 and I have 32 GB of RAM running Anaconda and Python 3.


-
Linux Platform: Enlarge video screen size N times
27 January 2012, by Susan MayerI am looking for a application on Linux platforms (Ubuntu/CentOS etc) that can enlarge video size N times. N could be any number, like 1.5, 4 etc
For example, if I have a video with screen size 100*200, I want to make it 1.5 times larger, that will be: 150*300. Of course, I will expect the video quality to drop but it doesnt matter.
I am not sure whether ffmpeg has this function but a quick Google lands me nowhere. So I am here now.
Thanks a lot!
-
repeat video 3 times using FFMPEG android
13 June 2018, by Mansi joshihow can we repeat video 3 times using FFMPEG. i want to play video only 3 times then start with start position.which command of FFMPEG use for it.