Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (99)

  • 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 (...)

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

  • 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 (10874)

  • Révision 17787 : generaliser l’aide sur les titres de logo, et la separer de la chaine

    30 avril 2011, par cedric -
  • 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.

    


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