Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (28)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9218)

  • 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