Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (90)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les sons

    15 mai 2013, par
  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

Sur d’autres sites (7061)

  • Introducing MatomoCamp !

    24 juin 2021, par Ben Erskine — Community

    MatomoCamp is the first online event developed by and for the Matomo community.

    The key purpose of MatomoCamp is to encourage knowledge-sharing, it’s all about helping and learning from each other.

    When is MatomoCamp ?

    MatomoCamp will be held on November the 4th and November the 5th 2021 from 9 A.M. to 5 P.M. CET. 

    What is a Camp ?

    The term “Camp” comes from Barcamp, which is a self-organized informal non-conference. The event takes place online by using only Free software and Open Source technologies.

    Get involved

    The MatomoCamp is designed for people from the community to come on stage to introduce topics or share their expertise about Matomo Analytics.

    If you have something you would like to share or have a speaker in mind, please submit a proposal and get involved.

    Help shape the event

    A team of passionate volunteers are in full swing developing this event. In order to make this event as valuable as possible for the community, we need your help !

    If you would like to help out or have an idea to help shape the overall event, reach out to the organizers and share your ideas.

    More updates on MatomoCamp will follow soon.

  • Using ffmpeg to extract webvtt (SRT) subtitles

    4 mars 2021, par user15332104

    I am trying to extract SRT subtitles from the movies online with use of ffmpeg.
Unfortunately transmission drops after some segments, and there is no output SRT file

    


    Any advice which switch use ? Anything else than ffmpeg would serve the purpose here ?

    


    ffmpeg -i "https://rts-vod-amd.akamaized.net/ch/hls/11997514/8f3c162a-6224-3cac-8f47-788ef9fd24dc/index-f7.m3u8" -scodec srt berry_subs.srt

    


    (Actual movie : https://www.rts.ch/play/tv/telefilm/video/meurtres-en-berry?urn=urn:rts:video:11997514)

    


    ffmpeg -i "https://rts-vod-amd.akamaized.net/ch/hls/12003885/cd6616a8-b1bc-39f8-b900-53ab628eba9e/index-f7.m3u8" -scodec srt mlh_subs.srt

    


    (Actual movie : https://www.rts.ch/play/tv/telefilm/video/meurtres-a-mulhouse?urn=urn:rts:video:12003885 )

    


  • How to set AV_FRAME_FLAG_DISCARD with avcodec_open2

    15 novembre 2024, par Christoph

    I want to discard corrupted H.264 frames, but I've been unable to achieve this. I've tried setting flags after creating the context, as well as using options, but neither method has worked, and I still see the corrupted frames. examples online demonstrate this with a format context, but in my case, I'm feeding a bytestream directly from a socket.

    


    Options version

    


    ffmpeg.av_dict_set(&options, "fflags", "discardcorrupt", 0);
var ret = ffmpeg.avcodec_open2(_CodecContext, _decodingCodec, &options);
ffmpeg.av_dict_free(&options);


    


    Flags version

    


    var ret = ffmpeg.avcodec_open2(_CodecContext, _decodingCodec, null);
_CodecContext->flags |= ffmpeg.AV_FRAME_FLAG_DISCARD;


    


    I want to avoid errors like :

    


    [h264 @ 000001fb6302dfc0] decode_slice_header error
[h264 @ 000001fb6302dfc0] decode_slice_header error
[H264 Decoder @ 000001fb70778740] Broken frame packetizing
[h264 @ 000001fb6302dfc0] illegal short term buffer state detected


    


    Either avcodec_send_packet or avcodec_receive_frame return an error, return value is always 0. Currently i cant catch this and i dont want using a global logging checking because it could be that i have 16 instances for my decoder. (Cctv grid). I using ffmpeg.autogen (c#)