Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (84)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (5176)

  • How to correctly combine FFMPEG file pattern and complex filter ?

    4 octobre 2015, par John Doe

    Say I have the following FFMPEG command line using the built-in filters.

    ffmpeg -y -loop 1 -t 1 -i 'img-0001.jpg' -loop 1 -t 1 -i 'img-0002.jpg' \
    -filter_complex "\
    [1:v][0:v]blend=all_expr='A*(if(gte(T,0.7),1,T/0.7))+B*(1-(if(gte(T,0.7),1,T/0.7)))'[b1v]; \
    [0:v][b1v][1:v]concat=n=3:v=1:a=0,format=yuv420p[v]" \
    -map "[v]" out.avi

    What it does is to display the two input images img-0001.jpg and img-0002.jpg for one second each and also blending between them. Unfortunatly this will break at some point when I want to create a slide show with a lot of images. You will get an "Argument list too long" error. So I wanted to use ffmpegs file pattern syntax, i.e., something like

    ffmpeg -y -loop 1 -t 1 -i 'img-%04d.jpg'  \
    -filter_complex "\
    [1:v][0:v]blend=all_expr='A*(if(gte(T,0.7),1,T/0.7))+B*(1-(if(gte(T,0.7),1,T/0.7)))'[b1v]; \
    [0:v][b1v][1:v]concat=n=3:v=1:a=0,format=yuv420p[v]" \
    -map "[v]" out.avi

    As far as I understood the syntax, the file names should be okay for this scenario. The files under test are the same as the ones explicitly stated in the first command. But I cannot manage to get passed the following error :

    Input #0, image2, from 'img-%04d.jpg':
    Duration: 00:00:00.08, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: mjpeg, yuvj422p(pc, bt470bg/unknown/unknown), 2592x1728     [SAR 72:72 DAR 3:2], 25 fps, 25 tbr, 25 tbn, 25 tbc
    Invalid file index 1 in filtergraph description [1:v][0:v]blend=all_expr='A* (if(gte(T,0.7),1,T/0.7))+B*(1-(if(gte(T,0.7),1,T/0.7)))'[b1v]; [0:v][b1v]   [1:v]concat=n=3:v=1:a=0,format=yuv420p[v].

    It looks like I am using the file pattern syntax wrong. What am I missing ?
    Thanks in advance.

  • FFmpeg : Image scrolling vertically ?

    23 octobre 2018, par Abhi

    I want multiple images to move vertically, and need to stop video for 5sec after each slide without bg. How can I change i achieve this ?

    Although i had achieved it for single image.

    ffmpeg -loop 1 -t 24 -i "image.jpg" -filter_complex "color=000000:s=640x360[bg];[bg][0]overlay=shortest=1:y='min(0,-(t)*26)'" -qscale 1 -y output.mpg

    Video Result : https://youtu.be/98rKLVO56wA

  • Encoding Closed Captions in FFmpeg (in code)

    22 octobre 2018, par szalap

    Does FFmpeg support Closed Captions encoding or any other captions within video stream ? If yes, how one can achieve that within a code ?
    I’m trying to encode subtitles, but I can’t use a separate stream for it, what would normally be achieved through ASS subtitles support.

    I’ve seen an implementation of A53Captions, but I’m not sure how to properly use it (and if it’s what I’m after), as they’re no examples out there.