Recherche avancée

Médias (1)

Mot : - Tags -/école

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6536)

  • Using FFMPEG : How to do a Scene Change Detection by audio

    9 janvier 2021, par dantedel

    I have a video that has many scenes, within each scene there are several video cuts with and single unique narator.
I'm trying to split the video to individual scenes based on narator. So far only found only a way using select/scene to get timestamps based on scene video changes.

    


    Using FFMPEG : How to do a Scene Change Detection ? with timecode ?

    


    ffmpeg -i input.flv  \
       -filter:v "select='gt(scene,0.4)',showinfo" \
       -f null \
       - 2> ffout


    


    Is there an equivalent way to get the scene changes by examining changes in audio ?

    


  • ffmpeg with two input rtmp streams with overlay causing 5 sec delay

    13 juin 2019, par GoodStudent

    I’m using ffmpeg on merging two videos, using overlay taking input from two rtmp streams getting lag of 5 seconds in one of the videos in stream3 .

    Below is the command I’ve tried

    ffmpeg -i rtmp://stream1  -i rtmp://stream2  
          -filter_complex "[0:v]scale=1280:720;[1:v]scale=320:180[v1];[v0][v1]overlay=eof_action=pass[out1]"
          -map [out1]   -f flv   rtmp://stream3

    I’m expecting less than 1 sec lag in overlay as individual streams are getting less than 1 sec lag

  • Revision 5daef90efc : skip un-neccessary motion search in the first pass This patch allows the encode

    4 juin 2014, par Pengchong Jin

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    skip un-neccessary motion search in the first pass

    This patch allows the encoder to skip the
    un-neccessary motion search in the first pass. It
    calculates the error of the zero motion vector using
    the last source frame as reference and skips the
    further motion search in the first pass if the error
    is small.

    The encoding speedup of the first pass for slideshow
    videos is over 30%. Borg test shows the overall PSNR
    performance remain approximately the same (derf -0.009,
    hd 0.387, yt 0.021, stdhd 0.065). Individual clips may
    have either PSNR gain or loss. The worst PSNR perfomance
    is from yt set, with a PSNR loss of -1.1.

    Change-Id : I08b2ab110b695e4689573b2567fa531b6457616e