Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (95)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

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

Sur d’autres sites (5947)

  • fftools/cmdutils : Use avfilter_pad_count() for AVFilter's number of pads

    12 août 2021, par Andreas Rheinhardt
    fftools/cmdutils : Use avfilter_pad_count() for AVFilter's number of pads
    

    Besides being nicer code this also has the advantage of not making
    assumptions about the internal implementation : While it is documented
    that the AVFilter.inputs and AVFilter.outputs arrays are terminated
    by a zeroed sentinel, one is not allowed to infer that one can just
    check avfilter_pad_get_name(padarray, i) to see whether one has reached
    the sentinel :
    It could be that the pointer to the string is contained
    in a different structure than AVFilterPad that needs to be accessed
    first : return pad->struct->string.
    It could be that for small strings an internal buffer in
    AVFilterPad is used (to avoid a relocation) whereas for longer strings
    an external string is used ; this is useful to avoid relocations :
    return pad->string_ptr ? pad->string_ptr : pad->interal_string
    Or it could be that the name has a default value :
    return pad->name ? pad->name : "default"
    (This actually made sense for us because the name of most of our
    AVFilterPads is just "default" ; doing so would save lots of relocations.)

    The only thing one is allowed to infer from the existence of the
    sentinel is that one is allowed to use avfilter_pad_count() to get
    the number of pads. Therefore it is used.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/cmdutils.c
  • docs : Fix simple typo, numer -> number

    17 septembre 2020, par timgates42
    docs : Fix simple typo, numer -> number
    

    There is a small typo in test/vendor/mocha.js.

    Should read `number` rather than `numer`.

  • FFmpeg - Add number to output

    16 avril 2016, par Skretzo

    Is there any way to automatically add a number to the output file with FFmpeg ? I don’t want to override previous outputs, and I don’t want to set the output number manually. I am looking for something like output(n+1).

    ffmpeg -i input.avi -ss 00:00:05 -to 00:00:10 -c copy output1.avi -i input.avi -ss 00:00:20 -to 00:00:35 -c copy output2.avi