Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (47)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Les images

    15 mai 2013

Sur d’autres sites (7682)

  • Streaming videos from a Java backend

    11 mai 2014, par IAmYourFaja

    I was wondering how most multimedia Java shops handle video streaming. Say I want to build a website that has a page that uses the HTML5 video player like so :

       
           ...
       
       
           ... content up here

           <video width="500" height="500" controls="controls" src="path/to/video.mp4"></video>

           ... more content down here

    Say the URL for this page is http://myapp.example.org/video. When HTTP requests for the /video path reach the myappp.example.org servers, I guess I have a few options :

    • Route the request to a web app server (Tomcat/Jetty), and try to figure out how to stream the video.mp4 video directly off that server using pure Java ; or
    • Route the request to a media server, and somehow stream video.mp4 from that media server directly back to the client ; or
      • On this end I’ve heard of servers like Red5 or Wowza
    • Route the request to a media server (again, Red5/Wowza), and somehow stream video.mp4 through the web app server acting as a middleman

    There may be other options that I’m aware of (in which case, what are they ???). My questtion :

    How is A/V streaming typically handled from behind a Java backend ?

  • swscale/internal : group user-facing options together

    10 octobre 2024, par Niklas Haas
    swscale/internal : group user-facing options together
    

    This is a preliminary step to separating these into a new struct. This
    commit contains no functional changes, it is a pure search-and-replace.

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] libswscale/aarch64/swscale.c
    • [DH] libswscale/aarch64/swscale_unscaled.c
    • [DH] libswscale/alphablend.c
    • [DH] libswscale/arm/swscale_unscaled.c
    • [DH] libswscale/input.c
    • [DH] libswscale/loongarch/input_lasx.c
    • [DH] libswscale/loongarch/input_lsx.c
    • [DH] libswscale/loongarch/output_lasx.c
    • [DH] libswscale/loongarch/output_lsx.c
    • [DH] libswscale/loongarch/swscale_init_loongarch.c
    • [DH] libswscale/loongarch/swscale_lasx.c
    • [DH] libswscale/loongarch/swscale_lsx.c
    • [DH] libswscale/loongarch/yuv2rgb_lasx.c
    • [DH] libswscale/loongarch/yuv2rgb_lsx.c
    • [DH] libswscale/options.c
    • [DH] libswscale/output.c
    • [DH] libswscale/ppc/swscale_altivec.c
    • [DH] libswscale/ppc/swscale_vsx.c
    • [DH] libswscale/ppc/yuv2rgb_altivec.c
    • [DH] libswscale/ppc/yuv2yuv_altivec.c
    • [DH] libswscale/riscv/swscale.c
    • [DH] libswscale/slice.c
    • [DH] libswscale/swscale.c
    • [DH] libswscale/swscale_internal.h
    • [DH] libswscale/swscale_unscaled.c
    • [DH] libswscale/utils.c
    • [DH] libswscale/vscale.c
    • [DH] libswscale/x86/output.asm
    • [DH] libswscale/x86/swscale.c
    • [DH] libswscale/x86/swscale_template.c
    • [DH] libswscale/x86/yuv2rgb.c
    • [DH] libswscale/yuv2rgb.c
    • [DH] tests/checkasm/sw_gbrp.c
    • [DH] tests/checkasm/sw_range_convert.c
    • [DH] tests/checkasm/sw_rgb.c
    • [DH] tests/checkasm/sw_scale.c
  • random_seed : Reorder if clauses for gathering entropy

    5 février, par Martin Storsjö
    random_seed : Reorder if clauses for gathering entropy
    

    Make it easier to add more cases.

    This should be a pure refactoring, with no functional changes.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/random_seed.c