Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (67)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11863)

  • Using FFmpeg can I merge three different videos using overlap and overlay in one instance ?

    16 janvier 2017, par E. Rose

    I’m quite new to FFmpeg, so please bear with me.

    I find myself in a situation where I have :

    1. An intro video
    2. A main video
    3. An outro video

    Desired effect :

    The intro video has an alpha channel that at the end functions as a transition as it reveals the main video. An overlap in the concatenation would help this happen.

    The last 20 seconds of the main video need to have the frame scaled down and overlaid in a corner of the outro video.

    Also important to note that the main video has different language audio channels, so I would like to create a merged output for every channel.

    What is the procedure ?
    Is this possible to do in one instance or in one go ?

  • Create RTMP stream from website via Linux command line

    13 octobre 2020, par Chris P. Bacon

    I have a webpage with video and audio that I would like to relay through an RTMP stream. This would preferably happen via command line on a Linux machine.

    


    I know FFMPEG can be used to create RTMP streams and I know it can be used to capture the screen, but I don't know if it has all the features I want.

    


    Is it even possible to capture a webpage with audio from the command line ?
If so, how should I output this to RTMP ?

    


    Thanks !

    


  • Stream mjpeg with ffserver

    28 janvier 2016, par user3115426

    I am trying to feed my ffserver with single .jpeg file by mjpg and play it on VLC player. I am sending my image file by command :

    ffmpeg -r 0.33 -i test.jpg http://localhost:8090/feed1.ffm

    My ffserver configuration looks like this :

    Port 8090
    BindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 10
    MaxBandwidth 100000
    CustomLog -

    <feed>
    File /tmp/feed1.ffm
    FileMaxSize 10M
    ACL allow 127.0.0.1
    </feed>

    <stream>
    Feed feed1.ffm
    Format mjpeg
    VideoSize 640x480
    VideoFrameRate 10
    VideoBitRate 2000
    VideoQMin 1
    VideoQMax 10
    Noaudio
    </stream>

    When I open stream in VLC it disappears quickly, but when I turn on ’loop’ option in VLC I can see that there is a frame. My goal is to have continuously stream without any loop options. What I am doing wrong ? Do I have to change framerate or something else ?