
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (54)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6329)
-
Node.js ffmpeg download M3U8 URL as MP4
9 mai 2017, par Lars Erik StorbukåsI’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)); -
How to download m3u8 files using ffmpeg using ffmpeg-cli-wrapper in java ?
5 avril 2017, par user4550498I am able to download m3u8 chuncks in on cli using following command,
ffmpeg -i "URL of m3u8 file" "outputm3u8.m3u8"How can download this m3u8 chuncks using ffmpeg-cli-wrapper in java ?
-
youtube-dl download best quality and then convert to mp4 and mp3
31 mars 2017, par JoJotaI’m trying to download the best audio and video formats of a video with youtube-dl in python. After the download has finished youtube-dl should convert the video to mp4 and the audio to mp3 with the best video and audio quality. The original video and audio files should then get removed after the conversion is done.
Is it possible to do this with only one command or especially with a maximum of two downloads (best video and best audio) ?