Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (52)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8732)

  • pngdec : add ability to check chunk CRC

    7 mars 2019, par Lynne
    pngdec : add ability to check chunk CRC
    

    By default now, if AV_EF_CRCCHECK or AV_EF_IGNORE_ERR are enabled the decoder
    will skip the chunk and carry on with the next one. This should make the
    decoder able to decode more corrupt files because the functions which decode
    individual chunks will very likely error out if fed invalid data and stop the
    decoding of the entire image.

    • [DH] libavcodec/pngdec.c
  • 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 ?