Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (39)

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

  • FFMPEG audio not working when adding watermark

    19 novembre 2013, par Anisha Virat

    I can successfully add watermark to mp4 video , But Audio is not working in new mp4.please help me out.And also please tell me is there way to compress a file during this conversion..60mb file is converted to 110 mb file while adding watermark.

    print exec('/usr/local/bin/ffmpeg -y -i video.mp4 -vf "movie=hi.png [watermark]; [in][watermark] overlay=10:main_h-overlay_h-10 [out]" video1.mp4');
  • ffmpeg watermark to mp4

    20 octobre 2013, par user2899426

    Trying to add a png graphic as watermark to an existing mp4 video with audio.
    But each time I produce an ouputfile there is no audio included / encoded ?
    For testing pupose i only want a small 30 second clip

    ffmpeg -t 0:0:30.0 -i 'input.mp4' -i 'logo.png' -filter_complex '[0:v][1:v]overlay[out]' -map '[out]' -b:v 5842k -c:a copy out.mp4

    have managed to extract audio to seperate mp3 file to check codec works

    FYI built ffmpeg from gitclone
    Thanks this is driving me nuts.

  • Adding watermark to a video by using ffmpeg in php

    16 mai 2016, par Surya Peddada

    I created a video with group of images and mp3.
    But i want to add a watermark text to that video .i am using the below code to add the text.

    exec('/usr/local/bin/ffmpeg -y -i output.mov -acodec libmp3lame -vcodec msmpeg4 \
    -b:a 192k -b:v 1000k -ar 44100 \
    -vf "drawtext=text=string1 string2 string3 string4 string5 string6 string7 :expansion=normal:fontfile=/usr/bin/DejaVuSerif-BoldItalic-webfont.ttf: y=0:x=h-(2*lh)-n: fontcolor=white: fontsize=40: box=1: boxcolor=0x00000000@1" \
    -an IMG_0696.avi');

    The issue with this is that the video file is creating with zero size.
    Can any one help me please.
    Or else Suggest me any other command to add watermark text to video.
    Thank you in advance...