Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9015)

  • FFMPEG - How to get a blur effect, without altering the color white ?

    17 août 2016, par Hugo

    I need a picture, with blur effect background. I found the code works, but, the white color of the photos is lost ( only happens with white color)...

    Step1 : ffmpeg -i eyes.jpg -s 640x360 -qscale 1 bg.jpg
    Step2 : ffmpeg -i bg.jpg -filter_complex "[0:v]crop=640:360:0:0,boxblur=20[fg] ;[0:v][fg]overlay=0:0[v]" -map "[v]" -qscale 1 bg.jpg -y
    Step3 : ffmpeg -i bg.jpg -i eyes.jpg -filter_complex "overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2" -qscale 1 result.jpg
    

    Original photo :
    see original photo

    Result (white color is lost)
    see result photo

    Please I need help (The white color should remain).

    Thank you very much,
    Greetings,
    Hugo

  • ffmpeg with background color

    25 mars 2019, par NAG

    This command works nice with some GIF but with some others return a error :

    ffmpeg -f gif -f lavfi -i color=FFFFFF -i animated.gif -y
      -filter_complex "[0][1]scale2ref[bg][gif];[bg]setsar=1[bg];[bg][gif]overlay=shortest=1"
      -pix_fmt yuv420p -movflags frag_keyframe+empty_moov -movflags +faststart
      -crf 20 -b:v 500k -f mp4 animated.mp4

    Error :

    [libx264 @ 0x55e79dc7e3c0] height not divisible by 2 (1400x933)
    Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0
    - maybe incorrect parameters such as bit_rate, rate, width or height

    Some help to fix it maintaining the background color functionality ?

  • ffmpeg how to put color overlay over video

    17 novembre 2015, par flieks

    I want to put a color overlay (blue, red or green or hex value) over a video giving it a Instagram filter like effect.

    I think it should be in the lines of :

    ffmpeg -i video.mp4 -i "red.png" -filter_complex "blend=all_mode='screen':all_opacity=0.7" output.mp4

    or maybe with all_mode=overlay

    But I get an error :

    First input link top parameters (SAR 0:1) do not match the corresponding second input link bottom parameters (SAR 1:1).

    I also tried with lutrgb=r=1.5, but that didn’t give it a red color (it takes the red away).

    What am i doing wrong ?