Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (99)

  • 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 ;

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (11568)

  • FFmpeg : How to convert vertical video with blurred background sides

    1er février 2019, par Divya

    I execute the below command for blur the video background but i get error.

    String[] complexCommand = {"-i", "" + yourRealPath, "-lavfi", "[0:v]scale=ih*16/9:-1",
       "boxblur=luma_radius=min(640,356)/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=h=iw*9/16", "-vb", "800K", filePath};

    ERROR :

    Unable to find a suitable output format for’boxblur=luma_radius=min(640,356)/20’
    boxblur=luma_radius=min(640,356)/20 : Invalid argument

  • how to redirect adb screenrecord output to pc(windows/linux) storage

    30 novembre 2018, par asullaherc

    In linux, I use following code to cast android screen to pc, it work well

    adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" | ffplay -

    so I think exist way to redirect screenrecord output to pc storage, so I try following code

    adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" >> /tmp/t.mp4

    but the output video file cannot be opened by vlc and google-chrome, how to fix it ?

    ffplay is belongs ffmpeg, so I guess exist similar cli in ffmpeg to output input video streaming into video file

  • Correct vertical stripes in camera footage due to camera damage

    19 septembre 2018, par Fabien Biller

    My camera is damaged and I am out of warranty. But I don’t want to buy a new one yet.
    This is what the issue looks like :
    enter image description here

    Now blurring the area helps somewhat. My question is, how do I selectively blur - or restore otherwise - the areas with that error in video using ffmpeg ?

    I looked into the blur filters like avgblur and boxblur, yet they are not selective. Then I looked at fftfilt, as the pattern is regular. But how do I set the formula ?