
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (62)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (5281)
-
Microsoft SmoothStreaming video on Apache ?
2 juin 2014, par earizonI created what I consider to be a valid smooth streaming output using ffmpeg with the smooth streaming muxer and also alternatively through the ismindex utility (included in ffmpeg sources).
I’m trying to use an standard web server like Apache instead of IIS and its S.S. extensions. The output is segmented content (each fragment is split to is own file) so theoretically this is possible. Now comes my first problem where I’m stuck.
How can I test the result using for example a Window Phone 8 ?. I tried to open the index.ism url from I.Explorer, but the extension ism and the mime-type (application/vnd.ms-sstr+xml) is not recognized and I.Explorer just dump the xml instead of opening the media player.
I was waiting for a similar behaviour to that of Android/iOS when the (HLS) index.m3u8 URL is clicked. In this case the browser/OS detects the extension and open the player.Thanks in advance for any help, hint or link !
-
ffplay playing videos very slow and choppy
2 juin 2014, par Pavan KI am trying to compile ffplay from sources to run on pcduino running ubuntu
If I install ffplay via sudo apt-get install ffmpeg the videos play perfectly But I tried to compile ffplay from the sources using the guide here ffmpeg compilation the videos play terribly slowand look very very choppy.
Do I have to use some specific flags for compilation. I just would like a bare bones video player ffplay. I do not want to encode or do any heavy computation with the binary.
ffplay verison is
./ffplay -version
ffplay version git-2013-06-14-d891d35
built on Jun 2 2014 14:15:57 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree
libavutil 52. 35.101 / 52. 35.101
libavcodec 55. 16.100 / 55. 16.100
libavformat 55. 8.102 / 55. 8.102
libavdevice 55. 2.100 / 55. 2.100
libavfilter 3. 77.101 / 3. 77.101
libswscale 2. 3.100 / 2. 3.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 3.100 / 52. 3.100And this is from apt-get
ffplay -version
avplay version 0.8.10-4:0.8.10-0ubuntu0.12.04.1, Copyright (c) 2003-2013 the Libav developers
built on Feb 6 2014 21:09:10 with gcc 4.6.3
avplay 0.8.10-4:0.8.10-0ubuntu0.12.04.1
libavutil 51. 22. 2 / 51. 22. 2
libavcodec 53. 35. 0 / 53. 35. 0
libavformat 53. 21. 1 / 53. 21. 1
libavdevice 53. 2. 0 / 53. 2. 0
libavfilter 2. 15. 0 / 2. 15. 0
libswscale 2. 1. 0 / 2. 1. 0
libpostproc 52. 0. 0 / 52. 0. 0i have the following error when I play with the built ffplay
ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0
ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred 0B f=0/0 -
ffplay compilation with extra flags
21 mai 2014, par Pavan KI would like to compile ffplay with an external header which is written in c++
ffplay.c
#include "oscpkt.hh"
//rest of the fileoscpkt.hh
#include <cstring>
//rest of the file
</cstring>The error is
CC ffplay.o
In file included from ffplay.c:59:0:
oscpkt.hh:69:19: fatal error: cstring: No such file or directory
compilation terminated.
make: *** [ffplay.o] Error 1I think I have to provide -lstdc++ externally to pickup the cstring library
Could anyone tell me how to add this in the makefile of ffmpeg compilation. There are no flags that I could add to, maybe I am missing something.
You can find the sources here :