
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (65)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (11266)
-
Using ffmpeg to split video files by size and by name and by name
23 août 2019, par Cem YağI’m trying to split a video by size but I don’t know which code I have to use. And I want it listing output mp4 files as sorting for example name : Video 1 - Part(2).mp4, Video 2 - Part(2).mp4, Video 3 - Part(2).mp4 (You can think sorting name is incorrect but I want to part name locate should be after the “Video” sentence)
Anyone can help me ?
-
split video into specific lengths using ffmpeg [duplicate]
23 juillet 2021, par davidI am trying to split a video into specific lengths (2 sec the same as GOP) using the following command :


ffmpeg -y -i 1.mp4 -f hls -hls_time 2 -hls_list_size 0 -hls_flags single_file NUL &&\



but it produces the following error :


'\' is not recognized as an internal or external command, operable program or batch file.



I am new to FFmpeg and I do not know what is the problem. do you know why this error has happened ?


-
Using ffmpeg to split videos into frames doesn't work
28 décembre 2018, par אבנר יעקבIn my code i’m trying to split video to frames using ffmpeg.
for this I’m using this code
experiments = ['iguazu.mp4', 'boat.mp4']
for experiment in experiments:
exp_no_ext = experiment.split('.')[0]
os.system('mkdir dump')
os.system('mkdir dump\%s' % exp_no_ext)
os.system("ffmpeg -i videos\%s dump\%s\%s%%03d.jpg" % (experiment,
exp_no_ext, exp_no_ext))So in visual studio code it’s working perfect but in visual studio community the line "os.system("ffmpeg -i videos\%s dump\%s\%s%%03d.jpg" % (experiment,
exp_no_ext, exp_no_ext))" showing error "ffmpeg is not recognized as an internal or external command".