Page 8 of 60 FirstFirst ... 6789101858 ... LastLast
Results 71 to 80 of 594
  1. 17-05-2020  #71

    Superstar DJ

    Credits
    2426
    Join Date
    Jun 2011
    Location
    Under Administration
    Posts
    996
    Thanks Thanks Given 
    99
    Thanks Thanks Received 
    1,231
    Thanked in
    159 Posts
    I can not get this work on Windows 10 64bit or Windows 8.1 64bit and would like to know what the possible issues are. I've followed the instructions and still get this error.......
    'pip' is not recognized as an internal or external command,
    operable program or batch file.

    Can you please list instructions for how to use this on Linux/Ubuntu?
    Thanks.

  2. 17-05-2020  #72

    Executive Producer

    Credits
    3349
    Join Date
    Jun 2014
    Posts
    679
    Thanks Thanks Given 
    97
    Thanks Thanks Received 
    1,237
    Thanked in
    102 Posts
    Quote Originally Posted by NewAgeRipper View Post
    I can not get this work on Windows 10 64bit or Windows 8.1 64bit and would like to know what the possible issues are. I've followed the instructions and still get this error.......
    'pip' is not recognized as an internal or external command,
    operable program or batch file.

    Can you please list instructions for how to use this on Linux/Ubuntu?
    Thanks.
    This should fix the "pip" issue. https://www.youtube.com/watch?v=zYdHr-LxsJ0

  3. 17-05-2020  #73

    Superstar DJ

    Credits
    2426
    Join Date
    Jun 2011
    Location
    Under Administration
    Posts
    996
    Thanks Thanks Given 
    99
    Thanks Thanks Received 
    1,231
    Thanked in
    159 Posts
    Quote Originally Posted by djtayz View Post
    This should fix the "pip" issue. https://www.youtube.com/watch?v=zYdHr-LxsJ0
    I fixed it. It was actually a matter of not having certain options checked off in the custom installation before installing. Still want a method for Ubuntu/Linux though.

  4. 17-05-2020  #74

    Superstar DJ

    Credits
    2426
    Join Date
    Jun 2011
    Location
    Under Administration
    Posts
    996
    Thanks Thanks Given 
    99
    Thanks Thanks Received 
    1,231
    Thanked in
    159 Posts
    Not sure what this is about but after trying to convert a song it gives this and then just sits on a blinking cursor.

    C:\Users\zensh\Documents\vocal-removerV2>python inference.py --input Made Of Stone.mp3
    C:\Program Files\Python37\lib\site-packages\librosa\util\decorators.py:9: NumbaDeprecationWarning: An import was requested from a module that has moved location.
    Import requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.
    from numba.decorators import jit as optional_jit
    C:\Program Files\Python37\lib\site-packages\librosa\util\decorators.py:9: NumbaDeprecationWarning: An import was requested from a module that has moved location.
    Import of 'jit' requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.
    from numba.decorators import jit as optional_jit
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    And then I try running the pip install command again just to be sure and displays I'm still missing files.

    C:\Users\zensh\Documents\vocal-removerV2>pip install torch==1.3.0 torchvision==0.4.0 -f https://download.pytorch.org/whl/torch_stable.html
    Defaulting to user installation because normal site-packages is not writeable
    Looking in links: https://download.pytorch.org/whl/torch_stable.html
    Requirement already satisfied: torch==1.3.0 in c:\program files\python37\lib\site-packages (1.3.0+cu92)
    Requirement already satisfied: torchvision==0.4.0 in c:\program files\python37\lib\site-packages (0.4.0+cu92)
    Requirement already satisfied: numpy in c:\program files\python37\lib\site-packages (from torch==1.3.0) (1.18.4)
    Requirement already satisfied: pillow>=4.1.1 in c:\program files\python37\lib\site-packages (from torchvision==0.4.0) (7.1.2)
    Requirement already satisfied: six in c:\program files\python37\lib\site-packages (from torchvision==0.4.0) (1.14.0)
    Could not build wheels for torch, since package 'wheel' is not installed.
    Could not build wheels for torchvision, since package 'wheel' is not installed.
    Could not build wheels for numpy, since package 'wheel' is not installed.
    Could not build wheels for pillow, since package 'wheel' is not installed.
    Could not build wheels for six, since package 'wheel' is not installed.

    C:\Users\zensh\Documents\vocal-removerV2>
    Last edited by NewAgeRipper; 17-05-2020 at 23:20.

  5. 17-05-2020  #75

    Superstar DJ

    Credits
    28
    Join Date
    Jun 2012
    Location
    Vancouver
    Posts
    755
    Thanks Thanks Given 
    465
    Thanks Thanks Received 
    261
    Thanked in
    33 Posts
    Quote Originally Posted by NewAgeRipper View Post
    Not sure what this is about but after trying to convert a song it gives this and then just sits on a blinking cursor.

    C:\Users\zensh\Documents\vocal-removerV2>python inference.py --input Made Of Stone.mp3
    C:\Program Files\Python37\lib\site-packages\librosa\util\decorators.py:9: NumbaDeprecationWarning: An import was requested from a module that has moved location.
    Import requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.
    from numba.decorators import jit as optional_jit
    C:\Program Files\Python37\lib\site-packages\librosa\util\decorators.py:9: NumbaDeprecationWarning: An import was requested from a module that has moved location.
    Import of 'jit' requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.
    from numba.decorators import jit as optional_jit
    Quote Originally Posted by djtayz View Post
    Happened to me too. I wrote pip3 install numba==0.48.0 (or change it to 0.50.0) and I think that fixed it for me .
    djtayz's suggestion worked for me when I tried it. Maybe it'll help you as well.
    I should also mention that for whatever reason, for me anyway, MP3 files don't work, but wav or flac do.

  6. 17-05-2020  #76

    Superstar DJ

    Credits
    2426
    Join Date
    Jun 2011
    Location
    Under Administration
    Posts
    996
    Thanks Thanks Given 
    99
    Thanks Thanks Received 
    1,231
    Thanked in
    159 Posts
    Quote Originally Posted by ChrisCall View Post
    djtayz's suggestion worked for me when I tried it. Maybe it'll help you as well.
    I should also mention that for whatever reason, for me anyway, MP3 files don't work, but wav or flac do.
    OK so exactly how do you fix it? Sorry I'm still not sure how to apply the change.

  7. 18-05-2020  #77

    Superstar DJ

    Credits
    28
    Join Date
    Jun 2012
    Location
    Vancouver
    Posts
    755
    Thanks Thanks Given 
    465
    Thanks Thanks Received 
    261
    Thanked in
    33 Posts
    Quote Originally Posted by NewAgeRipper View Post
    OK so exactly how do you fix it? Sorry I'm still not sure how to apply the change.
    Yeah, I have no clue how any of this works either xD
    I think I just typed in pip3 install numba==0.48.0

  8. 18-05-2020  #78

    Executive Producer

    Credits
    3349
    Join Date
    Jun 2014
    Posts
    679
    Thanks Thanks Given 
    97
    Thanks Thanks Received 
    1,237
    Thanked in
    102 Posts
    Quote Originally Posted by ChrisCall View Post
    djtayz's suggestion worked for me when I tried it. Maybe it'll help you as well.
    I should also mention that for whatever reason, for me anyway, MP3 files don't work, but wav or flac do.
    I haven't tried with MP3s but sometimes it glitches with FLAC/WAV too, because of the naming. So instead of the original file name "Artist - Song Name" and etc. I simplify it to one word only. Maybe try that but I'm not sure if it would work for you.

  9. 19-05-2020  #79

    Superstar DJ

    Credits
    2426
    Join Date
    Jun 2011
    Location
    Under Administration
    Posts
    996
    Thanks Thanks Given 
    99
    Thanks Thanks Received 
    1,231
    Thanked in
    159 Posts
    Finally got it going. Takes hours to convert. Hopefully I can get a more powerful PC soon.

  10. 20-05-2020  #80

    Platinum Legend

    Credits
    2707
    Join Date
    Jun 2015
    Location
    Los Angeles
    Posts
    7,646
    Thanks Thanks Given 
    3,222
    Thanks Thanks Received 
    4,733
    Thanked in
    867 Posts
    Quote Originally Posted by NewAgeRipper View Post
    Finally got it going. Takes hours to convert. Hopefully I can get a more powerful PC soon.
    Did you leave it going overnight and how were the results?

Similar Threads

  1. Vocal Remover Plugin?
    By SonyMusic18 in forum Production & Technical Aid
    Replies: 2
    Last Post: 10-05-2017, 06:03

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •