
Recherche avancée
Autres articles (74)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (14347)
-
How to record a dash live stream in an encrypted mp4 format
8 février 2021, par VikralI want to record/download a live video. It's in a .mpd format. The video is protected with DRM, but I don't want to decrypt the video, instead of how to get an encrypted mp4 ? I have tried FFMPEG, youtube-dl, and streamlink,


FFMPEG


ffmpeg -i https://example.com/streaming/hds/live/master.mpd -codec copy encrypted_media.mp4


Error :
Error when loading first fragment, playlist 0.


Tried youtube-dl


youtube-dl https://example.com/streaming/hds/live/master.mpd


Error :
No Video Formats Found


And I also tried streamlink

streamlink https://example.com/streaming/hds/live/master.mpd best


Error :
Video is protected by DRM.


But Nothing worked. How can I record a dash live stream in encrypted mp4 format ?


-
avformat/Makefile : Remove false dependency of WebM DASH manifest muxer
7 avril 2020, par Andreas Rheinhardt -
MPEG DASH (MPD) to MP4 in Node.js ?
28 janvier 2024, par Hello WorldI am trying to convert streams to .mp4 files. I have successfully converted an HLS to MP4 using
fluent-ffmpeg
package on version 2.1.2. I did so with with the following code :

var ffmpegCommand = ffmpeg();
 ffmpegCommand
 .input(HLS FILE HERE)
 .inputOptions('-protocol_whitelist file,http,https,tcp,tls,crypto,data')
 .on("error", (err, stdout, stderr) => {
 console.log(err)
 let error = new Error(err.message)
 error.code = err.code || 'FILE_CONVERSION_M3U8_TO_MP3/UNKNOWN_ERROR';
 error.status = err.status || 500;

 console.log('An error occurred: ' + err.message, err, stderr);
 reject(error)
 })
 .on("end", () => {
 console.log(temporaryFilePath2)
 resolve(temporaryFilePath2);
 })
 .on('progress', function(progress) {
 console.log('progress: ' + (progress.percent || 0).toFixed(2) + '%。');
 progressGathering.push((progress.percent || 0).toFixed(2))

 if(progressGathering.length == 10 && progressGathering[9] == 0.00){
 let error = new Error("File is a live stream.")
 error.code = 'FILE_CONVERSION_M3U8_TO_MP3/LIVESTREAM_SUPPORT'
 error.status = 501

 ffmpegCommand.kill()
 reject(error)
 }
 })
 .inputOptions('-allowed_extensions ALL')
 .outputOptions("-c copy")
 .output(temporaryFilePath2)
 .run();

 setTimeout(() => {
 ffmpegCommand.kill();
 let error = new Error("The file selected was too large or the network was hanging. Conversion timeout.")
 error.code = 'FILE_CONVERSION_M3U8_TO_MP3/TIMEOUT'
 error.status = 599;
 reject(error)
 }, 300000) // 5 minutes



However, when I attempt something similar with a mpd file url in the input, I get several errors that are all the same :


ffmpeg exited with code 1: https://dash.akamaized.net/akamai/bbb_30fps/bbb_30fps.mpd: Invalid data found when processing input


Is this something fluent-ffmpeg can't handle ? If so, I would like to know another package that can accomplish this.