Recherche avancée

Médias (91)

Autres articles (84)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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, (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4816)

  • tests/ffserver-regression.sh : give wget a timeout and prevent retries

    28 novembre 2016, par Michael Niedermayer
    tests/ffserver-regression.sh : give wget a timeout and prevent retries
    

    Reviewed-by : "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/ffserver-regression.sh
  • Insert discontinuous ad video at the center of a HLS playlist

    25 juin 2020, par A-Circle Zhang

    I'm trying to use "EXT-X-DISCONTINUITY" tag to add ad video at the center of another HLS video,

    &#xA;

    It should be very easy if it is added to the beginning/end of the video, just like :

    &#xA;

    #EXTM3U&#xA;#EXT-X-TARGETDURATION:10&#xA;#EXT-X-VERSION:4&#xA;#EXT-X-MEDIA-SEQUENCE:0&#xA;#EXT-X-PLAYLIST-TYPE:VOD&#xA;#EXTINF:10.0,&#xA;ad001.ts&#xA;#EXTINF:8.0,&#xA;ad002.ts&#xA;#EXT-X-DISCONTINUITY&#xA;#EXTINF:10.0,&#xA;movie001.ts&#xA;#EXTINF:10.0,&#xA;movie002.ts&#xA;...&#xA;

    &#xA;

    But now I'm trying to add to the center of the video, like :

    &#xA;

    #EXTM3U&#xA;#EXT-X-TARGETDURATION:10&#xA;#EXT-X-VERSION:4&#xA;#EXT-X-MEDIA-SEQUENCE:0&#xA;#EXTINF:10.0,&#xA;movie001.ts&#xA;#EXTINF:10.0,&#xA;movie002.ts&#xA;#EXT-X-DISCONTINUITY&#xA;&#xA;#EXTINF:10.0,&#xA;ad001.ts&#xA;#EXTINF:8.0,&#xA;ad002.ts&#xA;#EXT-X-DISCONTINUITY&#xA;&#xA;#EXTINF:10.0,&#xA;movie003.ts&#xA;#EXTINF:10.0,&#xA;movie004.ts&#xA;...&#xA;

    &#xA;

    The gap between movie002.ts and ad001.ts, plays very smoothly, that's ok,

    &#xA;

    but the the gap between ad002.ts and movie003.ts, will get stuck, or directly fast forward and missing 2 3 seconds of video.

    &#xA;

    So, is there any solution to this without retranscoing whole video ? Thank you...

    &#xA;

    Edit : I found Hls.js support this very well in web browsers, but native player of some mobile browsers (like samsung internet), some desktop player (like PotPlayer) have this problem.

    &#xA;

  • 3 seconds latency while streaming with Wowza Server

    18 mai 2015, par kaizen_labs

    I’m trying to develop a live streaming application with RTSP protocol.

    On the PC with the Wowza Server, I execute the following command :

    Code :

    ffmpeg -f dshow -i video="Name_Of_My_Cam":audio="Name_Of_My_Microphone" -vcodec
    h263p -f rtsp -muxdelay 0.1 rtsp://:1935/live/test

    And I’m trying to play this stream on a VideoView on my Samsung Galaxy Note 3 Lite. Here is the code :

    @Override
    protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_main);

       VideoView vv = (VideoView) findViewById(R.id.videoView);
       // Receive RTSP video from Wowza Server
       vv.setVideoURI(Uri.parse("rtsp://:1935/live/test"));
       vv.requestFocus();
       vv.start();
    }

    I managed to read the video and the sound but it makes 3 secondes (or more...) to start and I keep this delay during all the streaming. It is very annoying because I want to develop a call session.

    Does anybody know how to reduce this delay ? Is it a Wowza issue ?