
Recherche avancée
Autres articles (39)
-
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 Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
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
Sur d’autres sites (6039)
-
Android Media player/framework species
4 septembre 2018, par sungyongI’m confused about species of media player/framework/library of Android and it’s role and positions.
Here is my understanding about Android media player and framework.
I don’t have confident what I understand, still be under the chaos.
From Android developer’s guide,
for application side : apk uses Application Framework which has two players - MediaPlayer, ExoPlayerfor Native framework side : it has also various players - Nu, awesome, etc.
There’re some query for gstreamer vs ffmpeg, ffmpeg vs vlc, or exoplayer vs vitamio. It makes me more confusing.
Would you clearify me to get the right concept for them ?
If my android custom device use ffmpeg, that means it doesn’t use standard Android media framework ?For stagefright engine, there is no alternative for this ?
-
libx264 : workaround a bug in some versions of flash player
9 décembre 2011, par Michael Niedermayerlibx264 : workaround a bug in some versions of flash player
-
React Video Player failing to read RTSP stream
20 octobre 2023, par hotmeatballsoupI have an RTSP server running local on
localhost:8554
and can verify its up and running multiple ways. Its definitely running !

I can stream/publish an MP4 file to it and make that feed available from
rtsp://localhost:8554/mystream
, and can read from it and do cool stuff with it viaffmpeg
:

# this works: it appends frames read from the RTSP server to the fp-copy-2.mp4 file
ffmpeg -rtsp_transport tcp -i rtsp://localhost:8554/mystream -c copy fp-copy-2.mp4



I am now trying to play that stream/feed from inside my toy React app. I have a
VideoPlayer
component that looks like :

import React from 'react';
import ReactPlayer from 'react-player';

const VideoPlayer = () => {
 const rtspUrl = 'rtsp://localhost:8554/mystream';

 return (
 <div>
 <h1>Feed</h1>
 
 </div>
 );
};

export default VideoPlayer;




And I am loading it on a dashboard page like so :


import React from 'react';
import VideoPlayer from '../../utils/player/VideoPlayer';

const DashboardPage = () => {
 return (
 <div>
 <h1>Dashboard</h1>
 <videoplayer></videoplayer> 
 </div>
 );
};

export default DashboardPage;



When I run
npm start
and go to the dashboard page, I see the video player loaded but it is displaying a blank screen and is not playing the content that should be available on the feed. Any ideas where I'm going awry ? Does thereact-player
not handle RTSP perhaps ?