Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (59)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10107)

  • fluent-ffmpeg converting MKV to MP4 gives error "Conversion Failed"

    19 juillet 2019, par Jackie

    I am trying to use fluent-ffmpeg to stream a video from disk, this video is a MKV file. I am trying to transcode this video to MP4 on my NodeJS server and stream it to the client. However, I keep getting the error code 1: Conversion failed! when I try to transcode the MKV file to MP4. Does anyone know why I am getting this error ?

    My code works when I try to transcode a MP4 file to MKV (matroska), but it does not work the other way around.

    Here is the code I am using :

    app.get('/video123', function (req, res) {
     var path = 'assets/sample2.mkv';
     ffmpeg(path)
       .format('mp4')
       .on('end', function () {
         console.log('file has been converted successfully');
       })
       .on('progress', function (progress) {
         console.log('Processing: ' + progress.frames + 'frames done');
       })
       .on('error', function (err) {
         console.log('an error happened: ' + err.message);
       })
       .pipe(res, { end: true });
    });
  • FFmpeg | "HTTP 404 not Found" "Failed to open an initialization section in playlist 0" "Error when loading first fragment, playlist 0"

    5 août 2020, par jas_123

    For some reason FFmpeg cant play the video I want. Im making a Discord bot with youtube-dl. My FFmpeg options are FFMPEG_OPTIONS = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}

    


    Is there anything I need to change in my options ? Also, this only happens when youtube-dl says Downloading MPD manifest. Everything else works until that shows up.

    


  • FFmpeg "HTTP 404 not Found" "Failed to open an initialization section in playlist 0" "Error when loading first fragment, playlist 0"

    6 août 2020, par jas_123

    For some reason FFmpeg cant play the video I want. Im making a Discord bot with youtube-dl. My FFmpeg options are FFMPEG_OPTIONS = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}

    


    Is there anything I need to change in my options ? Also, this only happens when youtube-dl says Downloading MPD manifest. Everything else works until that shows up.