Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (66)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6989)

  • How to play video bytes(h265,h264) to any media server from java [closed]

    29 avril 2023, par gtejas

    I have video bytes(came from device through tcp) i write into a file and its able to play now I need to play that stream on media server.

    


    ffmpeg -re -i myfile.mp4 -c:v libx265 -preset ultrafast -f mpegts rtmp ://ip:1935/live/stream

    


    can i play bytes directly ?

    


  • Gstreamer RTSP Server over UDP artifacts on video when there is a packet loss

    28 août 2023, par Usama

    I want to have a RTSP server which should work on top of UDP , but when I tried to use Gstreamer RTSP server its giving video artifact/glitches when there is a packet loss.

    


    I have tried to follow this example for RTSP re-transmission.

    


    gst_rtsp_media_factory_set_profiles (factory, GST_RTSP_PROFILE_AVPF);

    


    When the profile is set like above , ffmpeg / mplayer / VLC is not able to play and says that it is an unsupported protocol. I don't know which player supports this protocol, only the gstreamer player is able to play the video.

    


    When the gst_rtsp_media_factory_set_profiles line is removed then all the players are working but there is a lot of artifact on the video if there is packet loss.

    


    everything is working fine on local env but on cloud there are artifact because of packet loss

    


    I also tried making retransission_time to 10 sec but it did not work.

    


    gst_rtsp_media_factory_set_retransmission_time (factory, 10000 * GST_MSECOND);

    


    Tried enabling RTCP as required for NACK (did not work i can see RTCP messages in wireshark )

    


    gst_rtsp_media_factory_set_enable_rtcp(factory , 1);

    


    Tried setting retransmission true (Did not worked )

    


    gst_rtsp_media_factory_set_do_retransmission(factory,1);

    


    I still get the artifacts / glitches on the video some time video just stuck on the client side

    


    I can confirm that its due to packet loss because when i switch the RTSP to use TCP instead of UDP everything works fine.

    


  • What are the video streaming specifics : video coded parameters, web server configuration, video player ?

    20 septembre 2011, par albanx

    With my server I encode videos from any format to mp4 with ffmpeg, for making play them with flowplayer on the web site. The problem is that videos buffering is not working. Video plays once it has been fully buffered (downloaded).

    • Should mp4 videos be encoded in any particular way for having
      streaming work ?
    • Or maybe the IIS7 server need extra configuration ?
    • I am using php for getting video files : getMedia ?file=asd.mp4

    I have IIS7 web server with php. Any suggestions ?