Recherche avancée

Médias (91)

Autres articles (58)

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

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (4609)

  • How to overlay a logo on a video every 60 seconds using ffmpeg ?

    17 juin 2024, par Wolf Wolf

    I am trying to overlay a logo on a video every 60 seconds for a duration of 5 seconds using ffmpeg. Here's the command I am using :

    


    ffmpeg -i input.mp4 -i logo.png -filter_complex "[0:v]setpts=PTS-STARTPTS[v0];[1:v]loop=-1:size=1:start=0,setpts=N/(FRAME_RATE*TB)[logo];[v0][logo]overlay=enable='mod(t,60)<5':x=W-w-10:y=H-h-10[out]" -map "[out]" -map 0:a -c:a copy output.mp4


    


    However, I am encountering the following error :

    


    

[overlay @ 000002199e0b3f00] [Eval @ 000000f94f9feff0] Invalid chars '<5' at the end of expression 'mod(t,60)<5'

[overlay @ 000002199e0b3f00] Error when evaluating the expression 'mod(t,60)<5' for enable

[AVFilterGraph @ 000002199e098b00] Error initializing filters

Failed to set value '[0:v]setpts=PTS-STARTPTS[v0];[1:v]loop=-1:size=1:start=0,setpts=N/(FRAME_RATE*TB)[logo];[v0][logo]overlay=enable='mod(t,60)<5':x=W-w-10:y=H-h-10[out]' for option 'filter_complex': Invalid argument

Error parsing global options: Invalid argument

I am using ffmpeg version X.XX on [your OS here, e.g., Windows 10].



    


    I want the logo to appear every 60 seconds for 5 seconds at the bottom-right corner of the video.

    


    The input video and logo files are valid and can be processed with simpler ffmpeg commands.

    


    How can I correctly format the ffmpeg command to overlay the logo every 60 seconds without encountering the invalid argument error ?

    


  • ffmpeg + php delete logo from video streaming [closed]

    8 novembre 2024, par Hosam Merhe

    i have this logo please i need delete logo and scale 1280×720p
Because it causes some problems with the server.

    


    if($cpuinfo =shell_exec('ffmpeg -re  -i "'.$deafultvidelink.'" -i "'.$channellogo.'" -filter_complex  "[1:v] fade=out:st=30:d=1:alpha=1 [ov]; [0:v][ov] overlay=30:30 [v]" -map "[v]" -c:v libx264 -preset superfast -crf 23 -map 0:a -acodec  mp2 -f mpegts  '.$udp.'?pkt_size=1316'))


    


  • Remove .mp4 video top and bottom black bars using ffmpeg

    9 septembre 2014, par rexhin

    I’m new to ffmpeg and I have heard that it has a filter for black. I want to remove black bars on top and bottom of the video so the video will be cropped to the remaining video without black bars. Thanks :)