
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (25)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (5397)
-
doc/faq : use https instead of http
8 octobre 2015, par Ganesh Ajjanagadde -
How to correctly link ffmpeg to static build "g++ -static" ?
22 juillet 2014, par user2212461I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :
g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
/path/to/libavformat.a /path/to/libavcodec.abut get the following list of errors, although I configured ffmpeg with —disable-libopus :
libavcodec/opusdec.c:376: error: undefined reference to 'swr_is_initialized'
libavcodec/opusdec.c:222: error: undefined reference to 'swr_is_initialized'
libavcodec/opusdec.c:163: error: undefined reference to 'swr_init'
libavcodec/opusdec.c:169: error: undefined reference to 'swr_convert'
libavcodec/opusdec.c:236: error: undefined reference to 'swr_convert'
libavcodec/opusdec.c:117: error: undefined reference to 'swr_convert'
libavcodec/opusdec.c:408: error: undefined reference to 'swr_close'
libavcodec/opusdec.c:557: error: undefined reference to 'swr_close'
libavcodec/opusdec.c:579: error: undefined reference to 'swr_free'
libavcodec/opusdec.c:629: error: undefined reference to 'swr_alloc'What am I doing wrong here ?
-
How to correctly link static ffmpeg build using g++ ?
22 juillet 2014, par user2212461I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :
g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
/path/to/libavformat.a /path/to/libavcodec.abut get a relatively large list of errors looking like :
....
libavcodec/cscd.c:91: error: undefined reference to 'uncompress'
libavcodec/flashsv.c:191: error: undefined reference to 'inflateReset'
...
libavcodec/vaapi.c:131: error: undefined reference to 'vaMapBuffer'
libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'What am I doing wrong here ?