You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This tells Docker to use our gluetun container as the network. Since it uses the gluetun container for networking, we have to move the port allocation to gluetun.
132
132
133
-
Lastly, we need to add this one environment variable to cobalt: `CUSTOM_INNERTUBE_CLIENT=WEB_EMBEDDED`.
133
+
Lastly, we need to add these environment variables to cobalt:
134
+
```
135
+
CUSTOM_INNERTUBE_CLIENT=TV_SIMPLY
136
+
YOUTUBE_GENERATE_PO_TOKENS=1
137
+
YOUTUBE_USE_ONESIE=1
138
+
```
134
139
135
140
<hr>
136
141
@@ -153,7 +158,10 @@ services:
153
158
environment:
154
159
# adjust as needed, use add your current variables here
155
160
- API_URL='https://api.url.example/'
156
-
- CUSTOM_INNERTUBE_CLIENT=WEB_EMBEDDED # make sure this is here
161
+
# make sure the ones below stay
162
+
- CUSTOM_INNERTUBE_CLIENT=TV_SIMPLY
163
+
- YOUTUBE_GENERATE_PO_TOKENS=1
164
+
- YOUTUBE_USE_ONESIE=1
157
165
volumes:
158
166
# adjust as needed if you use cookies/keys
159
167
- ./cookies.json:/cookies.json
@@ -276,7 +284,9 @@ In Notepad, copy and paste this below:
276
284
277
285
```bash
278
286
API_URL=http://localhost:9000/
279
-
CUSTOM_INNERTUBE_CLIENT=WEB_EMBEDDED
287
+
CUSTOM_INNERTUBE_CLIENT=TV_SIMPLY
288
+
YOUTUBE_GENERATE_PO_TOKENS=1
289
+
YOUTUBE_USE_ONESIE=1
280
290
```
281
291
282
292
Save the file (Control + S) and close Notepad. Run these commands in the same Terminal Window.
0 commit comments