Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (38)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (5752)

  • FFMPEG Wipe transition one layer over another

    25 juillet 2021, par Dan Weaver

    How to reveal one layer over another with a wipe transition using FFMPEG ?

    


    enter image description here

    


    NOTE : this is not a slide transition. The top image stays in one position but is gradually revealed over time.

    


    I'd like a technique that can work for top layers with or without transparency and for images, videos or dynamically created sources, like showwavespic.

    


    I tried making a mask animation like so :

    


    enter image description here

    


    but alphamerge doesn't work as I expected it to and I can't find a blend mode that works with this type of mask.

    


    EDIT : The xfade filter was suggested but it doesn't seem to work with when source has transparency. It renders transparent areas black. Example with transparent source :

    


    enter image description here

    


    But xfade renders this :

    


    enter image description here

    


  • How concat files URL of S3 using Lambda, Ffmpeg

    4 juillet 2021, par Tính Ngô Quang

    I am trying to concat webm files into 1 file, Then upload file new video to S3
Using S3, ffmpeg/lambda-layer

    


    import subprocess
import shlex
import boto3

def lambda_handler(event, context):
    ffmpeg_cmd = "ffmpeg -safe 0 -f matroska concat"
    ffmpeg_cmd += " -i https://s3demo.s3.ap-northeast-1.amazonaws.com/archives/input/record/mask/ep_1.webm"
    ffmpeg_cmd += " -i https://s3demo.s3.ap-northeast-1.amazonaws.com/archives/input/record/mask/ep_2.webm"
    ffmpeg_cmd += " -c:v copy -af aresample=async=1:first_pts=0 -"

    command1 = shlex.split(ffmpeg_cmd)
    p1 = subprocess.run(command1, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    print(p1.stdout)
    print(p1.stderr)
    # resp = s3_client.put_object(Body=p1.stdout, Bucket=s3_source_bucket, Key=s3_destination_filename2)


    


    I get error message :

    


    


    concat : Read-only file system

    


    


    According to the article below, using directory storage but still the same error.
https://stackoverflow.com/a/47323443/2949104

    


    ffmpeg_cmd += " -vcodec copy -acodec copy /tmp/output.webm -y"


    


  • Encode and stream from Xbox 360 kinnect using ffmpeg

    17 juin 2015, par user3288346

    I want to live stream content obtained from Kinect onto my internal network.

    I have one physical machine which is my server and has ubuntu 14.04 on it. I connect remotely to it. I have installed ffmpeg and ffserver and can encode and stream stored video files on the server. However, I have a few problems when using the Xbox Kinect.

    I have xbox 360 kinect which I have attached through usb. I have followed this https://bitbucket.org/samirmenon/scl-manips-v2/wiki/vision/kinect, however I couldn’t get through the OpenCV part. When I run

    $ cmake-gui ..

    I get

    cmake-gui: cannot connect to X server

    I don’t have physical access to the machine. Probably, its due to accessing it remotely.

    When I do

    test@cloud-node-2:~/kinnect$ lsusb
    Bus 002 Device 006: ID 045e:02ae Microsoft Corp. Xbox NUI Camera
    Bus 002 Device 004: ID 045e:02b0 Microsoft Corp. Xbox NUI Motor
    Bus 002 Device 005: ID 045e:02ad Microsoft Corp. Xbox NUI Audio
    Bus 002 Device 003: ID 0409:005a NEC Corp. HighSpeed Hub
    Bus 002 Device 002: ID 0bda:0181 Realtek Semiconductor Corp.
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

    When I do

    test@cloud-node-2:~/kinnect$ ls -ltrh /dev/video*
    ls: cannot access /dev/video*: No such file or directory

    Therefore, I am not able to capture the video using ffmpeg. I have only begun to work on this. Can someone help me to guide through this ?