Recherche avancée

Médias (91)

Autres articles (79)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (5409)

  • 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#)