Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (96)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9254)

  • Running ffmpeg as a service ? [closed]

    28 août 2021, par Mangaku

    I'm looking to use ffmpeg to stream a loop video.

    


    I've create this service :

    


    Description=twitch
After=network.target remote-fs.target nss-lookup.target


[Service]
User=root
Restart=on-failure
RestartSec=30
ExecStart=/home/ffmpeg/launch-stream.sh
KillSignal=SIGTERM

[Install]
WantedBy=multi-user.target


    


    Running this script :

    


    #
# Copyright (C) Mangaku

ffmpeg -nostdin -re -stream_loop -1 -i kittens.mp4 -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k -f flv rtmp://blablabla


    


    But i'm still facing (code=exited, status=1/FAILURE)

    


    Any ideas ?

    


  • fate : Allow overriding what targets to make for running the tests

    27 novembre 2023, par Martin Storsjö
    fate : Allow overriding what targets to make for running the tests
    

    This can be useful if doing testing of uncommon CPU extensions by
    running tests with QEMU (by configuring with e.g.
    "target_exec=qemu-aarch64"), by only running the checkasm tests,
    to get a reasonable test coverage without excessive test runtime.

    For such a config, setting fate_targets="fate-checkasm fate-cpu"
    can be a good tradeoff.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] doc/fate_config.sh.template
    • [DH] tests/fate.sh
  • Install graphicsmagik and ffmpeg for nodeJS application running as docker container

    25 septembre 2017, par user3142695

    I am deploying a nodeJS application (which is based on meteorJS and build with meteor build) to a docker container on my ubuntu 16.04 server.
    My application needs graphicsmagick and ffmpeg.
    As far as I know, the ffmpeg should be in the libav-tools package.

    My question is how do I get those two needed packages into my application running as docker container ?

    I think it is wrong to install them via apt-get graphicsmagick on the server itself, right ?

    For this nodeJS application I’m using this Dockerfile to create a docker image :

    FROM node:4.8-slim

    # Copy the application files
    COPY . /

    # Set required environment variables
    ENV NODE_ENV production
    ENV MONGO_URL mongodb://mongo:27017/
    ENV ROOT_URL http://localhost
    ENV PORT 80
    EXPOSE 80

    # Download the required packages for production
    RUN (cd programs/server &amp;&amp; npm install --silent)

    # Make the application run when running the container
    CMD ["node", "main.js"]

    My application uses this package.json :

    {
     ...
     "dependencies": {
       ...
       "ffmpeg": "0.0.4",
       "fluent-ffmpeg": "^2.1.2",
       "gm": "^1.23.0",
       ...
     }
    }

    Running npm install should add gm and ffmpeg, but I think I need those packages installed in the docker container itself.