Transcribe and Translate Audio with Whisper Using Ubuntu

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 47

  • @CaioTechLabs
    @CaioTechLabs 9 місяців тому +3

    The transcription and translation are very good, I'm from Brazil, and I watched this video with active subtitles (not UA-cam's automatic subtitles, which are pretty bad by the way), and the quality of the subtitles in Portuguese is excellent! If possible, you can put subtitles in Portuguese on all your videos that I will watch! I'm going to install Whisper on my Linux Mint now.

    • @techtimefly
      @techtimefly  9 місяців тому +1

      Thanks you for the feedback, it’s very helpful.

  • @gregorrick5142
    @gregorrick5142 16 днів тому +1

    I love the way you made this video. Especially the way you made mistakes and corrected them without cutting. Since I make the same mistakes constantly this is extremely helpful. I really mean it.

    • @techtimefly
      @techtimefly  15 днів тому

      @@gregorrick5142 i’m glad this was helpful

  • @TimothyHuey
    @TimothyHuey 10 місяців тому +1

    Great job! Your install went much better than mine. I wish I had seen this video before hand. Oh well, we both have functioning whisper now.

    • @techtimefly
      @techtimefly  10 місяців тому

      Glad it's working for you. It's cool to see what a tool like this can do.

  • @StephenWilds
    @StephenWilds Рік тому +5

    I didn't understand a bit of this. Fantastic video.

  • @arthurpizza
    @arthurpizza 6 місяців тому +1

    Whisper will work on any hardware. If you don't have a NPU or GPU, it will crunch that audio with your CPU. I've run it on a Raspberry Pi and the transcription speed was actually pretty impressive.

    • @techtimefly
      @techtimefly  6 місяців тому

      thanks, good to know you had success with a raspberry pi as well

  • @iraislandii5092
    @iraislandii5092 Рік тому +3

    Very interesting, please continue to make these videos.

  • @nouche30064
    @nouche30064 9 місяців тому +2

    Thank you so much, very informative 👍🙏

  • @alexriosdev
    @alexriosdev Рік тому +3

    Very easy to follow! GJ!

    • @techtimefly
      @techtimefly  10 місяців тому

      Thank you for the feedback, glad you found it easy to follow!

  • @john_colter
    @john_colter 8 місяців тому +1

    Really good walkthrough. Thanks!

    • @techtimefly
      @techtimefly  8 місяців тому

      i appreciate the feedback. glad it was helpful

  • @danilodasilvaborges396
    @danilodasilvaborges396 9 місяців тому +2

    Thank you very much!

    • @techtimefly
      @techtimefly  9 місяців тому

      no problem. glad to help

  • @twinesper
    @twinesper Місяць тому +1

    Great video! I was about to switch to Linux, I'm glad I saw this instead. I'll have too look into if there is a way to make a new version of Windows secure instead it seems.. This is too much for me.

    • @techtimefly
      @techtimefly  Місяць тому

      Appreciate the feedback. I'm glad this video was helpful. I hope to get back to making more soon.

  • @spectre-CA
    @spectre-CA 6 місяців тому +1

    excellent vidéo merci beaucoup sa marche bien

  • @owenwolf5000
    @owenwolf5000 6 місяців тому

    Nice vid 👍

  • @86williamyuan
    @86williamyuan 5 місяців тому +1

    great job, bro.

  • @cia.sorteiodecontos9654
    @cia.sorteiodecontos9654 5 місяців тому +1

    Thanks a lot dude

  • @johnmiglautsch4587
    @johnmiglautsch4587 7 місяців тому

    looks like everything is installed but when I they type 'whisper --version or --help' nothing happens - says command not found.
    X1:~$ whisper --version
    Command 'whisper' not found, did you mean:
    command 'whipper' from deb whipper (0.9.0-7build1)
    Try: sudo apt install
    X1:~$ whisper
    Command 'whisper' not found, did you mean:
    command 'whipper' from deb whipper (0.9.0-7build1)
    Try: sudo apt install
    I've been on Ubuntu about 15 years - installs are often challenging but rarely nothing happens

    • @techtimefly
      @techtimefly  7 місяців тому +2

      perhaps your python packages directory aren’t on your system path.
      Try adding your “python -m” to the beginning of any “whisper” commands
      Such as
      “python -m whisper -version”

    • @johnmiglautsch4587
      @johnmiglautsch4587 7 місяців тому

      @@techtimefly What does the -m do? Looks like its moving Python somewhere - 485 meg

    • @johnmiglautsch4587
      @johnmiglautsch4587 7 місяців тому

      @@techtimefly There are several directories updated today off the /home in .cache, .bin & .local. there is a Python3 and in there a whisper. To be honest, feel like deleting all of the new stuff.

    • @techtimefly
      @techtimefly  7 місяців тому +1

      @@johnmiglautsch4587 The “-m” just means that you’ll be using a python library.
      It doesn’t move anything.
      An example of this is using pip.
      When pip is on the path you can call it with simply
      “pip install ”
      When pip isn’t on the path you can call the script with the prefix
      “python -m pip install ”
      It’s possible it’s another issue but this would be the first thing i’d try.
      I hope that makes sense and is helpful.

    • @johnmiglautsch4587
      @johnmiglautsch4587 7 місяців тому

      @@techtimefly Thanks much - tried it and it ran a long time but still didn't find whisper. I deleted Python3 in .lib and whisper. Pip is still intact. I've installed plenty with Terminal - prefer it to Snap - but no one seems to have put up a line by line Whisper installation - which seems odd...

  • @thegames6391
    @thegames6391 Місяць тому

    after pip3 install torch
    i got :
    error: externally-managed-environment

    • @techtimefly
      @techtimefly  Місяць тому

      Hi, are you using Linux or WSL?
      I see this error because both of these systems come with python already installed and it's a warning so that you don't overwrite packages in the root python library on the system.
      2 options.
      1- ignore the warning and run the command again but add the "--break-system-packages" at the end. This will install the library in the root system packages for pip.
      2. (Recommended) install a virtual environment.
      I used to use the venv library but now I use mini-conda.
      docs.anaconda.com/miniconda/install/#quick-command-line-install
      I may make a video on it soon.

  • @gregvisioninfosoft
    @gregvisioninfosoft 8 місяців тому

    Does whisper work with lyrical songs? Or just spoken word?

    • @techtimefly
      @techtimefly  8 місяців тому

      It may be possible if the vocals are clear enough.

  • @DenzelleWalker
    @DenzelleWalker Рік тому +1

    Interesting stuff.

  • @pallawikumari9372
    @pallawikumari9372 10 місяців тому

    Can we convert audio directly while speaking without saving the audio file?

    • @techtimefly
      @techtimefly  10 місяців тому

      Not directly through the command line interface but maybe with some Python coding it may be possible.

  • @shakydolphin4125
    @shakydolphin4125 8 місяців тому +1

    Thanks!

  • @Lucasalastuey
    @Lucasalastuey 7 місяців тому +1

    I only subscribe for your spanish

  • @Bora_na_bora
    @Bora_na_bora 8 місяців тому

    Unfortunately, this is the path only for the Chosen Ones. Fortunately for ordinary people there is Buzz with UI.