
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (41)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (5624)
-
Split videos to chunks using Rails and streamio-ffmpeg
29 septembre 2021, par Nasser FNI've followed this tutorial both parts 1 & 2,https://www.randygirard.com/how-to-create-a-video-upload-platform-using-ruby-on-rails-part-2/


so now I am able to upload videos, convert them to mp4 and display them to the user, but the problem is I want to split the uploaded videos to chunks of 30 seconds each and


return them to the user so he/she can use them for whatsapp status.


This' my main goal !


As I've mentioned earlier, i followed the tutorial above, all I need is how to integrate


and use https://github.com/streamio/streamio-ffmpeg in my rails code for splitting videos


to chunks. Thanks !


-
How to merge multiple videos end-to-end with yt-dlp or ffmpeg [closed]
12 juillet 2024, par PenguWe want to download a bunch of small sections of videos then stitch them all together into one big video. How would we go about this ? Is there a way to bulk-stitch together videos from a particular folder ? We're planning to have thousands of clips, so the more automated it can be, the better.


We are already using yt-dlp and ffmpeg for downloading the sections, so we would prefer if the solution was using those as well.


The closest thing we could find was this https://github.com/yt-dlp/yt-dlp/issues/6595 which, when we try it, runs fine but the resulting clip is the same length as the parts used and doesn't seem to join them together.


-
ffmpeg trim videos at specific start / end frame [closed]
13 mai 2023, par emilectorI have mp4 video files that I need to trim between a start and an end frame. I am using this python command, but instead of the trimmed videos I get long videos of the same frame.


os.system('ffmpeg -i {0}.mp4 -vf trim=start_frame={1}:end_frame={2} -fflags +genpts {3}.mp4'.format(inputVideoPath, startFrame, endFrame, outputVideoPath))



I dont care about audio. Could someone point me in the right direction ?