#πŸ”’ Hi Guys! Can Anyone help me out

14 messages Β· Page 1 of 1 (latest)

final cedar
#

I want help regarding Whisper model in python which is used to convert speech to text, i have tried all the things correctly but still there is a error saying File not found . #help

formal wigeonBOT
#

@final cedar

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

languid wedge
real forge
#

!code

formal wigeonBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

real forge
#

!trace

formal wigeonBOT
#
Traceback

Please provide the full traceback for your exception in order to help us identify your issue.
While the last line of the error message tells us what kind of error you got,
the full traceback will tell us which line, and other critical information to solve your problem.
Please avoid screenshots so we can copy and paste parts of the message.

A full traceback could look like:

Traceback (most recent call last):
  File "my_file.py", line 5, in <module>
    add_three("6")
  File "my_file.py", line 2, in add_three
    a = num + 3
        ~~~~^~~
TypeError: can only concatenate str (not "int") to str

If the traceback is long, use our pastebin.

final cedar
#

import whisper

model = whisper.load_model("turbo")
result = model.transcribe("Carousel Dreams - The Soundlings.mp3")
print(result["text"])

formal wigeonBOT
#

Hey @final cedar!

It looks like you're trying to paste code into this channel.

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:
```py
print('Hello, world!')
```

This will result in the following:

print('Hello, world!')```
You can **edit your original message** to correct your code block.
final cedar
#

There is a package in Whisper called ffmpeg , i cant install it and in unable to understand how to do it

real forge
#

What error do you get? Paste the full message

formal wigeonBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.