Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (44)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8132)

  • aarch64 : vp9lpf : Fix broken indentation/vertical alignment

    11 janvier 2017, par Martin Storsjö
    aarch64 : vp9lpf : Fix broken indentation/vertical alignment
    

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

    • [DBH] libavcodec/aarch64/vp9lpf_neon.S
  • swscale/yuv2rgb : Fix vertical dither offset with slices

    2 avril 2020, par Michael Niedermayer
    swscale/yuv2rgb : Fix vertical dither offset with slices
    

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

    • [DH] libswscale/yuv2rgb.c
  • Converting a video to a vertical video with blurred sidebars

    28 mars 2020, par vinay jv

    I was trying to convert a video to a vertical video with blurred sidebars in the android app. I tried the following code in the windows cmd command it works like a charm but when I tried it on android it just stuck in the processing part. Snapshot of my code for converting a video into vertical video``

    String[] command = {"-i", inputfile,"-filter_complex","[0:v]scale=-2:iw*16/9,boxblur=luma_radius=min(h,w)/20:luma_power=1:chroma_radius=min(cw,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,crop=w=ih*9/16",String.valueOf(outputFile)};

    Am I missing any codecs here like x264 ?