
Recherche avancée
Autres articles (41)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (6928)
-
ismindex : Use the individual stream duration instead of the global one
3 octobre 2013, par Martin Storsjöismindex : Use the individual stream duration instead of the global one
The stream duration is used for calculating the duration of the
last fragment easily without manually parsing anything else than
the mfra/tfra atoms. When the global file duration was used
previously, the duration of the last fragment could end up wrong
if the streams weren’t equally long.Signed-off-by : Martin Storsjö <martin@martin.st>
-
Dump individual segment links of m3u8 file from FFFPEG/FFPROBE ?
22 janvier 2023, par Hemant patelI am working on android app, in which i need to read individual segments of remote M3U8 file and downlnlad each segment locally and create local m3u8 file. For thati want to parse m3u8 file and get download links for each segment. I saw that FFMPEG can eaisly download m3u8 file, and while downloading it prints each segment url.




I want to print ts file links in json format, and then dump thaose links to my download manager.


Please help.


I tried all answers from stackoverflow/google but did not find any thing working


-
Downloading individual songs from YouTube playlist [closed]
23 août 2024, par user26961371- 

- I've created a custom script using
yt-dlp
. - The script takes a single argument, which is the actual playlist URL.
- I'm using the following command :








yt-dlp --extract-audio --audio-format mp3 --yes-playlist -o "/Users/$USER/Desktop/%(id)s.%(ext)s" --embed-chapters $1



Try :
I've run the command with a valid playlist URL, but it's downloading each song from the playlist into a single MP3 file for each song. I want to download each song as an individual file, not the entire playlist in a single file 15 times.


Expectation :
I expect
yt-dlp
to download each song from the playlist as a separate MP3 file, rather than combining all songs into a single MP3 file for each song.

Context :
The issue is likely due to the use of the
--yes-playlist
option, which tellsyt-dlp
to treat the input as a playlist URL and download all songs in one go.
I've checked the official documentation foryt-dlp
, but I couldn't find a solution.

- I've created a custom script using