Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (75)

  • 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 ;

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (10164)

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

    


  • Real time streaming using FFMPEG in C#

    24 mai 2017, par Aadhil Rushdy

    Is there a way to stream a set of images real time via http using FFMPEG in c#. There are libraries available for FFMPEG in C# such as Accord.Video.FFMPEG which can be used to create video using sequence of Images, but I have no idea whether I can create a video real time and stream it to the client browser using a set of Images.
    I had refer to these links but couldn’t find helpful for my task
     : Streaming video using stream of images
    , How to stream with ffmpeg via http protocol

  • How to Create a video stream from images in real time ?

    27 novembre 2017, par Wijaya

    I need to create a video memory stream from a bitmap array and stream it to the clients in real time.

    Since my application is developed in C# and runs on a windows server I can’t use ffserver(ffmpeg media server).

    Any help would be really appreciated.