Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (55)

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

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

  • ffmpeg overlay two video second video transparent visible sub-title

    18 octobre 2020, par cleanguy

    I have two video : video1 without subtitle and video2 with sub-title burned video I want to merge overlay and put the second video2 transparent video and leave only the white sub-title that appears visible it is possible with ffmpeg

    


  • Create Seamless Video and Crop Video in one command

    27 avril 2019, par Zeeshan Sheikh

    I have a ffmpeg command that convert a video for seamless loop. But now i want to crop Video as well in same command.
    is there any solution to do crop video 720x720 in same command

    —Seamless Commmand—

    ffmpeg -i video.mp4 -filter_complex [0:v]split[body][pre] ;[pre]trim=duration=1,format=yuva420p,fade=d=1:alpha=1,setpts=PTS+(28/TB)[jt] ;[body]trim=1,setpts=PTS-STARTPTS[main] ;[main][jt]overlay -c:v libx264 -strict experimental out.mp4

  • Concat 2 video and add watermark first video ffmpeg

    31 août 2020, par cleanguy

    I have a Video #1, it has audio. Also I have a Video #2, with audio too. I would like to concat the #1 and #2 (or play #1 first, and then #2) and then add a watermark in #1 for the rest of the video, preserving audio timestamps.

    


    I used this command but the watermark appears on the #2 video ?

    


        ffmpeg -i Video1.mp4 -i Video2.mp4 -i watermark.png
   -filter_complex
       "[1][2]overlay=5:5[v2];
        [0][0:a][v2][1:a]concat=n=2:v=1:a=1"
   -c:v libx264 -crf 21 -c:a aac -b:a 384k -ar 48000 -movflags +faststart Out.mp4