Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (28)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (4608)

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