Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Generate images at given time from flv video using ffmpeg

    22 novembre 2013, par CodeJack

    I am using the following command in ffmpeg to generate thumbnails. It is working perfect.

    ffmpeg -i videofile.flv -an -ss 01:00:00 -an -r 1 -vframes 1 -y ".$outputdir."/".$groupid."_".$i.".jpg

    But problem is I have different seek times of a video from where thumbnails have to be generated and right now Iam using a loop which is running very slow. I found the reason as ffmpeg seeks to the given time for every command. I tried forking the process but is not effective. Is there anyways i can optimise the command so the repetitive seeks can be avoided ?

  • Create slideshow video from PNG images - each in its own time position [closed]

    16 août 2023, par Paul

    I have several hundreds of PNG screenshots.

    


    Each screenshot file has following name format : yyyymmdd_hhmmss.png

    


    Time differences between these screenshots are irregular.

    


    How could I automatically create a slideshow video taking the first file as the point zero and maintaining other pictures' exact timings relative to the first one ?

    


    Can FFMPEG do this ? Which contents may have a batch file then ?

    


  • Simultaneous Recording and Real-Time Display Using ffmpeg with DeckLink

    9 décembre 2023, par ark1974

    I am currently working with a DeckLink Duo card, specifically utilizing port 2. My objective is to use FFmpeg to ingest RAW HD SDI, save it as an MP4 file, and concurrently display the incoming SDI video on the computer screen in real-time.

    


    I have experimented with various FFmpeg command lines, combining decklink and sdl options, to achieve this dual functionality :

    


    ffmpeg -f decklink -i 'DeckLink Duo@2' -c:v libx264 -preset ultrafast -tune zerolatency -f sdl "My Screen"


    


    However, I am encountering challenges in achieving both recording and real-time display simultaneously.

    


    I would appreciate any insights, suggestions, or alternative approaches to enable the concurrent recording and display of SDI video using DeckLink with ffmpeg.