Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (60)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7477)

  • tile option in FFMPEG command result to black screenshot

    4 mars 2020, par sammax

    I am managing to create a screenshot using ffmpeg engine and it works fine when I am try to output one individual image

    ffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "scale=width:high"

    But when I try to create a multi-image (Thumbnail grid sheets) using tile option the output screenshot is empty black

    ffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "select=not(mod(n\,3000)),scale=320:240,tile=4x3"

    and here is what I want to achieve image

  • 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