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
Copy file name to clipboardExpand all lines: sites/m.tv.sms.cz/readme.md
+30-2Lines changed: 30 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,42 @@ https://m.tv.sms.cz/
4
4
5
5
### Download the guide
6
6
7
+
Windows (Command Prompt):
8
+
9
+
```sh
10
+
SET "NODE_OPTIONS=--tls-cipher-list=DEFAULT@SECLEVEL=0"&& npm run grab --- --site=m.tv.sms.cz
11
+
```
12
+
13
+
Windows (PowerShell):
14
+
15
+
```sh
16
+
$env:NODE_OPTIONS="--tls-cipher-list=DEFAULT@SECLEVEL=0"; npm run grab --- --site=m.tv.sms.cz
17
+
```
18
+
19
+
Linux and macOS:
20
+
7
21
```sh
8
-
npm run grab --- --site=m.tv.sms.cz
22
+
NODE_OPTIONS='--tls-cipher-list=DEFAULT@SECLEVEL=0'npm run grab --- --site=m.tv.sms.cz
9
23
```
10
24
11
25
### Update channel list
12
26
27
+
Windows (Command Prompt):
28
+
29
+
```sh
30
+
SET "NODE_OPTIONS=--tls-cipher-list=DEFAULT@SECLEVEL=0"&& npm run channels:parse --- --config=./sites/m.tv.sms.cz/m.tv.sms.cz.config.js --output=./sites/m.tv.sms.cz/m.tv.sms.cz.channels.xml
31
+
```
32
+
33
+
Windows (PowerShell):
34
+
35
+
```sh
36
+
$env:NODE_OPTIONS="--tls-cipher-list=DEFAULT@SECLEVEL=0"; npm run channels:parse --- --config=./sites/m.tv.sms.cz/m.tv.sms.cz.config.js --output=./sites/m.tv.sms.cz/m.tv.sms.cz.channels.xml
37
+
```
38
+
39
+
Linux and macOS:
40
+
13
41
```sh
14
-
npm run channels:parse --- --config=./sites/m.tv.sms.cz/m.tv.sms.cz.config.js --output=./sites/m.tv.sms.cz/m.tv.sms.cz.channels.xml
42
+
NODE_OPTIONS='--tls-cipher-list=DEFAULT@SECLEVEL=0'npm run channels:parse --- --config=./sites/m.tv.sms.cz/m.tv.sms.cz.config.js --output=./sites/m.tv.sms.cz/m.tv.sms.cz.channels.xml
0 commit comments