kotritrona / osumapper

An automatic beatmap generator using Tensorflow / Deep Learning.
Apache License 2.0
419 stars 58 forks source link

Setup Problems #9

Open cakiya opened 5 years ago

cakiya commented 5 years ago

ModuleNotFoundError Traceback (most recent call last)

in 1 import import_ipynb 2 import os, re, time ----> 3 from osureader import * 4 5 GLOBAL_VARS["ffmpeg_path"] = "C:\\ffmpeg\\bin\\ffmpeg.exe"; ~\3D Objects\Osu Mapper\ipynb\osureader.py in ----> 1 import re, os, subprocess, json, soundfile 2 import numpy as np 3 4 workingdir = os.path.dirname(os.path.abspath(__file__)); 5 os.chdir(workingdir); ModuleNotFoundError: No module named 'soundfile' # # # # # # # (the code thing in the text editor of github dont work so the #s are spacing from the code) i assume that this is because osureader.py doESNT EVEN DEFINE SOUNDFILE?? idk man pls help I installed all reqs by pip except jupyter which came from anaconda.
kotritrona commented 5 years ago

you need to run "pip install soundfile"

but you are right, I should make installation more clear, like using requirements.txt which I didn't learn back at that time

kotritrona commented 5 years ago

I added an installation script, please check if it works

cakiya commented 5 years ago

I added an installation script, please check if it works

sorry but. . . how do i use an installation script?

big noob hear only know how to click circles and scam people in rotmg

kotritrona commented 5 years ago

well just run the install.bat file

cakiya commented 5 years ago

well just run the install.bat file

one error:

Could not find a version that satisfies the requirement tensorflow==1.12.0 (from -r requirements.txt (line 5)) (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 2.0.0a0) No matching distribution found for tensorflow==1.12.0 (from -r requirements.txt (line 5))

cool! now time to beg for help

kotritrona commented 5 years ago

it's because you have python 3.7, which old versions of tensorflow did not support python 3.5 or 3.6 should work

cakiya commented 5 years ago

it's because you have python 3.7, which old versions of tensorflow did not support python 3.5 or 3.6 should work

oh god

Building wheel for gast (setup.py) ... error Complete output from command C:\Users\xcake\Anaconda3\python.exe -u -c "import setuptools, tokenize;file='C:\Users\xcake\AppData\Local\Temp\pip-install-vzjtiipv\gast\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" bdist_wheel -d C:\Users\xcake\AppData\Local\Temp\pip-wheel-wcw91d_q --python-tag cp36: usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: -c --help [cmd1 cmd2 ...] or: -c --help-commands or: -c cmd --help

error: invalid command 'bdist_wheel'


Failed building wheel for gast Running setup.py clean for gast Building wheel for termcolor (setup.py) ... error Complete output from command C:\Users\xcake\Anaconda3\python.exe -u -c "import setuptools, tokenize;file='C:\Users\xcake\AppData\Local\Temp\pip-install-vzjtiipv\termcolor\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" bdist_wheel -d C:\Users\xcake\AppData\Local\Temp\pip-wheel-tnf8rl_6 --python-tag cp36: usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: -c --help [cmd1 cmd2 ...] or: -c --help-commands or: -c cmd --help

error: invalid command 'bdist_wheel'


Failed building wheel for termcolor Running setup.py clean for termcolor Building wheel for absl-py (setup.py) ... error Complete output from command C:\Users\xcake\Anaconda3\python.exe -u -c "import setuptools, tokenize;file='C:\Users\xcake\AppData\Local\Temp\pip-install-vzjtiipv\absl-py\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" bdist_wheel -d C:\Users\xcake\AppData\Local\Temp\pip-wheel-leom3hkv --python-tag cp36: usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: -c --help [cmd1 cmd2 ...] or: -c --help-commands or: -c cmd --help

error: invalid command 'bdist_wheel'


Failed building wheel for absl-py Running setup.py clean for absl-py Failed to build gast termcolor absl-py Installing collected packages: SoundFile, pandas, gast, protobuf, grpcio, termcolor, keras-preprocessing, astor, markdown, tensorboard, keras-applications, absl-py, tensorflow Found existing installation: pandas 0.24.2 Uninstalling pandas-0.24.2: Successfully uninstalled pandas-0.24.2 Running setup.py install for gast ... done Running setup.py install for termcolor ... done Running setup.py install for absl-py ... done

xcake is the user

ummmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

kotritrona commented 5 years ago

hmmmm... let me make a new environment and test this

kotritrona commented 5 years ago

hmmm.. I can install it just fine maybe you can refer to this stackoverflow https://stackoverflow.com/questions/26664102/why-can-i-not-create-a-wheel-in-python

actually I think installing tensorflow installs the wheel package itself, maybe it is something in your memory causing conflicts, so it cannot successfully install you can try deleting all python processes in task manager, then you can make a new environment in anaconda (environments > create, python 3.6), so you don't have to uninstall python 3.7

cakiya commented 5 years ago

hmmm.. I can install it just fine maybe you can refer to this stackoverflow https://stackoverflow.com/questions/26664102/why-can-i-not-create-a-wheel-in-python

actually I think installing tensorflow installs the wheel package itself, maybe it is something in your memory causing conflicts, so it cannot successfully install you can try deleting all python processes in task manager, then you can make a new environment in anaconda (environments > create, python 3.6), so you don't have to uninstall python 3.7

ive got normal python and anaconda's python installed would that cause issues?

well i did what you said and running step one:


ModuleNotFoundError Traceback (most recent call last)

in 1 import os, re, time ----> 2 from osureader import * 3 4 GLOBAL_VARS["ffmpeg_path"] = "C:\\ffmpeg\\bin\\ffmpeg.exe"; 5 # or we can add ffmpeg path to PATH environment variable and, ~\3D Objects\Osu Mapper\ipynb\osureader.py in ----> 1 import re, os, subprocess, json, soundfile 2 import numpy as np 3 4 workingdir = os.path.dirname(os.path.abspath(__file__)); 5 os.chdir(workingdir); ModuleNotFoundError: No module named 'soundfile' back to square one lol
kotritrona commented 5 years ago

hmmmm.. add a new block in the notebook, then run !install.bat see what happens

cakiya commented 5 years ago

hmmmm.. add a new block in the notebook, then run !install.bat see what happens

new block? whats that lol

kotritrona commented 5 years ago

new cell in notebook

cakiya commented 5 years ago

new cell in notebook

C:\Users\xcake\3D Objects\Osu Mapper\ipynb>pip install -r requirements.txt Requirement already satisfied: numpy==1.16.2 in c:\users\xcake\anaconda3\lib\site-packages (from -r requirements.txt (line 1)) (1.16.2) Requirement already satisfied: SoundFile==0.10.2 in c:\users\xcake\anaconda3\lib\site-packages (from -r requirements.txt (line 2)) (0.10.2) Requirement already satisfied: matplotlib==3.0.3 in c:\users\xcake\anaconda3\lib\site-packages (from -r requirements.txt (line 3)) (3.0.3) Requirement already satisfied: pandas==0.23.4 in c:\users\xcake\anaconda3\lib\site-packages (from -r requirements.txt (line 4)) (0.23.4) Requirement already satisfied: tensorflow==1.12.0 in c:\users\xcake\anaconda3\lib\site-packages (from -r requirements.txt (line 5)) (1.12.0) Requirement already satisfied: cffi>=1.0 in c:\users\xcake\anaconda3\lib\site-packages (from SoundFile==0.10.2->-r requirements.txt (line 2)) (1.12.2) Requirement already satisfied: cycler>=0.10 in c:\users\xcake\anaconda3\lib\site-packages (from matplotlib==3.0.3->-r requirements.txt (line 3)) (0.10.0) Requirement already satisfied: kiwisolver>=1.0.1 in c:\users\xcake\anaconda3\lib\site-packages (from matplotlib==3.0.3->-r requirements.txt (line 3)) (1.0.1) Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in c:\users\xcake\anaconda3\lib\site-packages (from matplotlib==3.0.3->-r requirements.txt (line 3)) (2.4.0) Requirement already satisfied: python-dateutil>=2.1 in c:\users\xcake\anaconda3\lib\site-packages (from matplotlib==3.0.3->-r requirements.txt (line 3)) (2.8.0) Requirement already satisfied: pytz>=2011k in c:\users\xcake\anaconda3\lib\site-packages (from pandas==0.23.4->-r requirements.txt (line 4)) (2019.1) Requirement already satisfied: keras-applications>=1.0.6 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (1.0.7) Requirement already satisfied: keras-preprocessing>=1.0.5 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (1.0.9) Requirement already satisfied: six>=1.10.0 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (1.12.0) Requirement already satisfied: astor>=0.6.0 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (0.7.1) Requirement already satisfied: grpcio>=1.8.6 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (1.20.0) Requirement already satisfied: gast>=0.2.0 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (0.2.2) Requirement already satisfied: absl-py>=0.1.6 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (0.7.1) Requirement already satisfied: tensorboard<1.13.0,>=1.12.0 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (1.12.2) Requirement already satisfied: termcolor>=1.1.0 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (1.1.0) Requirement already satisfied: wheel>=0.26 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (0.33.1) Requirement already satisfied: protobuf>=3.6.1 in c:\users\xcake\anaconda3\lib\site-packages (from tensorflow==1.12.0->-r requirements.txt (line 5)) (3.7.1) Requirement already satisfied: pycparser in c:\users\xcake\anaconda3\lib\site-packages (from cffi>=1.0->SoundFile==0.10.2->-r requirements.txt (line 2)) (2.19) Requirement already satisfied: h5py in c:\users\xcake\anaconda3\lib\site-packages (from keras-applications>=1.0.6->tensorflow==1.12.0->-r requirements.txt (line 5)) (2.9.0) Requirement already satisfied: werkzeug>=0.11.10 in c:\users\xcake\anaconda3\lib\site-packages (from tensorboard<1.13.0,>=1.12.0->tensorflow==1.12.0->-r requirements.txt (line 5)) (0.15.2) Requirement already satisfied: markdown>=2.6.8 in c:\users\xcake\anaconda3\lib\site-packages (from tensorboard<1.13.0,>=1.12.0->tensorflow==1.12.0->-r requirements.txt (line 5)) (3.1) Requirement already satisfied: setuptools in c:\users\xcake\anaconda3\lib\site-packages (from protobuf>=3.6.1->tensorflow==1.12.0->-r requirements.txt (line 5)) (41.0.0)

C:\Users\xcake\3D Objects\Osu Mapper\ipynb>npm i audited 5 packages in 1.838s found 0 vulnerabilities

No metadata found in c:\users\xcake\anaconda3\lib\site-packages No metadata found in c:\users\xcake\anaconda3\lib\site-packages No metadata found in c:\users\xcake\anaconda3\lib\site-packages No metadata found in c:\users\xcake\anaconda3\lib\site-packages No metadata found in c:\users\xcake\anaconda3\lib\site-packages No metadata found in c:\users\xcake\anaconda3\lib\site-packages npm WARN ipynb@1.0.0 No description npm WARN ipynb@1.0.0 No repository field.

well then.

kotritrona commented 5 years ago

weird... seems already installed, why cannot it import

cakiya commented 5 years ago

weird... seems already installed, why cannot it import

would i uninstall anaconda and reinstall?

kotritrona commented 5 years ago

sorry, I have no idea...

cakiya commented 5 years ago

sorry, I have no idea...

fixed by fresh install FileNotFoundError Traceback (most recent call last)

in 46 # try: 47 start = time.time() ---> 48 read_and_save_osu_file(mname.strip(), filename=os.path.join(mapdata_path, str(k)), divisor=divisor); 49 end = time.time() 50 print("Map data #" + str(k) + " saved! time = " + str(end - start) + " secs"); ~\3D Objects\Osu Mapper\ipynb\osureader.py in read_and_save_osu_file(path, filename, divisor) 327 # 328 def read_and_save_osu_file(path, filename = "saved", divisor=4): --> 329 osu_dict, wav_file = read_osu_file(path, convert = True); 330 data, flow_data = get_map_notes(osu_dict, divisor=divisor); 331 timestamps = [c[1] for c in data]; ~\3D Objects\Osu Mapper\ipynb\osureader.py in read_osu_file(path, convert, wav_name, json_name) 20 subprocess.call(["node", "load_map.js", "jq", path, json_name]); 21 ---> 22 with open(json_name, encoding="utf-8") as map_json: 23 map_dict = json.load(map_json); # not "loads" it is not a string 24 FileNotFoundError: [Errno 2] No such file or directory: 'temp_json_file.json' in step one another errorrrrrrrrrrrrrrrrrrr
VINXIS commented 5 years ago

i had the same error but i fixed it by remembering i was supposed to install node dependencies (npm i) if u did that then i dunno

cakiya commented 5 years ago

i had the same error but i fixed it by remembering i was supposed to install node dependencies (npm i) if u did that then i dunno

uhh command?

edit: nvm im dumb

edit2: output:

npm WARN saveError ENOENT: no such file or directory, open 'C:\Users\xcake\package.json' npm WARN enoent ENOENT: no such file or directory, open 'C:\Users\xcake\package.json' npm WARN xcake No description npm WARN xcake No repository field. npm WARN xcake No README data npm WARN xcake No license field.

audited 9 packages in 2.019s found 0 vulnerabilities

btw i still can't beat reol no title insane despite getting 1-7* pass lol

kotritrona commented 5 years ago

you should run the command in the folder of the notebooks, where it has package.json

cakiya commented 5 years ago

you should run the command in the folder of the notebooks, where it has package.json

C:\Users\alexgu\Documents\osumapper-master\ipynb>npm i npm WARN osumapper@6.0.0 No repository field.

audited 5 packages in 1.22s found 0 vulnerabilities

um is the warn important? I know this might be very basic but i have no experience with cmd

so i ran step one

Number of filtered maps: 54

FileNotFoundError Traceback (most recent call last)

in 45 # try: 46 start = time.time() ---> 47 read_and_save_osu_file(mname.strip(), filename=os.path.join(mapdata_path, str(k)), divisor=divisor); 48 end = time.time() 49 print("Map data #" + str(k) + " saved! time = " + str(end - start) + " secs"); ~\Documents\osumapper-master\ipynb\osureader.py in read_and_save_osu_file(path, filename, divisor) 327 # 328 def read_and_save_osu_file(path, filename = "saved", divisor=4): --> 329 osu_dict, wav_file = read_osu_file(path, convert = True); 330 data, flow_data = get_map_notes(osu_dict, divisor=divisor); 331 timestamps = [c[1] for c in data]; ~\Documents\osumapper-master\ipynb\osureader.py in read_osu_file(path, convert, wav_name, json_name) 20 subprocess.call(["node", "load_map.js", "jq", path, json_name]); 21 ---> 22 with open(json_name, encoding="utf-8") as map_json: 23 map_dict = json.load(map_json); # not "loads" it is not a string 24 FileNotFoundError: [Errno 2] No such file or directory: 'temp_json_file.json' same error. then i notice somethinng in the cmd console [I 07:50:12.275 NotebookApp] Kernel started: ea45f10c-fda6-444f-b16d-e29dd6764b13 [I 07:50:14.834 NotebookApp] Adapting to protocol v5.1 for kernel ea45f10c-fda6-444f-b16d-e29dd6764b13 { Error: ENOENT: no such file or directory, open '#Add directories to .osu files here! Heres an example:' at Object.openSync (fs.js:438:3) at Object.readFileSync (fs.js:343:35) at main (C:\Users\alexgu\Documents\osumapper-master\ipynb\load_map.js:1259:26) at Object. (C:\Users\alexgu\Documents\osumapper-master\ipynb\load_map.js:1343:1) at Module._compile (internal/modules/cjs/loader.js:701:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:712:10) at Module.load (internal/modules/cjs/loader.js:600:32) at tryModuleLoad (internal/modules/cjs/loader.js:539:12) at Function.Module._load (internal/modules/cjs/loader.js:531:3) at Function.Module.runMain (internal/modules/cjs/loader.js:754:12) errno: -4058, syscall: 'open', code: 'ENOENT', path: '#Add directories to .osu files here! Heres an example:' } would this help?
kotritrona commented 5 years ago

The warn is because package.json has no repository field, since this is not published to npm it should be fine

remove the line "#Add directories to .osu files here! Heres an example:" in maplist.txt, I guess It is because I commented out the try except section, let me fix this

cakiya commented 5 years ago

The warn is because package.json has no repository field, since this is not published to npm it should be fine

remove the line "#Add directories to .osu files here! Heres an example:" in maplist.txt, I guess It is because I commented out the try except section, let me fix this

Number of filtered maps: 54 Error on #0, path = #Add directories to .osu files here! Heres an example:, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #1, path = #D:\StudyData\Tensorflow\sota\167564 Sota Fujimori - DANCE ALL NIGHT\Sota Fujimori - DANCE ALL NIGHT (arom303) [Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #2, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\320118 Reol - No title\Reol - No title (VINXIS) [Light Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #3, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\320118 Reol - No title\Reol - No title (VINXIS) [Lust's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #4, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\320118 Reol - No title\Reol - No title (VINXIS) [Misuzu's Normal].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #5, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\320118 Reol - No title\Reol - No title (VINXIS) [Nathan's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #6, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\320118 Reol - No title\Reol - No title (VINXIS) [toybot's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #7, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681010 Iris December Uncry (Hanazono Mei), Noel the Nextseaso\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (xcakepiggie) [Insane].osu, error = [Errno 2] No such file or directory: 'temp_jsonfile.json' Error on #8, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681010 Iris December Uncry (Hanazono Mei), Noel the Nextseaso\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Asuka-) [Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #9, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681412 Iris December Uncry (Hanazono Mei), Noel the Nextsea\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Homura-) [Lecana's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #10, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681412 Iris December Uncry (Hanazono Mei), Noel the Nextsea\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Homura-) [momoko's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #11, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681412 Iris December Uncry (Hanazono Mei), Noel the Nextsea\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Homura-) [Oblivion].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #12, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681412 Iris December Uncry (Hanazono Mei), Noel the Nextsea\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Homura-) [Satellite's Easy].osu, error = [Errno 2] No such file or directory: 'temp_jsonfile.json' Error on #13, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681010 Iris December Uncry (Hanazono Mei), Noel the Nextseaso\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Asuka-) [Mochi's Hard].osu, error = [Errno 2] No such file or directory: 'temp_jsonfile.json' Error on #14, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681010 Iris December Uncry (Hanazono Mei), Noel the Nextseaso\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Asuka-) [Sekai's Normal].osu, error = [Errno 2] No such file or directory: 'temp_jsonfile.json' Error on #15, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\681010 Iris December Uncry (Hanazono Mei), Noel the Nextseaso\Iris December Uncry (Hanazono Mei), Noel the Nextseason (Ameba Tsukasa) - Crying Heart (Asuka-) [Yasai's Easy].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #16, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [Easy].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #17, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [Kage].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #18, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [Mamayu's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #19, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [Normal].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #20, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [pkhg's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #21, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [Rocket's Hard].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #22, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\399358 KANA-BOON - Silhouette (1)\KANA-BOON - Silhouette (Kagetsu) [Yiyo's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #23, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\423527 dj TAKA - quaver\dj TAKA - quaver (Monstrata) [Aia's Advanced].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #24, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\423527 dj TAKA - quaver\dj TAKA - quaver (Monstrata) [Crescendo].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #25, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\423527 dj TAKA - quaver\dj TAKA - quaver (Monstrata) [Haru's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #26, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\423527 dj TAKA - quaver\dj TAKA - quaver (Monstrata) [Joey's Hyper].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #27, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\423527 dj TAKA - quaver\dj TAKA - quaver (Monstrata) [NiNo's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #28, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\423527 dj TAKA - quaver\dj TAKA - quaver (Monstrata) [Normal].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #29, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Lasse's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #30, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [A r M i N's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #31, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Akitoshi's Beginner].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #32, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Akitoshi's Easy].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #33, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Ayyri's Muzukashii].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #34, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Ayyri's Oni].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #35, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Doormat's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #36, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #37, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Fiery's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #38, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Kencho's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #39, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Kencho's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #40, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Kyuukai's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #41, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Monstrata's Ultimate Crescendo].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #42, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Myxo's Easy].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #43, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Nevo's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #44, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [NiNo's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #45, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [NiNo's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #46, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Normal].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #47, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Onlybiscuit's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #48, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Reform's Extra].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #49, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Reform's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #50, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Shunao's Hard].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #51, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Ultimate Crescendo].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #52, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Yukiyo's Insane].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json' Error on #53, path = G:\Games\Osu!Portable\Osu! Stable (The one that works)\App\Osu!\Songs\873811 dj TAKA - quaver\dj TAKA - quaver (Sotarks) [Yuri-'s Expert].osu, error = [Errno 2] No such file or directory: 'temp_json_file.json'

nani

kotritrona commented 5 years ago

It looks like something is wrong with the map json conversion... is your ffmpeg_path correct? (GLOBAL_VARS["ffmpeg_path"] = xxxx) what is your node.js version? (type node --version to see)

cakiya commented 5 years ago

It looks like something is wrong with the map json conversion... is your ffmpeg_path correct? (GLOBAL_VARS["ffmpeg_path"] = xxxx) what is your node.js version? (type node --version to see)

GLOBAL_VARS["ffmpeg_path"] = "C:\ffmpeg-4.1.1-win64-static\bin\ffmpeg.exe";


NameError Traceback (most recent call last)

in ----> 1 node --version NameError: name 'node' is not defined
kotritrona commented 5 years ago

You need to double slash inside quote, probably? "C:\\ffmpeg-4.1.1-win64-static\\bin\\ffmpeg.exe"

and I meant to run node --version in terminal, not python.. _(:з)∠)_

IllianDeCube09 commented 3 years ago

The best way to avoid at least half of the user's problems is to create a video tutorial or write a detailed text tutorial.

kotritrona commented 3 years ago

I agree. I added a text tutorial in the wiki. Someone made a video before, but it's for the earlier versions. https://www.youtube.com/watch?v=0k8JS5j-gDw