advice on disabling translation functionality? #8
Replies: 4 comments
-
I have added a new option called To update the package from PYPI, you can use the following command: pip install openlrc -U
After updating, you can try out by running this code: lrcer = LRCer()
lrcer.run('./data/test.mp3', target_lang='en', skip_trans=True) Note that if you are transcribing Japanese or Chinese language, you may need to install additional |
Beta Was this translation helpful? Give feedback.
-
Thank you, the option is working now! You're amazing! |
Beta Was this translation helpful? Give feedback.
-
Could we have an option to skip the language detection part too? Only because I am trying to speed things up so I can run this thousands of times :) And mine are always (95%) english :) |
Beta Was this translation helpful? Give feedback.
-
Small bug now - when skip_trans is set to True, the LRC file doesn't end up with the right name. Instead of "08_Ride On.mp3" creating "08_Ride On.lrc", with skip_trans=True, I get "08_Ride On_transcribed_optimized.lrc" |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am planning on running this on as many as 20,000 songs to create LRC files. But 95% of my songs are in English.
So I want to skip the language translation functionality.
Because this may take months to run, any savings will help. Even if translation is 10% of the time, that could save a week.
If I translate it all I may incur API fees about $250-400 by my calculations.
And I'd be doing that to translate english to english, lol
Maybe I'm being paranoid about the money, but I definitely want the speed-up of skipping the translation.
Is there an option or some modification I can make to disable it?
Beta Was this translation helpful? Give feedback.
All reactions