Recherche avancée

Médias (91)

Autres articles (77)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7525)

  • How to include FFMPEG functions in android code

    4 janvier 2013, par TharakaNirmana

    My aim is to build a video file by combining an audio clip and an image for android.

    Using cygwin, I was able to create the video by combining an image and an audio clip as follows :

    ffmpeg -i allmapeople.mp3 -i Penguins.jpg video_finale.mpg

    But I want this to happen in the mobile device within my eclipse project.

    Please tell me how this should be done.....

  • avcodec/mips/aaccoder_mips : Sync with the generic code

    13 octobre 2015, par Nedeljko Babic
    avcodec/mips/aaccoder_mips : Sync with the generic code
    

    This patch fixes build of AAC encoder optimized for mips that was broken due
    to some changes in generic code that were not propagated to the optimized code.

    Also, some functions in the optimized code are basically duplicate of functions
    from generic code. Since they do not bring enough improvement to the optimized
    code to justify their existence, they are removed (which improves
    maintainability of the optimized code).

    Optimizations disabled in 97437bd are enabled again.

    Signed-off-by : Nedeljko Babic <nedeljko.babic@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/aaccoder_mips.c
  • 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;&#xA;

    {&#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;