Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: How To Download YouTube Video In Mp3?  (Read 3284 times)

0 Members and 1 Guest are viewing this topic.

juliejames

    Topic Starter


    Newbie

    • Experience: Beginner
    • OS: Unknown
    How To Download YouTube Video In Mp3?
    « on: August 16, 2018, 04:43:45 AM »
    How can you download a YouTube video to your device in the mp3 format?

    Mark.



      Adviser
    • Forum Regular
    • Thanked: 67
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 10
    Re: How To Download YouTube Video In Mp3?
    « Reply #1 on: August 16, 2018, 05:21:19 PM »
    get it onto your PC first, then use a reputable conversion program.
    (by the way - MP3 is just for audio)

    2x3i5x



      Expert
    • Thanked: 134
    • Computer: Specs
    • Experience: Familiar
    • OS: Windows 10
    Re: How To Download YouTube Video In Mp3?
    « Reply #2 on: August 16, 2018, 06:47:44 PM »
    One of the many websites to download youtube video into mp3 file so you get the audio: https://www.ytbmp3.com

    Save to your pc and move to whatever device you are going to to listen to it on.

    nil

    • Global Moderator


    • Intermediate
    • Thanked: 15
      • Experience: Experienced
      • OS: Linux variant
      Re: How To Download YouTube Video In Mp3?
      « Reply #3 on: August 20, 2018, 06:43:02 AM »
      If you are comfortable using your command line, you can also use youtube-dl and ffmpeg

      youtube-dl can download m4a audio with the "-f 140" option. youtube-dl guide: https://www.computerhope.com/issues/ch001724.htm

      then you can convert the m4a to mp3 with ffmpeg. download page: https://www.ffmpeg.org/

      for instance, to download as m4a:

      Code: [Select]
      youtube-dl -f 140 https://www.youtube.com/watch?v=Nv6qGhknKco
      then convert to mp3:

      Code: [Select]
      ffmpeg -i "Bach Cello Suite no 2. BWV 1008. Viola. Courante.-Nv6qGhknKco.m4a" -q:a 0 bach.mp3



      Do not communicate by sharing memory; instead, share memory by communicating.

      --Effective Go

      CaptainStark



        Rookie

        • Experience: Beginner
        • OS: Windows 10
        Re: How To Download YouTube Video In Mp3?
        « Reply #4 on: August 21, 2018, 09:53:23 PM »
        convert2mp3.net does the job.

        BC_Programmer


          Mastermind
        • Typing is no substitute for thinking.
        • Thanked: 1140
          • Yes
          • Yes
          • BC-Programming.com
        • Certifications: List
        • Computer: Specs
        • Experience: Beginner
        • OS: Windows 11
        Re: How To Download YouTube Video In Mp3?
        « Reply #5 on: August 22, 2018, 03:30:00 PM »
        One thing to be aware of with those types of sites is that they typically give low quality transcodes of the original audio stream. I'd say worse than ffmpeg, but realistically the site itself is probably using ffmpeg on the server-side to do the conversion, but with a much lower quality (To keep the site responsive and reduce server load).
        Personally, I've had this requirement before. In my case the solution I devised was to download the video file as an mp4 with a firefox extension (VideodownloadHelper) then extracted the audio from that video file with VLC. (Media->Convert/Save). Certainly more roundabout than ffmpeg.
        I was trying to dereference Null Pointers before it was cool.