Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (110)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (11400)

  • How to run bash script from NodeJS application correctly ?

    13 mars 2019, par z Eyeland

    I am running a node application that uses spawn child-process to start this script

    #!/bin/bash
    FILEPATH="$1"
    COMPRESSIONPATH="$2"
    ffmpeg -i $FILEPATH -vcodec h264 -acodec mp2 $COMPRESSIONPATH
    sudo rm $FILEPATH
    curl -H "Content-Type:application/json" -X GET
    http://localhost:3000/clovis/api/led

    The script never finishes. If the ffmpeg compression command takes long then x amount of time then the process just stops and holds the process. I cant tell so by using the command ps-ef. Is there another way to start bash scripts from NodeJS other then spawn ? Does the NodeJS child-process have a time limit ?

  • ffmpeg how to put color overlay over video

    13 mai 2020, par flieks

    I want to put a color overlay (blue, red or green or hex value) over a video giving it a Instagram filter like effect.

    



    I think it should be in the lines of :

    



    ffmpeg -i video.mp4 -i "red.png" -filter_complex "blend=all_mode='screen':all_opacity=0.7" output.mp4


    



    or maybe with all_mode=overlay

    



    But I get an error :

    



    First input link top parameters (SAR 0:1) do not match the corresponding second input link bottom parameters (SAR 1:1).


    



    I also tried with lutrgb=r=1.5, but that didn't give it a red color (it takes the red away).

    



    What am i doing wrong ?

    


  • ffmpeg how to put color overlay over video

    17 novembre 2015, par flieks

    I want to put a color overlay (blue, red or green or hex value) over a video giving it a Instagram filter like effect.

    I think it should be in the lines of :

    ffmpeg -i video.mp4 -i "red.png" -filter_complex "blend=all_mode='screen':all_opacity=0.7" output.mp4

    or maybe with all_mode=overlay

    But I get an error :

    First input link top parameters (SAR 0:1) do not match the corresponding second input link bottom parameters (SAR 1:1).

    I also tried with lutrgb=r=1.5, but that didn’t give it a red color (it takes the red away).

    What am i doing wrong ?