Recherche avancée

Médias (91)

Autres articles (64)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12893)

  • FFMPeg for Windows with ZeroMQ

    31 mai 2021, par jvhang

    Is it possible to build FFMPeg for Windows 10 and include ZeroMQ ? None of the builds I can find have it included but it seems like it is part of non-Windows builds.

    


    C++ is not my usual language so my hunch is that there may be Windows specific things blocking its inclusion but I am not certain.

    


  • publish chromium rendered view to ffmpeg/libav

    21 février 2014, par user3337537

    I would like to publish chromium rendered view to ffmpeg/libav stream instead of showing it on the operating window system.
    Also plugins like flash should be included in the stream. I don't know much about chromium rendering yet.

    I know there are command like "ffmpeg -f x11grab -s 1280x720" ... But i would like to do this right from chrome to publish mutliple tabs at the same time.

    How would you estimate the development effort for that ?

  • FFMPEG Command failing in script

    12 octobre 2016, par Jerry

    I have a nodejs script/server that is running an ffmpeg screenshot command every 30 seconds. I have a list of files that I want to screenshot every loop, and I simply feed it into the command like so :

    exec("ffmpeg -ss 00:00:01 -i /secondary/videos/"+file+" -y -vframes 1 -q:v 2 /secondary/snapshots/"+camera_id+".jpg && scp /secondary/snapshots/"+camera_id+".jpg user@host:/path/to/site/img/snapshots/ && rm /secondary/snapshots/"+camera_id+".jpg", function(err,stdo,stde){
    });

    file is an absolute path to an flv file such as "vid123.flv". camera_id is an id from a local database of my home security cameras, so they’re numbered 1-100. An example command I’m trying to run is this :

    exec("ffmpeg -ss 00:00:01 -i /secondary/videos/vid123.flv -y -vframes 1 -q:v 2 /secondary/snapshots/1.jpg && scp /secondary/snapshots/1.jpg user@host:/path/to/site/img/snapshots/ && rm /secondary/snapshots/1.jpg", function(err,stdo,stde){
    });

    However, when I run this in node, I get an ffmpeg error saying "/secondary/videos/vid123.flv : No such file or directory". If I run the same command in the terminal, I get the correct/expected results - a snapshot/frame at 00:00:01 is taken, saved to a jpg in /secondary/snapshots/, scp’d to another server, and removed from the /secondary/snapshots directory.

    I’m raking my brain right now and I can’t figure out why the different results for the same command.

    Any help/tips are appreciated !