
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (47)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (7753)
-
Download highest quality audio from YouTube using youtube-dl
3 juin 2020, par darvastI'm using this command :



youtube-dl -f bestaudio --extract-audio --audio-format "opus" --add-metadata -o "%(playlist_index)s-%(title)s.%(ext)s" "https://www.youtube.com/playlist?list=OLAK5uy_lWRq5MhPNthDDe1nYXtlekDA40wtrpKE0"




Here's the available streams :



[info] Available formats for 6t1dErgAglk:
format code extension resolution note
249 webm audio only tiny 58k , opus @ 50k (48000Hz), 416.34KiB
250 webm audio only tiny 72k , opus @ 70k (48000Hz), 516.52KiB
140 m4a audio only tiny 130k , m4a_dash container, mp4a.40.2@128k (44100Hz), 1.06MiB
251 webm audio only tiny 131k , opus @160k (48000Hz), 923.79KiB
278 webm 140x144 144p 32k , webm container, vp9, 25fps, video only, 159.74KiB
160 mp4 140x144 144p 54k , avc1.4d400b, 25fps, video only, 278.62KiB
242 webm 232x240 240p 71k , vp9, 25fps, video only, 321.29KiB
134 mp4 350x360 360p 96k , avc1.4d4015, 25fps, video only, 303.75KiB
133 mp4 232x240 240p 124k , avc1.4d400c, 25fps, video only, 651.46KiB
243 webm 350x360 360p 126k , vp9, 25fps, video only, 545.77KiB
135 mp4 466x480 360p 174k , avc1.4d401e, 25fps, video only, 534.97KiB
244 webm 466x480 360p 215k , vp9, 25fps, video only, 1003.20KiB
136 mp4 698x720 720p 305k , avc1.4d401f, 25fps, video only, 942.76KiB
137 mp4 1048x1080 1080p 494k , avc1.640020, 25fps, video only, 1.49MiB
247 webm 698x720 720p 593k , vp9, 25fps, video only, 1.97MiB
248 webm 1048x1080 1080p 768k , vp9, 25fps, video only, 3.81MiB
18 mp4 350x360 360p 213k , avc1.42001E, 25fps, mp4a.40.2@ 96k (44100Hz), 1.73MiB
22 mp4 698x720 720p 242k , avc1.64001F, 25fps, mp4a.40.2@192k (44100Hz) (best)




When I run the above command it seems to be converting m4a to opus : https://prnt.sc/st2l8u



I'm wondering why it's doing that instead of getting it from the webm container ?


-
looking for gui based HLS downloader based on ffmpeg & or better download code [closed]
26 mai 2020, par wahiduzzaman sagarcurrently using ffmpeg for downloading HLS video (m3u8). the code i am using is



ffmpeg -i "www.videoURL.com" -c copy "name name".mp4




its works fine but the problem is it takes a bit more time since I also have to give each video a name where other downloader (video downloadhelper) can automatically get a name from URL. video downloadhelper crashing/stopping a lot so not using it now. also it cant boost speed so i have to run 10-12 simultaneous ffmpeg download with command prompt open to keep the bandwidth use high. which is cluttering the screen and being hard to keep track of.
so is there any better code for faster download or maybe GUI downloader with some feature like auto naming, multi download, etc


-
how download m3u8 in chunks using ffmpeg ?
9 mai 2020, par relidonI'm trying to convert
m3u8
tomp4
and I found the following method that works


ffmpeg -i 'https://....m3u8' -bsf:a aac_adtstoasc \
 -vcodec copy -c copy -crf 50 output.mp4




The end result, however, is too big for me to drag into an external hard drive.



I also tried writing directly to the hard drive
/Volumes/2TR/output.mp4
but the end result is the same - the file is too big, the operation fails.


I noticed that if I terminate the operation at any point, the
output.mp4
file works perfectly, but that it's not the full video (perfect). If the video is one hour and I just want 30 minutes of it I can terminate theffmpeg
operation at that point.


So I'm wondering whether there's a way for
ffmpeg
to download the contents in two parts,output-part1.mp4
andoutput-part2.mp4
?