mirror of
https://codeberg.org/armin/noiz.git
synced 2026-09-01 05:50:52 +02:00
Compare commits
84 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1abf801e8e | ||
|
|
0e37ad6b32 | ||
|
|
bdc47e3284 | ||
|
|
26a45a73ef | ||
|
|
59b771cd2d | ||
|
|
dece79f6d7 | ||
|
|
ab6e462146 | ||
|
|
4c46593bc5 | ||
|
|
484ec2abb5 | ||
|
|
dd38dbd0f7 | ||
|
|
92f2c6dab4 | ||
|
|
94ee52aace | ||
|
|
965674c777 | ||
|
|
b8fe6005a2 | ||
|
|
eb4d8002e5 | ||
|
|
0f14d8da94 | ||
|
|
b66de074ef | ||
|
|
7f68be1243 | ||
|
|
dae39818f9 | ||
|
|
a225805f27 | ||
|
|
5b97e1627e | ||
|
|
8984f5a864 | ||
|
|
cba38cf500 | ||
|
|
6479e49d18 | ||
|
|
4a203dbaf8 | ||
|
|
2efb224297 | ||
|
|
c678b947df | ||
|
|
dd657c6ab3 | ||
|
|
45bf10105b | ||
|
|
0fc4a746bf | ||
|
|
6ee9b976bd | ||
|
|
34c0a4ccf4 | ||
|
|
a7f62a7bd8 | ||
|
|
56faa28f6b | ||
|
|
af866881ff | ||
|
|
9d1318145a | ||
|
|
c55f5bc5c1 | ||
|
|
81a8cc1329 | ||
|
|
5bcfd0499a | ||
|
|
75986cf0ef | ||
|
|
aacb427d1b | ||
|
|
a46be8ed0a | ||
|
|
ae3943aab0 | ||
|
|
31aff8672d | ||
|
|
9d82535024 | ||
|
|
9863ca7911 | ||
|
|
61cdc6fd53 | ||
|
|
b748056e81 | ||
|
|
c8a11d9390 | ||
|
|
a970277869 | ||
|
|
8bd2985fd5 | ||
|
|
4932e8079b | ||
|
|
42861dba9d | ||
|
|
c07220e809 | ||
|
|
b4cae8eac2 | ||
|
|
eb0fc9835e | ||
|
|
2f980acc3d | ||
|
|
0c0398a6ae | ||
|
|
76fa21d405 | ||
|
|
7ff0d0ac95 | ||
|
|
8327964f38 | ||
|
|
154f003787 | ||
|
|
357e07ad32 | ||
|
|
857b277db5 | ||
|
|
65446a85b7 | ||
|
|
c944e1eb4a | ||
|
|
ba7d3d0310 | ||
|
|
fddbdf9a1c | ||
|
|
5789e4ec9e | ||
|
|
b10c88401e | ||
|
|
c18eaac989 | ||
|
|
1a933585d2 | ||
|
|
e85de87728 | ||
|
|
6cb74abded | ||
|
|
730c16bec4 | ||
|
|
4cd4649c0a | ||
|
|
98adc59450 | ||
|
|
543f412fa8 | ||
|
|
298ecf27f4 | ||
|
|
e15c26ba9e | ||
|
|
f11181232e | ||
|
|
55b92ab42f | ||
|
|
358b840f2c | ||
|
|
a2bc0c5e78 |
5 changed files with 661 additions and 227 deletions
10
LICENSE
Normal file
10
LICENSE
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright © 2026 armin@codeberg
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
16
README.md
16
README.md
|
|
@ -24,10 +24,16 @@ There is a live demo available at [bsd.pm/noiz](https://bsd.pm/noiz/).
|
||||||
|
|
||||||
Open `index.html` in any modern browser. Click **+Folder**, **+Files**, or drag audio files onto the window.
|
Open `index.html` in any modern browser. Click **+Folder**, **+Files**, or drag audio files onto the window.
|
||||||
|
|
||||||
## Native App (noiz.py)
|
## Known Limitations
|
||||||
|
|
||||||
`noiz.py` is a fully fledged local native application wrapper that runs `noiz://` in its own desktop window using [pywebview](https://pywebview.flowrl.com/). It launches the noiz:// app as a standalone application with native window via Python's webview, rather than running inside a browser tab. noiz.py is (as of now) 8 lines long.
|
- **File path display** - When adding individual files via **+Files** or drag-and-drop, browsers do not expose the full filesystem path for security reasons. Only the filename is shown in the tag editor. Using **+Folder** (which reads directory structure) provides the relative path within the selected folder.
|
||||||
|
- **Playback interruption on +Folder** - Opening the native directory picker suspends the browser's `AudioContext`, causing playback to stop. This is a browser-level security restriction (user gesture required for audio resume). Simply press play again after adding files.
|
||||||
|
|
||||||
|
## noizapp
|
||||||
|
There is a simple PoC Electron available to make noiz a stand-alone desktop "app":
|
||||||
|
https://codeberg.org/armin/noizapp
|
||||||
|
|
||||||
|
|
||||||
|
## License
|
||||||
|
noiz is released under the MIT license; see LICENSE file.
|
||||||
|
|
||||||
```bash
|
|
||||||
pip install pywebview && python noiz.py
|
|
||||||
```
|
|
||||||
|
|
|
||||||
856
index.html
856
index.html
File diff suppressed because it is too large
Load diff
8
noiz.py
8
noiz.py
|
|
@ -1,8 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
import webview
|
|
||||||
webview.create_window(
|
|
||||||
"noiz://",
|
|
||||||
"https://bsd.pm/noiz/"
|
|
||||||
)
|
|
||||||
webview.start()
|
|
||||||
|
|
||||||
BIN
noizshot.png
BIN
noizshot.png
Binary file not shown.
|
Before Width: | Height: | Size: 245 KiB After Width: | Height: | Size: 254 KiB |
Loading…
Add table
Add a link
Reference in a new issue