Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (12833)

  • passing options in execFileSync fails for ffmpeg

    17 octobre 2018, par Amin Baig

    I am trying to write a small scripts to automate the creation of video files. I have it almost working but stuck at one part, following is my node js code :

    let str1 = "-c:v libvpx -i sourceVideos/a1.mkv -c:v libvpx -i sourceVideos/a2.mkv -c:v libvpx -i sourceVideos/a3.mkv";
    let str2 = "[1]setpts=PTS+5.00/TB[a2];[2]setpts=PTS+10.00/TB[a3];[0][a2]overlay[o2];[o2][a3]overlay";
    let outFile = 'validout.mp4';
    const masterStream = execFileSync('ffmpeg', [str1, '-filter_complex', str2, outFile]);

    console.log('All processing completed');

    The above code represents this ffmpeg command to create a video from multiple videos :

    ffmpeg -c:v libvpx -i sourceVideos/a1.mkv -c:v libvpx -i sourceVideos/a2.mkv -c:v libvpx -i sourceVideos/a3.mkv -filter_complex "[1]setpts=PTS+5.00/TB[a2];[2]setpts=PTS+10.00/TB[a3];[0][a2]overlay[o2];[o2][a3]overlay" validationout.mp4

    So I have placed the args in str2 and the options/inputs in str1. The problem is that when I pass the inputs with their options in str1 and place it in my execFileSync command it’s not parsed by the command. I have also tested for confirmation and if I pass the options in the following format it works in the node js script :

    //version 1 with separated arguments
    const masterStream = execFileSync('ffmpeg', ['-c:v', 'libvpx', '-i', 'sourceVideos/a1.mkv', '-c:v', 'libvpx', '-i', 'sourceVideos/a2.mkv', '-c:v', 'libvpx', '-i', 'sourceVideos/a3.mkv', '-filter_complex', str2, outFile]);

    My question is : how can I pass the options/inputs to the execFileSync in str1 so that they can be executed ?

  • No such filter - Error initializing complex filters - Invalid argument

    14 décembre 2020, par Aurelius Schnitzler

    My command is

    


    ffmpeg -y -i background.mp4 -i overlay.mp4 -filter_complex '[1:a:0]amerge=inputs=1[a];[1:v]colorkey=0x586689:0.1:0.1[ckout];[0:v][ckout]overlay=x=430:y=50[out]' -map "[out]" -map "[a]" neu.mp4


    


    I get

    


    [AVFilterGraph @ 000002b0b497b4e0] No such filter: '[1:a:0]amerge=inputs=1[a];[1:v]colorkey=0x586689:0.1:0.1[ckout];[0:v][ckout]overlay=x=430:y=50[out]'
Error initializing complex filters.
Invalid argument


    


    Why ?

    


  • avfilter/avfilter : always forward request frame in filter_activate_default

    22 juin, par Marton Balint
    avfilter/avfilter : always forward request frame in filter_activate_default
    

    Even if all inputs are blocked an activate callback should request a frame on
    some if its inputs if a frame is requested on any of its outputs.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/avfilter.c