Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (86)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5848)

  • avcodec/vvcdec : refact, unify {horizontal, vertical}_bs, {horizontal, vertical}_p...

    11 juin 2024, par Nuo Mi
    avcodec/vvcdec : refact, unify horizontal, vertical_bs, horizontal, vertical_p, horizontal, vertical_q
    
    • [DH] libavcodec/vvc/dec.c
    • [DH] libavcodec/vvc/dec.h
    • [DH] libavcodec/vvc/filter.c
  • aarch64 : Manually tweak vertical alignment/indentation in tx_float_neon.S

    17 octobre 2023, par Martin Storsjö
    aarch64 : Manually tweak vertical alignment/indentation in tx_float_neon.S
    

    Favour left aligned columns over right aligned columns.

    In principle either style should be ok, but some of the cases
    easily lead to incorrect indentation in the surrounding code (see
    a couple of cases fixed up in the preceding patch), and show up in
    automatic indentation correction attempts.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/aarch64/tx_float_neon.S
  • FFmpeg : How to convert vertical/horizontal video (any size) with black sides, to 1080x1350 vertical video with blurred background sides/bottom-top

    12 octobre 2023, par devweb

    i've been trying to make a ffmpeg 'filter_complex' code to make what i need but i can't, i've used some codes here on stack but non works for what i need, each is like for a different size/dimension.&#xA;I'm trying to make videos like Instagram posts (tallest allowed) : 1080 x 1350

    &#xA;

    Bassically, horizontal videos with blurred sides or bottom-top.

    &#xA;

    Any help will be awesome, thanks !

    &#xA;

    This is the principal which i tried

    &#xA;

    Something like this :

    &#xA;

    Example 1&#xA;Example 2

    &#xA;

    Here some codes i tried to worked with and changing stuff :&#xA;filter_complex=&#x27;[0:v]scale=1080*2:1350*2,boxblur=luma_radius=min(h\\,w)/20:luma_power=1:chroma_radius=min(cw\\,ch)/20:chroma_power=1[bg];[0:v]scale=-1:1080[ov];[bg][ov]overlay=(W-w)/2:(H-h)/2,crop=w=1080:h=1350&#x27;

    &#xA;

    filter_complex=&#x27;[0:v]scale=ih*5/4:-1,crop=h=iw*4/5,gblur=sigma=20[blurred];[blurred][0:v]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2&#x27;

    &#xA;

    filter_complex=&#x27;[0:v]scale=1080:1350,setsar=1,gblur=sigma=20[blurred];[blurred][0:v]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2&#x27;

    &#xA;