Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (59)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5543)

  • Streaming Webcam Over LAN : HTML5 Video Element Not Loading

    27 novembre 2023, par Franck Freiburger

    I am currently working on a project where I aim to stream my webcam over my LAN and read the stream in an HTML5 video element with minimal setup. My setup involves a server (192.168.0.1 dev/video0 -> ffmpeg) and a client (192.168.0.2 html5 browser). I am using ffmpeg with the codec set to h264.

    


    Here is the ffmpeg command I am using :

    


    ffmpeg -f video4linux2 -i /dev/video0
  -an -c:v libx264 -b:v 1024k -video_size 800x600 -pix_fmt yuv420p -preset ultrafast
  -tune zerolatency -g 16 -keyint_min 16 -f mpegts pipe:1


    


    This command is spawned by a simple Node.js server that shares this stream without any transformation (just pipe ffpmeg stream to each incoming connection).

    


    When I use vlc or ffplay with the following command, it works very well :

    


    ffplay -fflags nobuffer -flags low_delay -probesize 32 -analyzeduration 0 -framedrop http://192.168.0.1:3000/stream


    


    I can even run multiple instances of ffplay and the video is properly played. However, when I try to use the HTML5 element like this :

    


    <video src="http://127.0.0.1:3000/stream" type="video/mp4"></video>&#xA;

    &#xA;

    The video seems to "load forever" without any error, nothing suspect in chrome://media-internals. I can see in the network tab that the network is reading the stream, but the video does not play (got same result using hljs and videojs).

    &#xA;

    loading forever

    &#xA;

    I am looking for help to understand :

    &#xA;

      &#xA;
    • What is wrong with the <video></video> element in this context ?
    • &#xA;

    • Is there a better approach to achieve this ?
    • &#xA;

    &#xA;

    Any help or guidance would be greatly appreciated.

    &#xA;

  • lavu/riscv : CPU flag for the Zbb extension

    2 octobre 2022, par Rémi Denis-Courmont
    lavu/riscv : CPU flag for the Zbb extension
    

    Unfortunately, it is common, and will remain so, that the Bit
    manipulations are not enabled at compilation time. This is an official
    policy for Debian ports in general (though they do not support RISC-V
    officially as of yet) to stick to the minimal target baseline, which
    does not include the B extension or even its Zbb subset.

    For inline helpers (CPOP, REV8), compiler builtins (CTZ, CLZ) or
    even plain C code (MIN, MAX, MINU, MAXU), run-time detection seems
    impractical. But at least it can work for the byte-swap DSP functions.

    • [DH] libavutil/cpu.c
    • [DH] libavutil/cpu.h
    • [DH] libavutil/riscv/cpu.c
    • [DH] tests/checkasm/checkasm.c
  • lavc/opusdsp : rewrite R-V V postfilter

    2 novembre 2023, par Rémi Denis-Courmont
    lavc/opusdsp : rewrite R-V V postfilter
    

    This uses a more traditional approach allowing up processing of up to
    period minus two elements per iteration. This also allows the algorithm
    to work for all and any vector length.

    As the T-Head C908 device under test can load 16 elements loop, there is
    unsurprisingly a little performance drop when the period is minimal and
    the parallelism is capped at 13 elements :

    Before :
    postfilter_15_c : 21222.2
    postfilter_15_rvv_f32 : 22007.7
    postfilter_512_c : 20189.7
    postfilter_512_rvv_f32 : 22004.2
    postfilter_1022_c : 20189.7
    postfilter_1022_rvv_f32 : 22004.2

    After :
    postfilter_15_c : 20189.5
    postfilter_15_rvv_f32 : 7057.2
    postfilter_512_c : 20189.5
    postfilter_512_rvv_f32 : 5667.2
    postfilter_1022_c : 20192.7
    postfilter_1022_rvv_f32 : 5667.2

    • [DH] libavcodec/riscv/opusdsp_init.c
    • [DH] libavcodec/riscv/opusdsp_rvv.S