
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (102)
-
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" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (13292)
-
How to get ffmpeg split results in a streaming-like way ?
15 décembre 2016, par AlexMy goal is to transfer video files to another peer using webRTC and play it in real time on web page. In case of lag, I decided to split video files before tranferring. I’m using ffmpeg (actually a javascript version here) to split videos using commands like
ffmpeg -i input.mp4 -codec copy -map 0 -f segment out%0d.mp4
, which will get a series of output files at the same time. But I want to transfer the output files one by one and start to play them in right order before getting all output files, can i do that ?
-
Ffmpeg split video into multiple chunk but in different duration length
15 décembre 2020, par VickyI know how to split video into equal duration length, but here i want to split video into un-equal parts and number of parts and duration will be different for each time.



For ex, video length is 50 sec, i want to split it in 4 parts. 
1) 0 sec - 5 sec 
2) 6 sec - 22 sec
3) 23 sec - 34 sec
4) 35 sec - 50 sec



-
Find timestamps of videos split using FFmpeg
13 décembre 2017, par Spandan ThakurI am able successfully able to split a video with FFmpeg using the below command
ffmpeg -i Sample.mp4 -c copy -map 0 -segment_time 900 -f segment -reset_timestamps 1 output%03d.mp4
This will split videos into 15 mins chunks (900 seconds) however this is not 100% accurate.
Is there a way to add the starting and ending timestamp of each segment, in the output file name, relative to the original file ? Or generate a file containing the timestamps ?
I want to know exactly where the cuts where made. I do not want to slow down the process though by forcing FFmpeg to cut at exactly 15 mins.