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 (11879)

  • Generate image from a swf file issue

    24 avril 2013, par Rouge

    I am trying to generate first frame of a swf as a thumbnail image so the user can see it before they open the swf file.

    1.Using FFMpeg

    ffmpeg -i movie.swf -f image2 -vcodec png movie%d.png

    using command line with ffmpeg to generate images. the above command will
    give me errors saying

    [swf @ 0x17937a0] Compressed SWF format not supported
    

    2.Using swftools

    Their website provide a tar file to download however, I only have the command line access in the server so I won't be able to install the tools.

    I need to use server side technology because I have hundreds of swf files.

  • ffmpeg does not apply watermark on first generated frame (wm is applied on all other frames)

    3 juillet 2013, par JohnSmith

    I am generating a bunch of jpgs from a movie, and want the watermark to be applied to all the jpgs. This works fine for all frames, but the first one, and I cannot figure out why.

    This is the command I use

    ffmpeg -vframes 16 -ss 00:00:01 -i a.mov -t 00:00:17 -r 1 -s 1280x720 -vf "movie=watermark.png,scale=1280:720 [wm];[in][wm] overlay=0:0 [out]" '/tmp/output%d.jpg'

    which will give me these files :

    output1.jpg
    output2.jpg
    output3.jpg
    output4.jpg
    output5.jpg
    output6.jpg
    output7.jpg
    output8.jpg
    output9.jpg
    output10.jpg

    where they all BUT output1.jpg has got watermark applied.

    I cannot figure out why ffmpeg does not apply the watermark on the first one.

    I am using ffmpeg 1.2 on debian

  • Converting image sequence to video with inconsistent frame rate

    4 novembre 2022, par George

    I recently collected video data where the video was generated as image sequences. However, between different video of the same length, different numbers of frames were acquired, which made me think that the image sequence have varied frame rates between videos. So my question is how do I convert this image sequence back to video with accurate duration between frames. Is there a way to get that information from the date and time it was created using a code ? I know ffmpeg seems to be the tools many people use.

    


    I am not sure where to start. I am not very familiar with coding, so already have trouble executing the correct codes.