Recherche avancée

Médias (91)

Autres articles (67)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (4694)

  • FFmpeg v0.12 is not working for Angular 16

    30 septembre 2024, par Amrut Kumar

    Currently, I have tried integrating ffmpeg v0.12 for my angular 16 project. But it takes forever for the ffmpeg to load. It goes into infinite loop. My guess is that its unable to load the worker script due to incompatibility with Angular 16 dependencies and functionalities.
I have tried ffmpeg v0.12 in my angular 18 app and everything is working just fine. The same changes wont work for my angular 16 application.
To take a step further, I have downgraded ffmpeg version to 0.11 and its now working perfectly fine for my angular 16 app.
Have any of you faced similar issue as I have explained above ? If yes, what steps did you take to resolve it ?

    


    I tried loading ffmpeg v0.12 with angular 16 app and I was expecting it to load just fine as I was able to achieve this with angular 18 with totally similar code changes.

    


  • what are requirement for an online video converter [on hold]

    25 juin 2018, par soroush

    i want develop an online video converter by nodejs or golang.

    This service is capable of converting 100 videos simultaneously into parallel.
    How much hardware is required to have this capability ?

  • FFMPEG convert from mp3 to WAV invalid arguments

    21 novembre 2022, par Georgy

    My command is : -i testfile.mp3 out.wav

    


    Just simple convert on my website from one format to other, without any bitrates etc. But I have an error while trying convert

    


    [NULL @ 0x81a960] Unable to find a suitable output format for 'output/out.wav'
main.js:194 output/out.wav: Invalid argument
main.js:192 exit(1) called


    


    // input file params
var fileName;
var fileBuffer;

function timeToSeconds(time) {
    var parts = time.split(":");
    return parseFloat(parts[0]) * 60 * 60 + parseFloat(parts[1]) * 60 + parseFloat(parts[2]) + parseFloat("0." + parts[3]);
}

// create ffmpeg worker
var ffmpegWorker = getFFMPEGWorker();
var ffmpegRunning = false;

$('#convert').click(function() {
    // terminate existing worker
    if (ffmpegRunning) {
        ffmpegWorker.terminate();
        ffmpegWorker = getFFMPEGWorker();
    }
    ffmpegRunning = true;

    // display converting animation
    $("#converting").show();
    $("#error").hide();

    // hide download div
    $("#download").hide();

    // change download file name
    var fileNameExt = fileName.substr(fileName.lastIndexOf('.') + 1);
    var outFileName = fileName.substr(0, fileName.lastIndexOf('.')) + "." + getOutFormat();
    $("#downloadLink").attr("download", outFileName);
    $("#downloadLink").text(outFileName);

    var arguments = [];
    arguments.push('-i');
    arguments.push(fileName);
    switch (getOutFormat()) {
        case "mp3":
            arguments.push("-acodec");
            arguments.push("lib lame");
            arguments.push("out.mp3");
            break;
        case "ogg":
            arguments.push("-acodec");
            arguments.push("libvorbis");
            arguments.push("out.ogg");
            break;
        case "aac":
            arguments.push("-acodec");
            arguments.push("libfdk_aac");
            arguments.push("out.mp4");
            break;
        case "wma":
            arguments.push("-acodec");
            arguments.push("wmav1");
            arguments.push("out.asf");
            break;
        case "wav":
            arguments.push("out.wav");
            break;
    }

    ffmpegWorker.postMessage({
        type: "command",
        arguments: arguments,
        files: [
            {
                "name": fileName,
                "buffer": fileBuffer
            }
        ]
    });
});


    


    Build of FFMPEG is : ffmpeg version git-2013-11-21-e18f8f6 Copyright (c) 2000-2013 the FFmpeg developers

    


    Maybe someone has a fresh FFMPEG.js build ?

    


    Im trying to find some new build's but all to no avail.