Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (50)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

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

Sur d’autres sites (10816)

  • avfilter/aeval : free input frame on error

    12 mai 2017, par Paul B Mahol
    avfilter/aeval : free input frame on error
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/aeval.c
  • 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));