
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (52)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8877)
-
Revision fa3483e5800eb1cc8280c5eb46ba4e0446e5dfb3 : SPIP 1.9.2, ereg/split obsolètes en PHP 5.3 git-svn-id : ...
3 janvier 2010, par Committo,Ergo:sum — LogSPIP 1.9.2, ereg/split obsolètes en PHP 5.3 git-svn-id : svn ://trac.rezo.net/spip/branches/spip-1.9.2@14826 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d
-
split the video into five chunks using ffmpeg and batch script
21 janvier 2019, par RJFFI want to split videos into five chunks using ffmpeg
the first chunk represents 20% of the whole video
the second chunk represents 40% of the whole video
the third chunk represents 60% of the whole video
the fourth chunk represents 80% of the whole videothe fifth chunk represents 100% of the whole video
I write the algorithm but I do not know how to write the batch code :
1. find the duration of the video
2. store the duration in variable
3. divided the duration by 5
4. split the videoI want a batch script that takes the duration of the video then store the value of duration in the variable
this is how I can take the duration of the video
ffmpeg -i C:\video-splitter-master\1.avi 2>&1 | grep "Duration"| cut -d ' ' -f 4 | sed s/,// | sed 's@\..*@@g' | awk '{ split($1, A, ":"); split(A[3], B, "."); print 3600*A[1] + 60*A[2] + B[1] }'
but how I can store the duration value in the variable ?
can you please help me ?
-
Split videos with ffmpeg in batch mode ?
11 avril 2014, par user3524742I use this code to split video after 5s in batch mode but when I click .bat file, cmd disappears immediately.
for %%i in ("*.mp4") do ffmpeg -i "%%i" -t 00:00:05 -codec copy "%~ni.mp4"
pauseHow to fix it ? Thanks !