
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (70)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (4406)
-
Added play-pause control for the Gallery.
2 juillet 2013, par blueimpAdded play-pause control for the Gallery.
-
how to call activex control method with multi parameter from java script ?
15 octobre 2013, par user2882620I working on a project that requires me to call activex control function from dll using javascript. i am able to call method that has 1 parameter and method with no parameter, but i am not able to call those methods that has multiple parameter. The method that i am trying to call is a put method.
STDMETHODIMP CFFMpeg::put_Snapshot(BSTR Path,long newVal){}
trying to call this method using following java script code.
document.getElementById('GFFMpeg1').snapshot(1) = 'qwerty';
document.getElementById('GFFMpeg1').snapshot(2) = 1;but i am not getting anything.
Please help me by providing appropriate solution to this problem. i've googled it alot but didn't find any solutions.
thanks
-
FFmpeg image2 output : Control JPG image quality when using mjpeg_qsv
11 avril 2022, par clicMy FFmpeg command ouputs a series of JPG images. Simplified :




ffmpeg -f dshow -video_size 3840x2160 -framerate 25 -i "video=My
Webcam" -qscale:v 5 -vcodec mjpeg_qsv "C :\out\%d.jpg"




I want to use
-vcodec mjpeg_qsv
to leverage GPU acceleration. Usually (without "_qsv") I can control JPG image quality by usingqscale:v
, but it seems to have no effect in combination with mjpeg_qsv.

Is it even possible to control JPG image quality when using mjpeg_qsv ? If yes, any ideas how ? Thanks !