projectpulsewire 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- projectpulsewire-1.0.0/PKG-INFO +100 -0
- projectpulsewire-1.0.0/license +21 -0
- projectpulsewire-1.0.0/pyproject.toml +50 -0
- projectpulsewire-1.0.0/readme.md +74 -0
- projectpulsewire-1.0.0/setup.cfg +4 -0
- projectpulsewire-1.0.0/src/projectpulsewire/__init__.py +35 -0
- projectpulsewire-1.0.0/src/projectpulsewire/__main__.py +4 -0
- projectpulsewire-1.0.0/src/projectpulsewire/cli.py +1490 -0
- projectpulsewire-1.0.0/src/projectpulsewire/irs_handler.py +259 -0
- projectpulsewire-1.0.0/src/projectpulsewire/presets.py +261 -0
- projectpulsewire-1.0.0/src/projectpulsewire.egg-info/PKG-INFO +100 -0
- projectpulsewire-1.0.0/src/projectpulsewire.egg-info/SOURCES.txt +14 -0
- projectpulsewire-1.0.0/src/projectpulsewire.egg-info/dependency_links.txt +1 -0
- projectpulsewire-1.0.0/src/projectpulsewire.egg-info/entry_points.txt +2 -0
- projectpulsewire-1.0.0/src/projectpulsewire.egg-info/requires.txt +2 -0
- projectpulsewire-1.0.0/src/projectpulsewire.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: projectpulsewire
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: EasyEffects presets for PipeWire/PulseAudio on Linux
|
|
5
|
+
Author-email: roshellwett <roshhellwett@zenithopensourceprojects.vercel.app>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/roshhellwett/projectpulsewire
|
|
8
|
+
Project-URL: Repository, https://github.com/roshhellwett/projectpulsewire.git
|
|
9
|
+
Project-URL: Issues, https://github.com/roshhellwett/projectpulsewire/issues
|
|
10
|
+
Keywords: easyeffects,pipewire,pulseaudio,audio,eq,presets,linux
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: license
|
|
23
|
+
Requires-Dist: typer>=0.12.0
|
|
24
|
+
Requires-Dist: rich>=13.0.0
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+

|
|
28
|
+

|
|
29
|
+

|
|
30
|
+

|
|
31
|
+

|
|
32
|
+
|
|
33
|
+
# PROJECT PULSEWIRE
|
|
34
|
+
|
|
35
|
+
A curated collection of high-quality **EasyEffects** presets designed for **PipeWire** and **PulseAudio** on Linux.
|
|
36
|
+
These presets help you instantly enhance your sound experience β whether for music, movies, gaming, or voice clarity.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## π Whatβs Inside
|
|
41
|
+
Youβll find presets organised by use case and device type, including but not limited to:
|
|
42
|
+
- Bass boost and enhanced EQ presets
|
|
43
|
+
- Dialogue clarity / vocal-boost presets
|
|
44
|
+
- Music genre-specific presets (rock, lofi, k-pop, etc)
|
|
45
|
+
- Device-specific presets (e.g., βSonyβ, βBoseβ)
|
|
46
|
+
- Loudness / auto-gain presets
|
|
47
|
+
Each preset is exported in JSON format so you can import them directly into EasyEffects.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## π¦ Why Use This
|
|
52
|
+
- Saves time: skip the process of manually hunting for presets or creating from scratch.
|
|
53
|
+
- Variety: covers many genres, devices, and use-cases under a single repository.
|
|
54
|
+
- Linux-friendly: made specifically for pipewire/pulseaudio + EasyEffects environments.
|
|
55
|
+
- Ready to import: simply load the JSON into your EasyEffects preset manager.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## π§© Features
|
|
60
|
+
- π΅ Ready-to-use EQ and effects presets
|
|
61
|
+
- ποΈ Voice clarity, loudness, and dialogue enhancer modes
|
|
62
|
+
- π§ Bass-boosted and genre-specific audio profiles
|
|
63
|
+
- π₯οΈ Compatible with **PipeWire** and **PulseAudio** setups
|
|
64
|
+
- πΎ Lightweight, shareable JSON files for EasyEffects
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## π How to Use
|
|
69
|
+
|
|
70
|
+
1. Clone this repository:
|
|
71
|
+
```bash
|
|
72
|
+
git clone https://github.com/roshhellwett/projectpulsewire.git
|
|
73
|
+
cd projectpulsewire
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## π Folder Structure
|
|
79
|
+
```
|
|
80
|
+
projectpulsewire/
|
|
81
|
+
βββ bass-boost/
|
|
82
|
+
β βββ DeepBass.json
|
|
83
|
+
β βββ BalancedBass.json
|
|
84
|
+
βββ clarity/
|
|
85
|
+
β βββ VoiceEnhancer.json
|
|
86
|
+
β βββ DialogueBoost.json
|
|
87
|
+
βββ genre/
|
|
88
|
+
β βββ Rock.json
|
|
89
|
+
β βββ Lofi.json
|
|
90
|
+
β βββ EDM.json
|
|
91
|
+
βββ devices/
|
|
92
|
+
β βββ SonyWH1000XM4.json
|
|
93
|
+
β βββ BoseQC35.json
|
|
94
|
+
βββ README.md
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
Β© 2026 [Zenith Open Source Projects](https://zenithopensourceprojects.vercel.app/). All Rights Reserved.
|
|
100
|
+
Zenith is a Open Source Project Idea's by @roshhellwett
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Roshan Kr Singh
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "projectpulsewire"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "EasyEffects presets for PipeWire/PulseAudio on Linux"
|
|
9
|
+
readme = "readme.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "roshellwett", email = "roshhellwett@zenithopensourceprojects.vercel.app"}
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"typer>=0.12.0",
|
|
17
|
+
"rich>=13.0.0",
|
|
18
|
+
]
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Development Status :: 4 - Beta",
|
|
21
|
+
"Environment :: Console",
|
|
22
|
+
"Intended Audience :: End Users/Desktop",
|
|
23
|
+
"Operating System :: POSIX :: Linux",
|
|
24
|
+
"Programming Language :: Python :: 3",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Topic :: Multimedia :: Sound/Audio",
|
|
29
|
+
]
|
|
30
|
+
keywords = ["easyeffects", "pipewire", "pulseaudio", "audio", "eq", "presets", "linux"]
|
|
31
|
+
|
|
32
|
+
[project.scripts]
|
|
33
|
+
projectpulsewire = "projectpulsewire.cli:app"
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Homepage = "https://github.com/roshhellwett/projectpulsewire"
|
|
37
|
+
Repository = "https://github.com/roshhellwett/projectpulsewire.git"
|
|
38
|
+
Issues = "https://github.com/roshhellwett/projectpulsewire/issues"
|
|
39
|
+
|
|
40
|
+
[tool.setuptools]
|
|
41
|
+
package-dir = {"" = "src"}
|
|
42
|
+
|
|
43
|
+
[tool.setuptools.packages.find]
|
|
44
|
+
where = ["src"]
|
|
45
|
+
|
|
46
|
+
[tool.setuptools.package-data]
|
|
47
|
+
"projectpulsewire" = ["../presets/*.json", "../irs/*.irs"]
|
|
48
|
+
|
|
49
|
+
[tool.typer.core]
|
|
50
|
+
default_command = "start"
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
# PROJECT PULSEWIRE
|
|
8
|
+
|
|
9
|
+
A curated collection of high-quality **EasyEffects** presets designed for **PipeWire** and **PulseAudio** on Linux.
|
|
10
|
+
These presets help you instantly enhance your sound experience β whether for music, movies, gaming, or voice clarity.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## π Whatβs Inside
|
|
15
|
+
Youβll find presets organised by use case and device type, including but not limited to:
|
|
16
|
+
- Bass boost and enhanced EQ presets
|
|
17
|
+
- Dialogue clarity / vocal-boost presets
|
|
18
|
+
- Music genre-specific presets (rock, lofi, k-pop, etc)
|
|
19
|
+
- Device-specific presets (e.g., βSonyβ, βBoseβ)
|
|
20
|
+
- Loudness / auto-gain presets
|
|
21
|
+
Each preset is exported in JSON format so you can import them directly into EasyEffects.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## π¦ Why Use This
|
|
26
|
+
- Saves time: skip the process of manually hunting for presets or creating from scratch.
|
|
27
|
+
- Variety: covers many genres, devices, and use-cases under a single repository.
|
|
28
|
+
- Linux-friendly: made specifically for pipewire/pulseaudio + EasyEffects environments.
|
|
29
|
+
- Ready to import: simply load the JSON into your EasyEffects preset manager.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## π§© Features
|
|
34
|
+
- π΅ Ready-to-use EQ and effects presets
|
|
35
|
+
- ποΈ Voice clarity, loudness, and dialogue enhancer modes
|
|
36
|
+
- π§ Bass-boosted and genre-specific audio profiles
|
|
37
|
+
- π₯οΈ Compatible with **PipeWire** and **PulseAudio** setups
|
|
38
|
+
- πΎ Lightweight, shareable JSON files for EasyEffects
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## π How to Use
|
|
43
|
+
|
|
44
|
+
1. Clone this repository:
|
|
45
|
+
```bash
|
|
46
|
+
git clone https://github.com/roshhellwett/projectpulsewire.git
|
|
47
|
+
cd projectpulsewire
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## π Folder Structure
|
|
53
|
+
```
|
|
54
|
+
projectpulsewire/
|
|
55
|
+
βββ bass-boost/
|
|
56
|
+
β βββ DeepBass.json
|
|
57
|
+
β βββ BalancedBass.json
|
|
58
|
+
βββ clarity/
|
|
59
|
+
β βββ VoiceEnhancer.json
|
|
60
|
+
β βββ DialogueBoost.json
|
|
61
|
+
βββ genre/
|
|
62
|
+
β βββ Rock.json
|
|
63
|
+
β βββ Lofi.json
|
|
64
|
+
β βββ EDM.json
|
|
65
|
+
βββ devices/
|
|
66
|
+
β βββ SonyWH1000XM4.json
|
|
67
|
+
β βββ BoseQC35.json
|
|
68
|
+
βββ README.md
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
Β© 2026 [Zenith Open Source Projects](https://zenithopensourceprojects.vercel.app/). All Rights Reserved.
|
|
74
|
+
Zenith is a Open Source Project Idea's by @roshhellwett
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|
|
2
|
+
|
|
3
|
+
__author__ = "roshellwett"
|
|
4
|
+
__license__ = "MIT"
|
|
5
|
+
__copyright__ = "Copyright 2026 Zenith Open Source Projects"
|
|
6
|
+
__description__ = "EasyEffects presets for PipeWire/PulseAudio on Linux"
|
|
7
|
+
|
|
8
|
+
__credits__ = """
|
|
9
|
+
projectpulsewire - EasyEffects Presets for Linux
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2026 Zenith Open Source Projects
|
|
12
|
+
Developer: roshhellwett
|
|
13
|
+
|
|
14
|
+
A curated collection of high-quality EasyEffects presets designed for
|
|
15
|
+
PipeWire and PulseAudio on Linux.
|
|
16
|
+
|
|
17
|
+
MIT License
|
|
18
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
20
|
+
in the Software without restriction, including without limitation the rights
|
|
21
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23
|
+
furnished to do so, subject to the following conditions:
|
|
24
|
+
|
|
25
|
+
The above copyright notice and this permission notice shall be included in all
|
|
26
|
+
copies or substantial portions of the Software.
|
|
27
|
+
|
|
28
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
30
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
31
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
32
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
33
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34
|
+
SOFTWARE.
|
|
35
|
+
"""
|