Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (58)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (8532)

  • ffmpeg how add gif image as watermark with live video streaming rtmp [duplicate]

    20 août 2020, par Master. net

    this my command before add gif image

    


    ffmpeg -re -i /root/video.mp4 -acodec copy -vcodec copy -f flv rtmp://mydomain.com:2444/stream/play


    


    and when i add gif as watermark in the command like that appear error

    


    ffmpeg -re -i /root/video.mp4 -ignore_loop 0 -i /root/img.gif -filter_complex "overlay=10:10" -acodec copy -vcodec copy -f flv rtmp://mydomain.com:2444/stream/play


    


    Error is :
Streamcopy requested for output stream 0:0, which is fed from a complex filtergraph. Filtering and streamcopy cannot be used together.

    


    can any one help and put example to my command ?

    


    Thank you

    


  • How add watermark on ts video ?

    22 août 2020, par r_astapov

    How add watermark on ts video ?
After adding a watermark to the video (ts format) using the command below, output video (ts format too) does not playing in the browser
What could be the reason for this ?

    


    ffmpeg -i input.ts -i logo.png -filter_complex overlay=790:40 -codec:v libx264 -crf 18 -preset superfast -pix_fmt yuv420p -c:a aac -strict -2 -y output.ts


    


  • ffmpeg - 2 Files - Convert ->Concate->Watermark not working

    30 août 2016, par Salexes

    I am currently trying to bulk add outros and watermarks to my videos.
    I am new to this.

    This is my code for converting the videos into the same format

    cd source

    for %%f in (*.mp4) do (
       ffmpeg -i "%%f" -c:v libx264 -b:v 1500k -s 720x720 -crf 22 -g 1 -keyint_min 1 -preset slow -shortest -ar 44100 "../converted/c_%%f"
    )

    cd outro
    for %%f in (*.mp4) do (
       ffmpeg -i "%%f" -c:v libx264 -b:v 1500k -s 720x720 -crf 22 -g 1 -keyint_min 1 -preset slow -shortest -ar 44100 "../../converted/outro/c_%%f"
    )
    call concat.bat
    pause

    This is the code I use then to concat the files :

    cd converted  
      for %%f in (*.mp4) do (
         echo.>%%f.list
         echo file '%%f' >> %%f.list
         echo file 'c_outro.mp4' >> %%f.list
       )


    for %%f in (*.list) do (
     ffmpeg -f concat -i %%f -c copy concatenated/%%f.mp4
    )
    call final.bat
    pause

    This is the code I use to add the watermark :

       cd concatenated
    for %%f in (*.list) do
       ffmpeg -i "%%f" -i logo.png -filter_complex "overlay=10:10" "../../final_%%f"
    )

    pause

    Where did I do the mistake ? It is converting the videos without problem and concating them but watermarking them seems not to work. Please advice.