Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (54)

  • 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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (9192)

  • Best approach to get RTSP streaming into web browser from IP Camera ?

    21 octobre 2023, par Whoami

    Is it possible to get the RTSP Streaming data into the web browser ?

    



    Below are some of my findings. Kindly correct me if I am wrong ?

    



      

    1. Only Mac OS, and Safari supports RTSP Live Streaming.

    2. 


    3. HTML 5 video does not support RTSP.

    4. 


    5. I can use the VLC plugin, but I don't want to use that.

    6. 


    



    Possibility of mixing ffmpeg and websocket ?

    



    Assume my IP camera is connected with Ethernet.

    



    In the client machine :

    



      

    1. I run ffmpeg to get the data from server (ie : IP)
    2. 


    3. Client machine runs websocket.
    4. 


    5. Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of any format (for example : yuv).
    6. 


    7. Now, i have to send this image to browser through websocket.
    8. 


    



    Question :

    



      

    1. It is the right approach ?
    2. 


    3. How can I get the decoded image from ffmpeg into the browser ?
    4. 


    



    I might be wrong in different places. Kindly provide input.

    


  • How to continuously extract video frames from streaming RTMP using avconv / ffmpeg ?

    5 février 2014, par mvbl fst

    We're dealing with streaming video on RTMP and my goal is to extract frames from the stream at a given interval, e.g. every 1 second.

    Currently I run a command in a loop, which takes a frame and exports it as base64 JPEG :

    avconv -i <url> -y -f image2 -ss 3 -vcodec mjpeg -vframes 1 -s sqcif /dev/stdout 2>/dev/null | base64 -w 0
    </url>

    But each of these processes is long (takes a few seconds — which adds even more delay on streaming video that's not real time already). I am wondering if there is a way to make avconv or ffmpeg to extract frames at an interval (in seconds or frames) and either save as a file or dump to stdout.

    I would really appreciate your help !

  • FFmpeg streaming

    24 mars 2023, par hayso

    I am using ffmpeg for streaming. But when i start watch it the stream always stuck for the first 30 40s after that is good.&#xA;I am trying to achieve fast and smooth starting

    &#xA;

    The command i use&#xA;ffmpeg -y -nostdin -hide_banner -err_detect ignore_err -loglevel warning -start_at_zero -copyts -vsync 0 -correct_ts_overflow 0 -avoid_negative_ts disabled -max_interleave_delta 0 -probesize 1000000 -analyzeduration 10000000 -progress 903dd5e68006.txt -i "http://example.com" -vcodec copy -acodec copy -sn -f hls -hls_segment_type mpegts -hls_init_time 2 -hls_time 10 -hls_allow_cache 1 -hls_start_number_source epoch -hls_ts_options "mpegts_flags=+initial_discontinuity:mpegts_copyts=1" -hls_delete_threshold 5 -hls_list_size 5 -hls_flags delete_segments+discont_start+omit_endlist -hls_segment_filename /storage/903dd5e6800

    &#xA;

    i tried to +- analyzeduration, probesize and hls timing, but without success.&#xA;The source that i used is stable.

    &#xA;