Skip to content

Commit 5b2c728

Browse files
authored
Add files via upload
1 parent c685195 commit 5b2c728

File tree

13 files changed

+2230
-0
lines changed

13 files changed

+2230
-0
lines changed

com.wayne931121.inna.music/buildozer.spec

Lines changed: 466 additions & 0 deletions
Large diffs are not rendered by default.

com.wayne931121.inna.music/music_metadata_editor/Eyed3.ipynb

Lines changed: 668 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"id": "4c8d0680",
7+
"metadata": {},
8+
"outputs": [],
9+
"source": [
10+
"# 參考網站\n",
11+
"# https://www.geeksforgeeks.org/kivy-tutorial/#layouts\n",
12+
"# https://kivy.org/doc/stable/api-kivy.metrics.html"
13+
]
14+
},
15+
{
16+
"cell_type": "code",
17+
"execution_count": null,
18+
"id": "a273feb7",
19+
"metadata": {},
20+
"outputs": [],
21+
"source": [
22+
"bytes(\"\\n\", encoding=\"utf-8\")"
23+
]
24+
},
25+
{
26+
"cell_type": "code",
27+
"execution_count": 3,
28+
"id": "2c2a477d",
29+
"metadata": {
30+
"scrolled": false
31+
},
32+
"outputs": [
33+
{
34+
"name": "stderr",
35+
"output_type": "stream",
36+
"text": [
37+
"[INFO ] [Logger ] Record log in C:\\Users\\sky66\\.kivy\\logs\\kivy_22-07-05_78.txt\n",
38+
"[INFO ] [deps ] Successfully imported \"kivy_deps.angle\" 0.3.2\n",
39+
"[INFO ] [deps ] Successfully imported \"kivy_deps.glew\" 0.3.1\n",
40+
"[INFO ] [deps ] Successfully imported \"kivy_deps.sdl2\" 0.4.5\n",
41+
"[INFO ] [Kivy ] v2.1.0\n",
42+
"[INFO ] [Kivy ] Installed at \"C:\\Users\\sky66\\anaconda3\\envs\\tensorflow\\lib\\site-packages\\kivy\\__init__.py\"\n",
43+
"[INFO ] [Python ] v3.9.12 (main, Apr 4 2022, 05:22:27) [MSC v.1916 64 bit (AMD64)]\n",
44+
"[INFO ] [Python ] Interpreter at \"C:\\Users\\sky66\\anaconda3\\envs\\tensorflow\\python.exe\"\n",
45+
"[INFO ] [Logger ] Purge log fired. Processing...\n",
46+
"[INFO ] [Logger ] Purge finished!\n",
47+
"[INFO ] [Factory ] 189 symbols loaded\n",
48+
"[INFO ] [Image ] Providers: img_tex, img_dds, img_sdl2, img_pil (img_ffpyplayer ignored)\n",
49+
"[INFO ] [Window ] Provider: sdl2\n",
50+
"[INFO ] [GL ] Using the \"OpenGL\" graphics system\n",
51+
"[INFO ] [GL ] GLEW initialization succeeded\n",
52+
"[INFO ] [GL ] Backend used <glew>\n",
53+
"[INFO ] [GL ] OpenGL version <b'4.6.0 NVIDIA 472.98'>\n",
54+
"[INFO ] [GL ] OpenGL vendor <b'NVIDIA Corporation'>\n",
55+
"[INFO ] [GL ] OpenGL renderer <b'NVIDIA GeForce GTX 1660 SUPER/PCIe/SSE2'>\n",
56+
"[INFO ] [GL ] OpenGL parsed version: 4, 6\n",
57+
"[INFO ] [GL ] Shading version <b'4.60 NVIDIA'>\n",
58+
"[INFO ] [GL ] Texture max size <32768>\n",
59+
"[INFO ] [GL ] Texture max units <32>\n",
60+
"[INFO ] [Window ] auto add sdl2 input provider\n",
61+
"[INFO ] [Window ] virtual keyboard not allowed, single mode, not docked\n",
62+
"[INFO ] [Clipboard ] Provider: winctypes\n",
63+
"[INFO ] [Text ] Provider: sdl2\n",
64+
"[INFO ] [GL ] NPOT texture support is available\n",
65+
"[INFO ] [Base ] Start application main loop\n",
66+
"[INFO ] [GL ] Unpack subimage support is available\n",
67+
"[INFO ] [Base ] Leaving application in progress...\n"
68+
]
69+
}
70+
],
71+
"source": [
72+
"!python main.py"
73+
]
74+
},
75+
{
76+
"cell_type": "code",
77+
"execution_count": null,
78+
"id": "34d16639",
79+
"metadata": {},
80+
"outputs": [],
81+
"source": [
82+
"!python test.py"
83+
]
84+
},
85+
{
86+
"cell_type": "code",
87+
"execution_count": null,
88+
"id": "93ad00fe",
89+
"metadata": {
90+
"scrolled": false
91+
},
92+
"outputs": [],
93+
"source": [
94+
"# 增加縮排\n",
95+
"with open(\"assets/App.kv\", \"r\", encoding=\"utf8\") as f:\n",
96+
" print(\"\\n \".join(f.read().split(\"\\n\")))"
97+
]
98+
},
99+
{
100+
"cell_type": "code",
101+
"execution_count": null,
102+
"id": "4461ebed",
103+
"metadata": {},
104+
"outputs": [],
105+
"source": [
106+
"# 減少縮排\n",
107+
"with open(\"assets/App.kv\", \"r\", encoding=\"utf8\") as f:\n",
108+
" print(\"\\n\".join([e[4:] for e in f.read().split(\"\\n\")]))"
109+
]
110+
}
111+
],
112+
"metadata": {
113+
"kernelspec": {
114+
"display_name": "Python 3 (ipykernel)",
115+
"language": "python",
116+
"name": "python3"
117+
},
118+
"language_info": {
119+
"codemirror_mode": {
120+
"name": "ipython",
121+
"version": 3
122+
},
123+
"file_extension": ".py",
124+
"mimetype": "text/x-python",
125+
"name": "python",
126+
"nbconvert_exporter": "python",
127+
"pygments_lexer": "ipython3",
128+
"version": "3.9.12"
129+
}
130+
},
131+
"nbformat": 4,
132+
"nbformat_minor": 5
133+
}

0 commit comments

Comments
 (0)