Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (67)

  • 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

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

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

Sur d’autres sites (9117)

  • avformat/mspdec : Microsoft Paint (MSP) demuxer

    8 octobre 2020, par Peter Ross
    avformat/mspdec : Microsoft Paint (MSP) demuxer
    

    Signed-off-by : Peter Ross <pross@xvid.org>

    • [DH] Changelog
    • [DH] doc/general_contents.texi
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/mspdec.c
    • [DH] libavformat/version.h
  • Anomalie #3811 (Nouveau) : Sur le Wiki de Contrib = versionning apparent incorrect !

    24 juillet 2016, par YannX DYX

    Bonsoir,
    au passage /je rajoutais une suggestion sur le Carnet/ j’ai aperçu un soulignement pas exact lors de l’examen de versionning d’article :
    https://contrib.spip.net/ecrire/?exec=article&id_article=4088

    Voici le texte exact qui avait été rajouté :

    viser l’intégration de http://www.templatemo.com/tm-455-vi... (avec une sous-couche de mapping &lt ;code&gt ;.less&lt ;/code&gt ; pour faire correspondre les styles spipr/Z-core aux styles de Visual Admin)..
    

    L’image d’extrait prend en fait deux modifications : voir piece jointe...
    pour le lien [1]

    Serait-ce dû à la présence de la balise cachée .less!! dans le texte inséré ??

  • SIGSEGV from ffmpeg on Amazon Lambda

    1er août 2024, par Serge

    Trying out Amazon Lambda / nodejs 8. My goal is to launch ffmpeg, generate a short clip and upload it to S3 bucket.

    &#xA;&#xA;

    I created the function following the image resize tutorial. Edited the code to get output from simple linux commands like ls or cat /proc/cpuinfo - all works.

    &#xA;&#xA;

    Now, added the ffmpeg binary for i686 - ffmpeg static build by JohnVan Sickle (thanks !). Changed the code to launch simple ffmpeg command that is supposed to create sa 2-seconds small video clip.

    &#xA;&#xA;

    That fails, according to logs, with the signal SIGSEGV returned to the "close" event handler of child_process.spawn()

    &#xA;&#xA;

    As far as I understand, this could be caused by the ffmpeg binary incompatibility with the static build. Or by some mistake in my code.

    &#xA;&#xA;

    Several npm modules rely on the static builds from johnvansickle.com/ffmpeg and there are no such issues filed on their github. Maybe there's some other mistake I made ?

    &#xA;&#xA;

    Should I compile ffmpeg myself under Amazon Linux AMI amzn-ami-hvm-2017.03.1.20170812-x86_64-gp2 which is under the hood of AWS Lambda ?

    &#xA;&#xA;


    &#xA;&#xA;

    upd. Launched EC2 t2.micro instance from the same AMI, downloaded the same ffmpeg static build, and it works just fine from the command line. Now I doubt that it is a compilation issue.

    &#xA;&#xA;

    Also tried copying ffmpeg executable to /tmp/ffmpeg and chmod 755 just to make sure.&#xA;Running simple ffmpeg --help command via child_process.execSync() returns "Error : Command failed : /tmp/ffmpeg —help"

    &#xA;&#xA;


    &#xA;&#xA;
    const join = require(&#x27;path&#x27;).join;&#xA;const tmpdir = require(&#x27;os&#x27;).tmpdir;&#xA;const process = require(&#x27;process&#x27;);&#xA;const fs = require(&#x27;fs&#x27;);&#xA;const spawn = require(&#x27;child_process&#x27;).spawn;&#xA;const exec = require(&#x27;child_process&#x27;).exec;&#xA;&#xA;const async = require(&#x27;async&#x27;);&#xA;const AWS = require(&#x27;aws-sdk&#x27;);&#xA;const util = require(&#x27;util&#x27;);&#xA;&#xA;process.env[&#x27;PATH&#x27;] = process.env[&#x27;PATH&#x27;] &#x2B; &#x27;:&#x27; &#x2B; process.env[&#x27;LAMBDA_TASK_ROOT&#x27;];&#xA;&#xA;&#xA;const tempDir = process.env[&#x27;TEMP&#x27;] || tmpdir();&#xA;const filename = join(tempDir, &#x27;test.mp4&#x27;);&#xA;const s3 = new AWS.S3();&#xA;&#xA;&#xA;exports.handler = function(event, context, callback) {&#xA;  var dstBucket = srcBucket &#x2B; "resized";&#xA;  var dstKey  = "render-test.mp4";&#xA;&#xA;  async.waterfall([&#xA;    function transform(next) {&#xA;      var args = [&#xA;        &#x27;-filter_complex&#x27;,&#xA;        &#x27;"testsrc=r=25:s=640x480:d=3"&#x27;,&#xA;        &#x27;-an&#x27;,&#xA;        &#x27;-y&#x27;,&#xA;        &#x27;-hide_banner&#x27;,&#xA;        &#x27;-c:v&#x27;, &#x27;libx264&#x27;,&#xA;        filename,&#xA;      ];&#xA;&#xA;      console.log("Will launch ffmpeg");&#xA;      const childProcess = spawn(&#x27;ffmpeg&#x27;, args);&#xA;&#xA;      childProcess.on(&#x27;close&#x27;, function(e) {&#xA;        console.log(&#x27;ffmpeg close event: &#x27; &#x2B; JSON.stringify(arguments));&#xA;        next();&#xA;      });&#xA;&#xA;      console.log("After launched ffmpeg");&#xA;    },&#xA;&#xA;    function upload(next) {&#xA;      ...&#xA;    }&#xA;  ], function (err) {&#xA;    ...&#xA;  });&#xA;};&#xA;

    &#xA;