Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (22)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le 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 (3938)

  • Download highest quality audio from YouTube using youtube-dl

    3 juin 2020, par darvast

    I'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 sagar

    currently 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 relidon

    I'm trying to convert m3u8 to mp4 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 the ffmpeg 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 and output-part2.mp4 ?