Recherche avancée

Médias (91)

Autres articles (29)

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • 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 : (...)

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;