
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (106)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (6431)
-
How to do HTML 5 video with Flash-free fallback for IE 8
10 octobre 2013, par forthrinI need a simple and clean Flash-free, cross-browser solution for embedding video in a Web page. I came up with the solution below, and wish to hear if someone can improve it even further, including :
- Can the
method show a still image while buffering the video ?
- Can someone verify those conditional comments ?
downlevel-hidden
anddownlevel-revealed
got me a bit confused :)
Video converting as follows (using WMV for IE 8, WEBM for Firefox, and H264 for the rest) :
ffmpeg -i video.mov -b 3000k -vcodec wmv2 -acodec wmav2 -ab 320k -g 30 out.wmv
ffmpeg -i video.mov -b 3000k -vcodec libvpx -acodec libvorbis -ab 320k -g 30 out.webmMarkup (using conditional comments to create a fallback to IE 8 users) :
<video controls="true" autoplay="true" poster="video.jpg">
<source src="video.mov" type="video/quicktime"></source>
<source src="video.webm" type="video/webm"></source>
</video> - Can the
-
HTML5 audio : setPosition() doesn’t begin playing if not already, or if paused (matching Flash behaviour)
24 juin 2011m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js HTML5 audio : setPosition() doesn’t begin playing if not already, or if paused (matching Flash (...)
-
split multiple original videos into multiple videos of length 10s with ffmpeg in windows 10
16 septembre 2021, par Game Replayi can split 1 video into small 10s videos. but how to automatically batch split videos in 1 folder
this is my code :


ffmpeg -i input.mp4 -vcodec copy -acodec copy -map 0 -segment_time 00:00:10 -f segment output%03d.mp4



HELP ME !!!