Recherche avancée

Médias (91)

Autres articles (112)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (13151)

  • ffmpeg always passes the video through directshow ?

    13 août 2015, par GodFather

    ffmpeg always passes the video through directshow ?

    I need to get a streaming video that came from a ip camera, and pass it to directshow. I’m using ffmpeg to get this video, and I’d like know if on windows, everything that ffmpeg makes use the directshow ?

    Iknow how can I get a movie in rstp protocol, but I don’t know how can I output it to directshow.

    If true how can I get a movie, read it and pass the output to directshow ?

    Thanks.

  • 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
  • ffmpeg - How to convert a gif image to an mp4 and loop for 5 seconds

    23 octobre 2014, par Gary

    I have a program which will convert images to an mp4 movie that loops for 5 seconds. In most cases it does it without any issue except when the image is a gif file. I receive an invalid argument error on the "-loop 1" argument when the image is a gif.

    When I remove the "-loop 1" arg and add "ignore_loop 0" I get a movie that goes so fast you can’t see it when multiple movies are played in a playlist.

    The arguments in the program looks like this...

    -ignore_loop 0 -i "gifimage.gif" -vf "pad=width=400:height=300:x=0:y=0" -pix_fmt yuv420p -t 5 gifout.mp4

    if (imageFullName.Contains(".gif"))
               arguments.Append("-ignore_loop 0");
           else
               arguments.Append("-loop 1");

    arguments.Append(" -i \"" + i.FullName + "\"");
    arguments.Append(" -vf \"pad=width=" + outputWidth.ToString() + ":height=" + outputHeight.ToString() + ":x=" + padLeft.ToString() + ":y=" + padTop.ToString() + "\"");
    arguments.Append(" -pix_fmt yuv420p -t 5");
    arguments.Append(" " + outputFullName);

    As you can see I tell ffmpeg that the movie is to last 5 seconds but it doesn’t. Is there a way to convert a gif image to an mp4 and have it loop for 5 seconds ?

    Thanks,
    Gary