Recherche avancée

Médias (91)

Autres articles (29)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

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;