Recherche avancée

Médias (91)

Autres articles (56)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7384)

  • Revision 61325 : Si on voir le logo sur la page de config, cela devrais faire l’affaire.

    15 mai 2012, par pierrekuhn82@… — Log

    Si on voir le logo sur la page de config, cela devrais faire l’affaire.

  • How to scale and add correct a logo in ffmpeg command ?

    24 mars 2016, par Chris

    I am trying to apply a watermark and also to scale it to the current video size via ffmpeg command :

    Here is my inital comand that works without watermark

    ffmpeg -v 0 -vcodec h264_qsv -i 'udp://@some.ip:1234?fifo_size=1000000&overrun_nonfatal=1&buffer_size=1000000' -vf scale=iw:ih -profile baseline -acodec aac -ac 1 -ar 44100 -ab 64k -deinterlace -vcodec h264_qsv -bufsize 4000k -maxrate 3500k -preset veryfast -vb 2000k -f flv rtmp://127.0.0.1/app/720

    Now I tried to add the picture as a watermark. There was a conflict while using with -vf scale=-1:ih*.5, in order to eliminate the problem I used -s 1280x720 to specify the resolution for the video stream, it worked but not properly.

    ffmpeg -v 0 -vcodec h264_qsv -i 'udp://@some.ip:1234?fifo_size=1000000&overrun_nonfatal=1&buffer_size=1000000' -i logo.png -filter_complex "overlay=10:10" -s 1280x720 -profile baseline -acodec aac -ac 1 -ar 44100 -ab 64k -deinterlace -vcodec h264_qsv -bufsize 4000k -maxrate 3500k -preset veryfast -vb 2000k -f flv rtmp://some.ip/app/720

    The problem :

    How can I specify in the ffmpeg command the both sizes of video and logo(watermark) so they don’t conflict with each other and they auto adjust like -vf scale=-1:ih*.5 dose.

    Thank you !

  • How do i overlay a logo image or a video with ffmpeg [closed]

    5 août 2023, par Rui Pinto

    I want to overlay a logo here
but it's being so difficult to learn filter_complex
i would like to know if somebody can help me
Also in the future i would like to add a video in loop to be like an overlay

    


    type here
#!/bin/bash

VBR="3500k"        # Video bitrate in kbps
FPS="25"           # Frames per second
QUAL="ultrafast"   # Video encoding preset (you can adjust this for better quality)

TWITCH_URL="adsad"
TWITCH_KEY="dasd"

VIDEO_SOURCE="/home/ubuntu/Downloads/Untitled.mov"
AUDIO_SOURCE="/home/ubuntu/Downloads/Untitled.mp3"

ffmpeg \
    -re -stream_loop -1 -i "$VIDEO_SOURCE" \
    -re -stream_loop -1 -i "$AUDIO_SOURCE" \
    -map 0:v:0 -map 1:a:0 \
    -vcodec libx264 -pix_fmt yuv420p -s 1920x1080 -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \
    -acodec libmp3lame -ar 44100 -b:a 320k -bufsize 512k \
    -f flv "$TWITCH_URL/$TWITCH_KEY"


    


    I tried many links but as i don't know how to work with the filter complex i ask someone to help me.