Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6075)

  • Merge commit ’3a0576702825423abecb32627c530dbc4c0f73bc’

    14 février 2014, par Michael Niedermayer
    Merge commit ’3a0576702825423abecb32627c530dbc4c0f73bc’
    

    * commit ’3a0576702825423abecb32627c530dbc4c0f73bc’ :
    h264 : store current_sps_id inside the current sps

    Conflicts :
    libavcodec/h264.c
    libavcodec/h264_ps.c

    The current_sps_id is not removed as it used in security related code.

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.c
    • [DH] libavcodec/h264.h
    • [DH] libavcodec/h264_ps.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;

  • avformat/avidec : add support for recognizing HEVC fourcc when demuxing

    24 août 2019, par Marton Balint
    avformat/avidec : add support for recognizing HEVC fourcc when demuxing
    

    Some security cams generate this, as well as some versions of VirtualDub and
    VLC so support for _reading_ such files is justified.

    Fixes ticket #7110.

    See also this discussion : https://patchwork.ffmpeg.org/patch/8744/

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/avidec.c
    • [DH] libavformat/riff.c
    • [DH] libavformat/riff.h