Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (99)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8073)

  • Anomalie #4306 : Erreur détection code mal formé

    6 mars 2019, par jluc -

    décidément la balise code se rebelle. En pseudo html c’est :

    code 
       /onglet
    /code
    cadre
       $onglet2 = ($quoi == ’actifs’ ? ’plugins_actifs’ : ’admin_plugin’) ;Retour ligne automatique
    /cadre
    

    Ou sinon voir là : https://contrib.spip.net/ecrire/?exec=article&id_article=5117

  • Use correct iso code for swedish

    3 avril 2012, par Markus Nilsson

    m localization/messages_sv.js Use correct iso code for swedish Fixes #18

  • Error : ffmpeg exited with code 2 - Docker Container

    15 avril 2020, par Vincenzo Asta

    I created a Docker Container that when I run I get this error (Why do I get this error ? It works locally) :

    



    {&#xA;    "message": "Error: ffmpeg exited with code 2&#xA;    at ChildProcess.<anonymous> (/app/lib/node_modules/fluent-ffmpeg/lib/processor.js:182:22)&#xA;    at emitTwo (events.js:126:13)&#xA;    at ChildProcess.emit (events.js:214:7)&#xA;    at Process.ChildProcess._handle.onexit (internal/child_process.js:198:12)"&#xA;}&#xA;</anonymous>

    &#xA;&#xA;

    Below, the part of code where I get the error (in particular the execution goes into reject) :

    &#xA;&#xA;

    var ffmpeg = require(&#x27;fluent-ffmpeg&#x27;);&#xA;&#xA;module.exports = (sourcePath, outputPath, af, outputFormat="mp3") => {&#xA;    return new Promise((resolve, reject) => {&#xA;        let proc = new ffmpeg({ source: sourcePath, nolog: true });&#xA;        proc.audioQuality(0);&#xA;        proc.audioFilters(af);&#xA;        proc.setFfmpegPath(__dirname &#x2B; "/ffmpeg-20180325-5b31dd1-win64-static/bin/ffmpeg.exe");&#xA;        proc.toFormat(outputFormat).on(&#x27;end&#x27;, function () {&#xA;            resolve();&#xA;        })&#xA;        .on(&#x27;error&#x27;, function (err) {&#xA;            reject(err);&#xA;        })&#xA;            .saveToFile(outputPath);&#xA;    })&#xA;}&#xA;

    &#xA;&#xA;

    My Dockerfile :

    &#xA;&#xA;

    FROM node:8.11.1&#xA;&#xA;WORKDIR /app&#xA;&#xA;COPY package*.json /app/&#xA;&#xA;RUN npm install&#xA;&#xA;COPY . /app/&#xA;&#xA;EXPOSE 8000&#xA;&#xA;CMD [ "node", "app.js" ]&#xA;

    &#xA;&#xA;

    My package.json :

    &#xA;&#xA;

    {&#xA;  "name": "",&#xA;  "version": "1.0.0",&#xA;  "description": "",&#xA;  "main": "app.js",&#xA;  "author": "",&#xA;  "license": "ISC",&#xA;  "dependencies": {&#xA;    "express": "^4.16.4",&#xA;    "azure-storage": "^2.1.0",&#xA;    "crypto": "^0.0.3",&#xA;    "ffmpeg": "^0.0.4",&#xA;    "ffmpeg-normalize": "^1.3.0",&#xA;    "fluent-ffmpeg": "^2.1.2",&#xA;    "fs": "^0.0.1-security",&#xA;    "jmespath": "0.15.0",&#xA;    "mp3-duration": "^1.1.0",&#xA;    "striptags": "^3.1.1"&#xA;  }&#xA;}&#xA;

    &#xA;