Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9362)

  • avformat/hlsenc : move old_filename free operation earlier

    11 mai 2017, par Steven Liu
    avformat/hlsenc : move old_filename free operation earlier
    

    Suggested-by : Aaron Levinson <alevinsn@aracnet.com>
    Reviewed-by : Aaron Levinson <alevinsn@aracnet.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c
  • 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));
  • avformat/utils : free AVStream.codec properly in free_stream()

    21 avril 2017, par Aaron Levinson
    avformat/utils : free AVStream.codec properly in free_stream()
    

    Fixes memory leaks.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/utils.c