Advanced search

Medias (91)

Other articles (111)

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

    5 March 2010, by

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 January 2010, by

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation; Oggz-tools : outils d’inspection de fichiers ogg; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores;
    Binaires complémentaires et facultatifs flvtool2 : extraction / (...)

On other websites (12450)

  • Outputting file details using ffprobe in ffmpeg AWS Lambda layer

    17 February 2021, by Gracie

    I am trying to output the details of an audio file with ffmpeg using the ffprobe option. But it is just returning 'null' at the moment? I have added the ffmpeg layer in Lambda. can anyone spot why this is not working?

    



    const { spawnSync } = require("child_process");
const { readFileSync, writeFileSync, unlinkSync } = require("fs");
const util = require('util');
var fs = require('fs');
let path = require("path");

exports.handler = (event, context, callback) => {

    spawnSync(
        "/opt/bin/ffprobe",
        [
            `var/task/myaudio.flac`
        ],
        { stdio: "inherit" }
        );
};


    



    This is the official AWS Lambda layer I am using, it is a great prooject but a little lacking in documentation.

    



    https://github.com/serverlesspub/ffmpeg-aws-lambda-layer

    


  • Ffmpeg - avio_open returns AVERROR -13

    10 September 2021, by Tolga

    In my project, I am trying to save mp4 video from frames. I am demuxing video first and then decode and save the .mp4 file beside frames. However, this mp4 file is only playable from command line with ffplay. I am trying to play it from media player. After little bit search I found that, I need to remux it to mp4 file after encoding. The examples that I reference for my project are official ffmpeg example and leandromoreira's code. However, avio_open() parts returns -13 as error. I printed out with av_make_error_string(error, sizeof(error), response) and got Permission denied. When I look for that error in the error.h
there is no such an error defined.

    


  • is there any functional build of ffmpeg to android

    11 May 2018, by Rafael Lima

    I’ve searching the last 3 days for a usable API for android access ffmpeg.
    Since FFMpeg group doesn’t release an official lib for android I found several paralel projects trying to build it.

    So it brings me to my nightmare that is called compile.

    i’ve followed all these tutorials: https://trac.ffmpeg.org/wiki/CompilationGuide/Android

    And others found in different places. but none of them build

    NONE OF THEM IS LESS THAN 3 YEARS OLD

    Sorry for the caps, but it is frustrating... no ffmpeg build projects I found deal with nkd above 14 and google doesn’t keep in archive nkds older than that, so even if i agree with get all outdated libraries source i cant reproduce de compiler i cant download the same ndk...

    The only api i manage to download with a functional build of ffmpeg probably was compiled without some codecs, because on my tests i can only handle few types of videos

    ===============================================================

    The question is, does anyone know an actual, stable, project for building ffmpeg to android?

    I’m even willing to pay in order to get a working version of it