Recherche avancée

Médias (91)

Autres articles (101)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5337)

  • FFmpeg not linked correctly ?

    11 mai 2014, par Aleksander Fimreite

    I’m trying to load and display a video using SDL, and FFmpeg.
    So far I’ve run into alot more trouble than any other libraries I’ve tried.
    Now I can run the program and see an almost black screen. BUT the problem is, if I uncomment any of the lines in the loadVideo(...) function, I will get a linker error.

    I’m using the files from "FFmpeg git-4cdea92 64-bit Dev", and the "FFmpeg git-4cdea92 64-bit Shared" to get the DLL-files. Located at the link :
    http://ffmpeg.zeranoe.com/builds/

    void loadVideo(string file) {
       //Initialize video
       //av_register_all();
       AVFormatContext *pFormatCtx;
       //if (avformat_open_input(&pFormatCtx, file.c_str(), NULL, NULL) != 0) {
           //printf("Unable to open video file '%s'!\n", file.c_str());
       //}
    }
  • Node.js ffmpeg download M3U8 URL as MP4

    9 mai 2017, par Lars Erik Storbukås

    I’ve installed ffmpeg.js using Node.js.

    I want to be able to give an URL as an argument (where the resource located at the URL is an M3U8 file), and download it as an MP4.

    With regular command line ffmpeg (not JavaScript ported), the command would be the following :

    ffmpeg -i http://example.com/file.m3u8 -c copy out.mp4

    I’ve tried the following, but it doesn’t work.

    var ffmpeg = require("ffmpeg.js");
    var fs = require("fs");

    var result = ffmpeg({
     arguments: ["-i", "http://example.com/file.m3u8", "-c", "copy", "out.mp4"],
    });

    fs.writeFileSync("out.mp4", Buffer(result));
  • Video conversion on different server than app server

    13 mars 2016, par yakuzafu

    I’ve got my application running on server A.

    When a user uploads a video via that application, the video should be transferred via FTP to another server B. I don’t know how to make something like this work :

    • User uploads a video (like .avi, .webm, .mkv)
    • Application puts it on the FTP server
    • FTP server converts that video to .mp4

    I’ve tried using FFmpeg on PHP, but it executes only on the server where the application is located, but I need it to run on the FTP server.

    How can I make it work like that ?