Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (108)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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.

Sur d’autres sites (10082)

  • avformat/evcdec : Avoid nonsense casts

    6 juillet 2023, par Andreas Rheinhardt
    avformat/evcdec : Avoid nonsense casts
    

    For uint8_t buf[EVC_NALU_LENGTH_PREFIX_SIZE], &buf still points
    to the beginning of buf, but it is of type "pointer to array of
    EVC_NALU_LENGTH_PREFIX_SIZE uint8_t" (i.e. pointer arithmetic
    would operate on blocks of size EVC_NALU_LENGTH_PREFIX_SIZE).
    This is of course a different type than uint8_t*, which is why
    there have been casts in evc_read_packet(). But these are unnecessary
    if one justs removes the unnecessary address-of operator.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/evcdec.c
  • How to live stream generative video via ffmpeg

    24 septembre 2021, par Ken

    I would like to live-stream generative audio and generative video on the web. It would be an "autonomous" setup, without anyone in front of a camera to address the audience, etc. But it needs to be "live" because it will be interactive (the audience can change parameters that will impact the stream), so it can't all come from a pre-generated file.

    &#xA;

    Generative audio would come from Reaper, be sent to a virtual audio device and grabbed by ffmpeg, which would then send it to a live streaming platform (say, Youtube).

    &#xA;

    I think I understand the audio part and got it mostly working.

    &#xA;

    But what about the video part ? Most examples only mention either a video file or the output of a webcam.

    &#xA;

    But how does one send the direct output of a program that generates video, such as Processing for example ? Can it be done with piping ? Or should one use a virtual video device ?

    &#xA;

    Ideally this should work on an Raspberry-Pi but any pointer would be welcome.

    &#xA;

    This question is related but it's quite old, what would be the best setup for this ?

    &#xA;

  • 'Range' request header in ffmpeg

    12 février 2017, par cole

    Recently I am working on parsing some videos’s address from a web site.After parsing,I use IjkPlayer based on ffmpeg to play it.However I get 403 code,with Chi-Hsuan Yen’s (A author of youtube-dl) help,I know ‘range’ header result in the 403 response code.

    A Solution

    set Range :space

    However

    If I set Range :space,I can’t seek this video when I play it on Android Phone.So do you have another solution for 403 code ?


    Update :

    My Issue

    https://github.com/Bilibili/ijkplayer/issues/2667

    A same URL have different response on Chrome and Firefox