Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (48)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

Sur d’autres sites (6663)

  • Detect frames that have a given image/logo with FFmpeg

    7 juillet 2022, par scc

    I'm trying to split a video by detecting the presence of a marker (an image) in the frames. I've gone over the documentation and I see removelogo but not detectlogo.

    



    Does anyone know how this could be achieved ? I know what the logo is and the region it will be on.

    



    I'm thinking I can extract all frames to png's and then analyse them one by one (or n by n) but it might be a lengthy process...

    



    Any pointers ?

    


  • ffmpeg multiple text/logo elements

    17 septembre 2018, par omega1

    I am trying to add multiple items to an ffmpeg command and am getting stuck.

    So far in the command I am automatically updating one image, which I’m using as a video, I also want to add a logo and two lines of text.

    I have been successful until the last item, which is the logo overlay.

    This is the relevant part of code :

    ffmpeg \
       -f image2 -loop 1 \
       -y \
       -i "/var/www/html/image_rotate.png" \
       -re \
       -i audio.mp3 \
       -vf "movie=/var/www/html/overlay_logo.png [watermark]; [in][watermark] overlay=0:0 [out], drawtext=fontsize=10:fontfile=/var/www/html/OpenSans-Regular.ttf:textfile=/var/www/html/text1.txt:box=1:boxcolor=#000000:fontcolor=#FFFFFF:x=0:y=(h-text_h-20):reload=1, drawtext=fontsize=10:fontfile=/var/www/html/OpenSans-Regular.ttf:textfile=/var/www/htmltext2.txt:box=1:boxcolor=#000000:fontcolor=#FFFFFF:x=0:y=(h-text_h-30)" \

    This gives me the following error :

    Simple filtergraph ... was expected to have exactly 1 input and 1 output. However, it had >1 input(s) and >1 output(s). Please adjust, or use a complex filtergraph (-filter_complex) instead.

    If I remove the last part I added (the overlay logo) I do not get the error.
    If I add multiple -vf it only processes one (the text OR the logo).

    I’m not sure how to achieve this.

  • Removing / Overlaying logo on mp4 video format with ffmpeg on linux

    12 septembre 2020, par SilverShadow

    I'm trying to remove a logo from an .mp4 video file with ffmpeg on linux machine without re-encoding (for preserving the same quality) with the following command :

    


    ffmpeg -i input.mp4 -vf delogo=x=270:y=190:w=40:h=40 -c:a copy output.mp4 


    


    and it gives me the following errors :

    


    Unrecognized option 'vf'


    


    then a new error came up :

    


    Unable to find a suitable output format for 'delogo=x=270:y=190:w=40:h=40'


    


    ffmpeg is always updating and it seems that they change command line arguments a lot so any material or tutorial I find online seems to get outdated quickly ...

    


    I reviewed the documentation but can't get it to work, I think I'm missing something...?

    


    So : What is the correct command line in linux shell ? Also, how to view or find out the exact coordinates of the area to be removed before actually removing the logo ? And how can I overlay a solid color in a certain area instead of removing the logo transparently ?