Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (39)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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, par

    Le 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 2013

    Puis-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 sungyong

    I’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.
    enter image description here

    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, ExoPlayer

    for 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 Niedermayer

    libx264 : workaround a bug in some versions of flash player

  • React Video Player failing to read RTSP stream

    20 octobre 2023, par hotmeatballsoup

    I 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 via ffmpeg :

    


    # 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 &#x27;react&#x27;;&#xA;import ReactPlayer from &#x27;react-player&#x27;;&#xA;&#xA;const VideoPlayer = () => {&#xA;  const rtspUrl = &#x27;rtsp://localhost:8554/mystream&#x27;;&#xA;&#xA;  return (&#xA;    <div>&#xA;      <h1>Feed</h1>&#xA;      &#xA;    </div>&#xA;  );&#xA;};&#xA;&#xA;export default VideoPlayer;&#xA;&#xA;

    &#xA;

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

    &#xA;

    import React from &#x27;react&#x27;;&#xA;import VideoPlayer from &#x27;../../utils/player/VideoPlayer&#x27;;&#xA;&#xA;const DashboardPage = () => {&#xA;  return (&#xA;    <div>&#xA;      <h1>Dashboard</h1>&#xA;      <videoplayer></videoplayer>      &#xA;    </div>&#xA;  );&#xA;};&#xA;&#xA;export default DashboardPage;&#xA;

    &#xA;

    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 the react-player not handle RTSP perhaps ?

    &#xA;