Skip to content

Commit 5d993ca

Browse files
committed
Init commit
0 parents  commit 5d993ca

33 files changed

+14386
-0
lines changed

.eslintrc.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/eslint-recommended",
10+
"plugin:@typescript-eslint/recommended",
11+
"plugin:import/recommended",
12+
"plugin:import/electron",
13+
"plugin:import/typescript"
14+
],
15+
"parser": "@typescript-eslint/parser"
16+
}

.gitignore

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
.DS_Store
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
*.lcov
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# TypeScript v1 declaration files
40+
typings/
41+
42+
# TypeScript cache
43+
*.tsbuildinfo
44+
45+
# Optional npm cache directory
46+
.npm
47+
48+
# Optional eslint cache
49+
.eslintcache
50+
51+
# Optional REPL history
52+
.node_repl_history
53+
54+
# Output of 'npm pack'
55+
*.tgz
56+
57+
# Yarn Integrity file
58+
.yarn-integrity
59+
60+
# dotenv environment variables file
61+
.env
62+
.env.test
63+
64+
# parcel-bundler cache (https://parceljs.org/)
65+
.cache
66+
67+
# next.js build output
68+
.next
69+
70+
# nuxt.js build output
71+
.nuxt
72+
73+
# vuepress build output
74+
.vuepress/dist
75+
76+
# Serverless directories
77+
.serverless/
78+
79+
# FuseBox cache
80+
.fusebox/
81+
82+
# DynamoDB Local files
83+
.dynamodb/
84+
85+
# Webpack
86+
.webpack/
87+
88+
# Vite
89+
.vite/
90+
91+
# Electron-Forge
92+
out/

README.md

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# TSAV player
2+
3+
Bellard just published his new TSAV file format
4+
Using neural network to compress wav file into incredibal size
5+
But now no player can play this format directly!
6+
7+
This is what you want TSAV file player
8+
9+
## Description
10+
11+
Firstly, it's a Electron app. (I know all the arguments about this)
12+
Secondly, the process is simple, transform the TSAV file into wav and play.
13+
14+
## Getting Started
15+
16+
```
17+
git clone
18+
npm install
19+
npm run start
20+
```
21+
22+
23+
### Dependencies
24+
25+
* I developed this app on Windows11, don't know Mac is OK or not
26+
* Later will test it on Mac
27+
* Maybe rewrite the UI using RUST
28+
29+
* React/NextUI/Tailwind/Electron
30+
31+
### Installing
32+
33+
* npm install
34+
35+
36+
## Help
37+
38+
Any advise for common problems or issues.
39+
Bump a issue.
40+
41+
## Authors
42+
43+
Contributors names and contact info
44+
45+
46+
## Version History
47+
48+
* 0.1
49+
* Initial Release
50+
51+
## License
52+
53+
This project is licensed under the [MIT] License - see the LICENSE.md file for details
54+
55+
## Acknowledgments
56+

extras/Changelog

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2024-04-08:
2+
3+
- initial release

0 commit comments

Comments
 (0)