@@ -24,8 +24,7 @@ for the playlist feature across different platforms***
24
24
### Install
25
25
26
26
Github latest [ Release] ( https://github.com/jooapa/signal-Jammer/releases/latest )
27
- Linux version of Jammer requires fuse2. Ubuntu 22.02 or newer install `apt
28
- install libfuse2`.
27
+ Linux version of Jammer requires fuse2. Ubuntu 22.02 or newer install ` apt install libfuse2 ffmpeg `
29
28
30
29
### Update existing
31
30
@@ -56,14 +55,16 @@ jammer -v, --version show version
56
55
```
57
56
58
57
``` bash
59
- jammer -h, --help show this help message-
58
+ jammer -h, --help show this help message
59
+ # # these commands are for the playlists in the <jammer/playlists> folder
60
60
jammer -p, --play < name> play playlist
61
61
jammer -c, --create < name> create playlist
62
62
jammer -d, --delete < name> delete playlist
63
63
jammer -a, --add < name> < song> ... add song to playlist
64
64
jammer -r, --remove < name> < song> ... remove song from playlist
65
- jammer -s, --show < name>
65
+ jammer -s, --show < name> show songs in playlist
66
66
jammer -l, --list list all playlists
67
+
67
68
jammer -f, --flush deletes all the songs in songs folder
68
69
jammer -sp, --set-path < path> , < default> set path for songs folder
69
70
jammer -gp, --get-path get the path to the < jammer/songs> folder
@@ -133,6 +134,27 @@ These can be changed in the Effects.ini file in the jammer folder.
133
134
134
135
This can be changed by an environment variable ` JAMMER_CONFIG_PATH `
135
136
137
+ ### m3u and m3u8 support
138
+
139
+ Jammer supports m3u and m3u8 playlists. You can play them but with pretty limited functionality.
140
+
141
+ Starting the m3u file with ` #EXTM3U ` and example of the m3u of all the features that are supported.
142
+
143
+ ``` m3u
144
+ #EXTM3U
145
+ #EXT-X-PLAYLIST-TYPE:VOD
146
+ #EXT-X-TARGETDURATION:10
147
+ #EXT-X-VERSION:3
148
+ #EXT-X-MEDIA-SEQUENCE:0
149
+
150
+ #EXTINF:0,Lady Gaga - Telephone ft. Beyoncé
151
+ https://www.youtube.com/watch?v=Zwnvgz3ey78
152
+ #EXTINF:0,Epic Music
153
+ /home/user/epic music/epic_music.mp3
154
+
155
+ /tmp/secret_klinoff.mp3
156
+ ```
157
+
136
158
### Default Player Controls
137
159
138
160
| Key | Action |
@@ -189,26 +211,30 @@ Currently supported languages:
189
211
190
212
Create new translation by copying already existing .ini file from /locales and translating it.
191
213
192
- ## Star History
193
-
194
- <a href =" https://star-history.com/#jooapa/jammer&Date " >
195
- <picture >
196
- <source media =" (prefers-color-scheme: dark) " srcset =" https://api.star-history.com/svg?repos=jooapa/jammer&type=Date&theme=dark " />
197
- <source media =" (prefers-color-scheme: light) " srcset =" https://api.star-history.com/svg?repos=jooapa/jammer&type=Date " />
198
- <img alt =" Star History Chart " src =" https://api.star-history.com/svg?repos=jooapa/jammer&type=Date " />
199
- </picture >
200
- </a >
201
-
202
214
## Soundcloud
215
+
203
216
### User can now change the SoundCloud client id
217
+
204
218
soundcloud every now and then changes the client id, which is not cool, so this allows change allows the user to change it :)
205
219
on default the keybind is ` Alt + Shift + 1 ` or go change it in the ` settings.json `
206
220
207
221
#### way to get the id on your own
222
+
208
223
- open up the [ soundcloud.com] ( https://soundcloud.com/discover )
209
224
- open the inspect element -> Network tab
210
225
- start playing some random song
211
226
- you start to see some entries in the network tab. you should see some thing like ` me?client_id=wDSKS1Bp8WmdlRPkZ7NQXGs67PMXl2Nd `
227
+
228
+ ## Star History
229
+
230
+ <a href =" https://star-history.com/#jooapa/jammer&Date " >
231
+ <picture >
232
+ <source media =" (prefers-color-scheme: dark) " srcset =" https://api.star-history.com/svg?repos=jooapa/jammer&type=Date&theme=dark " />
233
+ <source media =" (prefers-color-scheme: light) " srcset =" https://api.star-history.com/svg?repos=jooapa/jammer&type=Date " />
234
+ <img alt =" Star History Chart " src =" https://api.star-history.com/svg?repos=jooapa/jammer&type=Date " />
235
+ </picture >
236
+ </a >
237
+
212
238
# Developing
213
239
214
240
## Build / Run yourself
0 commit comments