Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (34)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6009)

  • Presenting more then 2 videos using FFmpeg

    9 décembre 2012, par Radagskar

    i found this answer for combining 2 videos using Ffmpeg

    ffmpeg.exe -i LeftInput.mp4 -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left];
       movie=RightInput.mp4, scale=iw/3:ih/3, fade=out:300:30:alpha=1 [right];
       [left][right] overlay=main_w/2:0 [out]" -b:v 768k Output.mp4

    Is there a way to combine more then 2 ? i tried adding [bottom] and [upper] but i'm failing to understand how the overlay works and where do i put more videos.
    Thanks

  • Copy codecs setting from video or how to join video using ffmpeg [closed]

    6 décembre 2012, par Степан Талабира

    We have 2 videos :
    test1.mp4 and test2.mp4

    How do I convert video 1 with parameters video 2 ? (for join them together)

    I tried to pull out the parameters of video using ffmpeg-php.
    But the result is bad .. mkvmerge or MP4Box not join this result video.
    Mencoder says that the video codec settings is different...

    Сan anyone tell me how to blind 2 video (the first small and second big) without re-encoding the second movie
    Video mp4 H.264.

  • How to overlay an input over an image using filters ?

    9 mai 2012, par Jona

    I'm looking to create a video using a set of png images that have transparency merged with a static background.

    After doing a lot of digging I seems like it's definitely possible by using the filters library.

    My initial video making without including the background is :

    ffmpeg -y -qscale 1 -r 1 -b 9600 -loop -i bg.png -i frame_%d.png -s hd720 testvid.mp4

    Using -vf I can apply the background as overlay :

    ffmpeg -y -qscale 1 -r 1 -b 9600 -i frame_%d.png -vf "movie=bg.png [wm];[in][wm] overlay=0:0 [out]" -s hd720 testvid.mp4

    However the problem is it's overlaying the background over the input. According libacfilter I can split the input and play with it's content. I'm wondering if I can somehow change the overlay order ?

    Any help greatly appreciated !

    UPDATE 1 :
    I'm trying to make the following filter work but I'm getting the movie without the background :

    ffmpeg -y -qscale 1 -r 1 -b 9600 -i frame_%d.png -vf "movie=bg.png [bg]; [in] split [T1], fifo, [bg] overlay=0:0, [T2] overlay=0:0 [out]; [T1] fifo [T2]" -s hd720 testvid.mp4