Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (28)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (4927)

  • How to record video across screens using FFmpeg on MacOS ?

    2 novembre 2018, par 郭德纲

    I’m developing a MacOS application for recording screens, and in some cases, it needs to do cross-screen recording.

    It records the screen by calling FFmpeg.

    Let’s say I have four screens, each 1920x1080, with a total resolution of 3840x2160.Is it possible to record the screen by passing a coordinate and size to FFmpeg ? Same effect as the picture below.
    enter image description here

  • ffmpeg creating multiple output videos, splitting on gt(scene,x)

    2 janvier 2021, par spitfire109

    I want to split one video up into multiple parts based on detecting the first frame of each shot, by select scene in ffmpeg.

    



    The following entry records the scene frames and creates a photo mosaic out of them. This indicates to me that the select portion is functional, but I want to use this to create many separate videos, each scene it's own video file.

    



    ffmpeg -i video.mpg -vf select='gt(scene\,0.2331)','scale=320x240,tile=1x100' -frames:v preview.png


    



    Thank you. I think I am close, and I am open to any solution.

    


  • ffmpeg creating multiple output videos, splitting on gt(scene,x)

    18 janvier 2013, par Ben Halpern

    I want to split one video up into multiple parts based on detecting the first frame of each shot, by select scene in ffmpeg.

    The following entry records the scene frames and creates a photo mosaic out of them. This indicates to me that the select portion is functional, but I want to use this to create many separate videos, each scene it's own video file.

    ffmpeg -i video.mpg -vf select='gt(scene\,0.2331)','scale=320x240,tile=1x100' -frames:v preview.png

    Thank you. I think I am close, and I am open to any solution.