Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10566)

  • How to configured ffmpeg rtmp output to allow failure ?

    28 juillet 2015, par Adam

    I have an avconv command-line which outputs both a file on disk, and RTMP to a remote server.

    Upon startup, the video needs to be captured to disk - this is critical - however, the RTMP output may fail for any number of reasons, network goes down etc etc.

    Is there a way I can configure the RTMP to be more resilient ? I.e. retry, but never kill the avconv process due to an RTMP failure ?

    I basically want the RTMP to come up whenever it can, but the disk capture should always be performed.

  • How to profile compression speed for a h264 encoder

    25 mai 2018, par Dean

    I’m using nvenc to compress in h264 a video stream. I now have a kinda-working low latency implementation for game streaming purposes but I’m struggling to get reliable profiling results. I’ve been trying to stream a video (so everything is predetermined) via my encoder to the clients in controlled network conditions (e.g. locally). I tried to time average compression times per frame but they’re highly volatile and the numbers I get aren’t that meaningful.

    How are low latency streaming encoders tested for performances ?

  • What is the best solution of motion interpolation by CPU ?

    31 mars 2022, par Stacker Dragon

    I've been using FFmpeg's "minterpolate" filter to implement motion interpolation to get a higher frame rate for a while. However, because "minterpolate" doesn't support hardware acceleration and multithread, it is very slow to finish that process, particularly on devices that only have CPU, which make the situation worse because I cannot use neural network such as DAIN(by SJTU).

    



    Thus, I would like to ask for some alternatives for "minterpolate" filter, which is supposed to be faster and has a decent quality.

    



    I knew SVP can do, but it is not open-sourced and therefore it cannot be integrated to other software.