
Recherche avancée
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (10268)
-
Add headers to mpegts.js request
8 avril 2023, par Alex DalenI'm very new in web technologies. I have a .ts video accessed by my api and for security reason I need to add 'x-access-token' to my request, but really do not how. Maybe you know ?


play(){
 if (mpegts.getFeatureList().mseLivePlayback) {
 var videoElement = document.getElementById('video-js-node');
 var player = mpegts.createPlayer({
 type: 'm2ts',
 isLive: true,
 headers: {'x-access-token': localStorage.getItem('data')},
 url: `/my/api/${record}`,
 });
 player.attachMediaElement(videoElement);
 player.load();
 player.play();
 }
}



-
Nice-looking generated docs via Rocco (a Ruby port of Docco.) Minor docs tweaks, menu item.
5 septembre 2011, par Scott Schillerm doc/download/index.html + doc/generated/demo/360-player/script/360player.html + doc/generated/demo/flashblock/flashblock.html + doc/generated/demo/mp3-player-button/script/mp3-player-button.html + doc/generated/demo/mpc/script/mpc.html + doc/generated/demo/page-player/script/page-player.html (...)
-
Unable to import FFmpeg based MediaPlayer
12 décembre 2018, par SumiI have installed
ffmpeg
andffpyplayer
onraspberrry pi 3
(raspbain stretch).
I get an import error when I try to do this :from ffpyplayer.player import MediaPlayer
This is what I get :
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/pi/.virtualenvs/cv/local/lib/python3.5/site-packages/ffpyplayer/player/__init__.py", line 10, in <module>
from ffpyplayer.player.player import MediaPlayer
ImportError: /home/pi/.virtualenvs/cv/local/lib/python3.5/site-packages/ffpyplayer/player/player.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: x264_levels
</module></module></stdin>How do I fix this ?