hayabhay / frogbase

Transform audio-visual content into navigable knowledge.
https://frogbase.dev
MIT License
781 stars 95 forks source link

Found a bug when transcribe an uploaded files #7

Closed Cate9021 closed 1 year ago

Cate9021 commented 2 years ago

bug

hayabhay commented 2 years ago

oops! Will fix!

zanymuzik commented 2 years ago

I was able to workaround by creating that directory manually

BitcoinVeneto commented 1 year ago

Hi, i had the same problem,

with the following code i solved, after line 22 in transcriber.py:

directory = self.name parent_dir = "local"

Create a save directory

    self.save_dir = LOCAL_DIR /  self.name
    #path = self.save_dir + "/" + "audio"
    # Path
    path = os.path.join(parent_dir, directory)
    if not os.path.exists(path):
          os.makedirs(path)

Thank you

hayabhay commented 1 year ago

Apologies for the delay. This should now be fixed. If this happens again, please raise another issue (#13)