Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (29)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3741)

  • What does 'Past duration X.XXX too large' mean ?

    20 janvier 2021, par Erik

    When encoding H.264 using ffmpeg I get the following type of warnings en masse :

    



    Past duration 0.603386 too large
Past duration 0.614372 too large
Past duration 0.606377 too large


    



    What do they mean ? I have not found anything clear online or in the ffmpeg documentation.

    


  • What does 'Past duration X.XXX too large' mean ?

    12 janvier 2017, par Erik

    When encoding H.264 using ffmpeg I get the following type of warnings en masse :

    Past duration 0.603386 too large
    Past duration 0.614372 too large
    Past duration 0.606377 too large

    What do they mean ? I have not found anything clear online or in the ffmpeg documentation.

  • How to mimic Instagram/TikTok HLS streaming capabilities ?

    30 avril 2023, par nickcoding2

    I'm converting a .mp4 file to HLS in Node.js and storing it in S3. What are the important options to pass in here ? I'm currently passing in the below, because that's what was suggested in some online tutorial I followed.

    


    '-profile:v baseline',
'-level 3.0',
'-start_number 0',
'-hls_time 3',
'-hls_list_size 0',
'-f hls'


    


    Should I be lowering the hls_time parameter to say, 1 ? Isn't the smaller that number, the more granular each segment is, and the quicker each segment of the stream will be loaded on the client side ? What are other things to consider here ? I'd like to get as close to TikTok/Instagram media playing capabilities as possible.