Recherche avancée

Médias (91)

Autres articles (29)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (4829)

  • doc/filters : correct range for length in astats filter

    9 avril 2018, par Gyan Doshi
    doc/filters : correct range for length in astats filter
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/filters.texi
  • avutil/avstring : Limit string length in av_escape to range of int

    9 mars 2021, par Andreas Rheinhardt
    avutil/avstring : Limit string length in av_escape to range of int
    

    Otherwise the caller can't distinguish the return value from an error.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavutil/avstring.c
  • FFMPEG - bufsize formula

    31 mars 2023, par Data

    Does anyone know what the formula is for bufsize along with the rate it checks in FFMPEG ?

    &#xA;

    I can't seem to find any concrete answer to this.

    &#xA;

    Is it :&#xA;bufsize = bitrate / rate&#xA; ?

    &#xA;

    And should it be using maxrate as opposed to bitrate in the calculation ?

    &#xA;

    Example on working out the rate at which the checks are done :

    &#xA;

    bitrate: 700Kbps&#xA;maxrate: 700Kbps&#xA;bufsize: 70Kb&#xA;&#xA;700Kbps/70Kb = 10 sec&#xA;

    &#xA;

    Is that right ?&#xA;To me that doesn't sound right because a smaller bufsize should be running the check at a higher rate and 10 seconds seems too long of a gap.

    &#xA;

    Would the formula need to be inverted ?

    &#xA;

    Does anyone have an idea on the correct syntax for the formula and units ?

    &#xA;