
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 (43)
-
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (6011)
-
How to convert a video to different resolution's using ffmpeg
20 septembre 2018, par Binoy CherianThere are some commands i currently use to convert videos but I’m not sure about the quality of the videos converted.
For low resolution :
ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4
And for high/same resolution (low->high is not feasible, but is there something we can do ?)
ffmpeg -i input.webm -qscale 0 output.mp4
I read that qscale preserves the video quality.Since I’m new to ffmpeg. I would like to have some tips. Please let me know if you need any information. Any help would be greatly appreciated.
-
How to convert a video to low and high resolution using ffmpeg
20 septembre 2018, par Binoy CherianThere are some commands i currently use to convert videos but I’m not sure about the quality of the videos converted.
For low resolution :
ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4
And for high
ffmpeg -i input.webm -qscale 0 output.mp4
I read that qscale preserves the video quality. But since I’m new to ffmpeg. I would like to have some tips. Please let me know if you need any information. Any help would be greatly appreciated.
-
Why android ffmpeg takes so long time to resize mp4 video from high resolution ?
1er septembre 2018, par Kasim RangwalaI’m resizing 30 sec long ( 59.98 MB) mp4 video with resolution of 1920 X 1080 to 1280 X 720 using following
ffmpeg
command in android.["-i", inputVideo!!.path, "-vf", "scale=720:1280", outputVideo.path, "-hide_banner"]
converted video output is very good ( 6.6MB). but,
ffmpeg
conversion take so much time. Is there any options available that I can reduce the conversion time ?update
If output format is other than
mp4
. it is fine but, conversion time must be reduce.Thanks.