Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (21)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (6079)

  • is there any functional build of ffmpeg to android

    11 mai 2018, par 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

  • Ffmpeg - avio_open returns AVERROR -13

    10 septembre 2021, par 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.

    


  • Outputting file details using ffprobe in ffmpeg AWS Lambda layer

    17 février 2021, par 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