Recherche avancée

Médias (91)

Autres articles (42)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

  • How to capture multiple screenshot from online video stream using ffmpeg with specific seek time

    9 août 2017, par Md. Mehedi Hasan

    I’m using ffmpeg to take screenshot from online video stream. I want to seek multiple timeline. I’ve used the following command to capture 1 screenshot by seek command :
    ffmpeg -ss 00:02:10 -i "stream-url" -frames:v 1 out1.jpg

    How I can take multiple screenshot via multiple seek time. I’ve searched for the solution but no success.

    I’ve used the following command to take multiple screenshot as follows :
    ffmpeg -noaccurate_seek -ss 00:01:10 -i "stream-url" -map 0:v:0 -vframes 1 -f mpeg "thumb/output_01.jpg" -ss 00:02:10 -i "stream-url" -map 1:v:0 -vframes 1 -f mpeg "thumb/output_02.jpg"

    Is there any way to generate screenshots from same input via seek command ? How to make it more faster ? How to skip multiple input(-i param) ? I’ve also tried with other commands but those are more slower. Can anyone help me ?

  • Render online video from images and output mp4 file [duplicate]

    27 février 2020, par Bashar Husin

    what the best language or library for render video from images or texts
    I tried a lot of things but I can’t render it.
    What about (Xuggler) or (ffmpeg) ....

  • Amazon S3 : how to combine all images into a video ?

    17 mars 2015, par scientiffic

    I’m in my Rails app, I enable users to upload images, which get processed using ffmpeg to create a video slideshow.

    I have this working locally, but am wondering how to do this when deploying the app using Heroku. In particular, I know Heroku has limited storage and has a read-only filesystem, so using Carrierwave without S3 or an external storage option doesn’t seem like an option.

    But how would I run a task like the following using S3, where I combine all images into a video ?

    The ffmpeg command is

    ffmpeg -r 5 -i https://s3.amazonaws.com/[]/uploads/image/image_file/26/img%03d.jpg output.mp4 -y

    And the AWS "folder" contains the following :
    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img001.jpg
    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img002.jpg
    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img003.jpg

    When I try to do the following, I get an error with ffmpeg not knowing what to do with :

    https://s3.amazonaws.com/[]/uploads/image/image_file/26/img%03d.jpg

    Note, this whole video compilation process works fine for me locally, so I know in theory it should work.