Giter VIP home page Giter VIP logo

bulk_transcribe_youtube_videos_from_playlist's People

Contributors

dicklesworthstone avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

bulk_transcribe_youtube_videos_from_playlist's Issues

Need Guidance - Deploying Whisper JAX and Cloud Service Selection

Issue:
Hi everyone,

I hope you're doing well.
Challenge 1: Choosing a Cloud Service
I'm new to deploying applications, and I'm uncertain about which cloud platform would be the most suitable for hosting Whisper JAX. Any recommendations or advice for someone starting out?

Your insights and expertise would be incredibly helpful. Looking forward to learning from the community!

Thank you,
Sky

support the transcription of episodes

Can you support the transcription of episodes, such as providing an mp3 download address, or in the folder there is a local file of the mp3, thank you in advance!

Cuda detection

Thank you for your great work. The quality of the transcriptions is great. I just wanted to share with you that the cuda detection did not work for me because it is based on looking for an installation that used Anaconda. I modified your function so that it would find cuda installations in some common situations, such as mine.

def get_cuda_toolkit_path():
# Check for common CUDA toolkit installation directories
common_paths = [
'/usr/local/cuda/bin',
'/usr/local/cuda-*/bin',
]

# Look for nvcc in common paths
for path in common_paths:
    cuda_paths = glob.glob(path)
    if cuda_paths:
        # Return the first matching path
        return cuda_paths[0]

# As a fallback, use the 'which' command to find the nvcc binary
nvcc_path = os.popen('which nvcc').read().strip()
if nvcc_path:
    # Return the directory containing the nvcc binary
    return os.path.dirname(nvcc_path)

# If the CUDA toolkit path is still not found, return None
return None

Error: No module named 'faster_whisper'

Amateur question: When I execute the script ("python3 bulk_transcribe_youtube_videos_from_playlist.py"), I get the following error:
No module named 'faster_whisper'

Tried installing it via "python3 -m pip install faster_whisper"

Still module cannot be found. What am I missing? Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.