
Recherche avancée
Médias (29)
-
#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)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (10387)
-
send console output to Visual Studio 2010
17 juillet 2014, par Dave CampI’m using Visual Studio 2010 c++ to develop some custom direct show filters. I’m using ffmpeg for the encoding process and if I run tests as a standard console then any ffmpeg errors are displayed in the console window, as one might expect. However the main application is a windows app which doesnt have a console window. When I get errors from ffmpeg all I can use is a fairly generic error return number and it would be great to see what would have been displayed in the console window.
Is it possible to get the output from ffmpeg of what would go to a console window to display in one of the ’Studio output windows. I’ve ticked the ’Redirect all output window text to the immediate window’ option in Tools->Options->Debugging->General but this doesn’t like the correct option and it doesn’t work anyway.
Thanks !
Dave
-
Need assistance to compile X264 in Visual Studio
8 août 2016, par Vikram BammanhalliI have been trying to open x264 code base in Visual Studio, by creating a separate project for it, but without any success.
I thought it should have been straight forward. I could build X264 code using MinGW, but I need to edit the code and extract motion estimation code.
Has anyone compiled/run the x264 from Visual Studio ?
Thanks !
-
Compile ffmpeg library statically using visual c++
6 décembre 2017, par SaeedWhen I try to compile ffmpeg library statically using visual studio 2015, with following configure options
./configure --toolchain=msvc --arch=x86 --enable-yasm --enable-asm --disable-shared --enable-static
surprisingly, I get
.a
libraries instead of.lib
. How can I compile ffmpeg to generate .libs ?