forked from woniuzfb/iptv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iptv.sh.pot
1152 lines (887 loc) · 22.6 KB
/
iptv.sh.pot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Locale en For iptv.sh v1.80.5 - ONE Click Script.
# Copyright (C) GPL Version 3 License
# This file is distributed under the same license as the iptv.sh package.
# MTimer https://github.com/woniuzfb/iptv
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: iptv.sh 1.80.4\n"
"Report-Msgid-Bugs-To: tg @woniuzfb\n"
"POT-Creation-Date: 2021-03-24 15:18+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../docs/iptv.sh:222
#, sh-format
msgid "$info Installing $dependency, it takes awhile..."
msgstr ""
#: ../docs/iptv.sh:233 ../docs/iptv.sh:243
#, sh-format
msgid "$info $dependency installation succeed"
msgstr ""
#: ../docs/iptv.sh:235 ../docs/iptv.sh:245
#, sh-format
msgid "$error $dependency installation failed"
msgstr ""
#: ../docs/iptv.sh:263 ../docs/iptv.sh:275
#, sh-format
msgid "${green}Succeed!${normal}"
msgstr ""
#: ../docs/iptv.sh:277
#, sh-format
msgid "${red}Failed! Please try again later!${normal}"
msgstr ""
#: ../docs/iptv.sh:286
msgid "yes"
msgstr ""
#: ../docs/iptv.sh:287
msgid "no"
msgstr ""
#: ../docs/iptv.sh:288
msgid "cancel"
msgstr ""
#: ../docs/iptv.sh:289
msgid "canceled"
msgstr ""
#: ../docs/iptv.sh:290
msgid "(default: cancel): "
msgstr ""
#: ../docs/iptv.sh:291
msgid "please input correct No."
msgstr ""
#: ../docs/iptv.sh:292
msgid "please input correct number"
msgstr ""
#: ../docs/iptv.sh:293
msgid "[INFO]"
msgstr ""
#: ../docs/iptv.sh:294
msgid "[ERROR]"
msgstr ""
#: ../docs/iptv.sh:295
msgid "[NOTE]"
msgstr ""
#: ../docs/iptv.sh:300 ../docs/iptv.sh:325
msgid "video delay"
msgstr ""
#: ../docs/iptv.sh:301 ../docs/iptv.sh:326
msgid "audio delay"
msgstr ""
#: ../docs/iptv.sh:302 ../docs/iptv.sh:327
msgid "seconds"
msgstr ""
#: ../docs/iptv.sh:303 ../docs/iptv.sh:328 ../docs/iptv.sh:6101
#: ../docs/iptv.sh:6113 ../docs/iptv.sh:6141
msgid "not set"
msgstr ""
#: ../docs/iptv.sh:304 ../docs/iptv.sh:329
msgid " constant:NO"
msgstr ""
#: ../docs/iptv.sh:305 ../docs/iptv.sh:330
msgid " constant:YES"
msgstr ""
#: ../docs/iptv.sh:306 ../docs/iptv.sh:331
msgid "resolution"
msgstr ""
#: ../docs/iptv.sh:307 ../docs/iptv.sh:332
msgid "bitrates"
msgstr ""
#: ../docs/iptv.sh:308 ../docs/iptv.sh:333
msgid "original"
msgstr ""
#: ../docs/iptv.sh:309
msgid "proxy"
msgstr ""
#: ../docs/iptv.sh:310 ../docs/iptv.sh:334
msgid "running"
msgstr ""
#: ../docs/iptv.sh:311 ../docs/iptv.sh:335
msgid "stopped"
msgstr ""
#: ../docs/iptv.sh:312
msgid "PID"
msgstr ""
#: ../docs/iptv.sh:313
msgid "status"
msgstr ""
#: ../docs/iptv.sh:314
msgid "channel name"
msgstr ""
#: ../docs/iptv.sh:315
msgid "codec"
msgstr ""
#: ../docs/iptv.sh:316 ../docs/iptv.sh:356
msgid "delay"
msgstr ""
#: ../docs/iptv.sh:317
msgid "video quality"
msgstr ""
#: ../docs/iptv.sh:318
msgid "source"
msgstr ""
#: ../docs/iptv.sh:319
msgid "playlist file"
msgstr ""
#: ../docs/iptv.sh:320
msgid "FLV push link"
msgstr ""
#: ../docs/iptv.sh:321
msgid "FLV pull link"
msgstr ""
#: ../docs/iptv.sh:324
msgid "Channel changed, try again!"
msgstr ""
#: ../docs/iptv.sh:336
msgid "sync not set"
msgstr ""
#: ../docs/iptv.sh:337
msgid "sync disabled"
msgstr ""
#: ../docs/iptv.sh:340
msgid "playlist name"
msgstr ""
#: ../docs/iptv.sh:341
msgid "playlist link"
msgstr ""
#: ../docs/iptv.sh:342
msgid "segment directory"
msgstr ""
#: ../docs/iptv.sh:343
msgid "segment name"
msgstr ""
#: ../docs/iptv.sh:344
msgid "segment duration"
msgstr ""
#: ../docs/iptv.sh:345
msgid "segments count"
msgstr ""
#: ../docs/iptv.sh:346
msgid "encrypt"
msgstr ""
#: ../docs/iptv.sh:347
msgid "keyinfo name"
msgstr ""
#: ../docs/iptv.sh:348
msgid "key name"
msgstr ""
#: ../docs/iptv.sh:349
msgid "live"
msgstr ""
#: ../docs/iptv.sh:350
msgid "xtream codes proxy"
msgstr ""
#: ../docs/iptv.sh:351
msgid "user agent"
msgstr ""
#: ../docs/iptv.sh:352
msgid "headers"
msgstr ""
#: ../docs/iptv.sh:353
msgid "cookies"
msgstr ""
#: ../docs/iptv.sh:354
msgid "video codec"
msgstr ""
#: ../docs/iptv.sh:355
msgid "audio codec"
msgstr ""
#: ../docs/iptv.sh:357
msgid "input flags"
msgstr ""
#: ../docs/iptv.sh:358
msgid "output flags"
msgstr ""
#: ../docs/iptv.sh:359
msgid "none"
msgstr ""
#: ../docs/iptv.sh:420
#, sh-format
msgid "${red}[ERROR]${normal} MUST BE ROOT, TRY${green} sudo su ${normal}"
msgstr ""
#: ../docs/iptv.sh:469
msgid "Checking dependencies, it takes awhile"
msgstr ""
#: ../docs/iptv.sh:488 ../docs/iptv.sh:499 ../docs/iptv.sh:509
#: ../docs/iptv.sh:519 ../docs/iptv.sh:534 ../docs/iptv.sh:545
#: ../docs/iptv.sh:555
#, sh-format
msgid "$info dependency $depend installation succeed"
msgstr ""
#: ../docs/iptv.sh:490 ../docs/iptv.sh:501 ../docs/iptv.sh:511
#: ../docs/iptv.sh:521 ../docs/iptv.sh:536 ../docs/iptv.sh:547
#: ../docs/iptv.sh:557
#, sh-format
msgid "$error dependency $depend installation failed"
msgstr ""
#: ../docs/iptv.sh:869
msgid "(Press <space> Select, <enter> Confirm)"
msgstr ""
#: ../docs/iptv.sh:1059
msgid "(Use up/down arrow to select)"
msgstr ""
#: ../docs/iptv.sh:1318
msgid "input verification failed"
msgstr ""
#: ../docs/iptv.sh:1403 ../docs/iptv.sh:1410
#, sh-format
msgid "$info Script downloading completed"
msgstr ""
#: ../docs/iptv.sh:1405 ../docs/iptv.sh:1448
#, sh-format
msgid "$error can't connect Github! Trying backup link..."
msgstr ""
#: ../docs/iptv.sh:1412
#, sh-format
msgid "$error can't connect backup link! Script downloading failed, try again later"
msgstr ""
#: ../docs/iptv.sh:1435
#, sh-format
msgid "$info updating script $sh_name..."
msgstr ""
#: ../docs/iptv.sh:1441 ../docs/iptv.sh:1453
#, sh-format
msgid "$info script $sh_name updating completed"
msgstr ""
#: ../docs/iptv.sh:1460
#, sh-format
msgid "$error can't connect backup link! Script $sh_name updating failed, try again later"
msgstr ""
#: ../docs/iptv.sh:1471
#, sh-format
msgid "$info Installing, please wait..."
msgstr ""
#: ../docs/iptv.sh:1512
msgid "Compiling python3, it takes awhile, do you want to continue"
msgstr ""
#: ../docs/iptv.sh:1540
#, sh-format
msgid "$info Installing python3 ..."
msgstr ""
#: ../docs/iptv.sh:1546
#, sh-format
msgid "$info Installing pip3 ..."
msgstr ""
#: ../docs/iptv.sh:1567
#, sh-format
msgid "$info Start downloading/installing FFmpeg..."
msgstr ""
#: ../docs/iptv.sh:1576
#, sh-format
msgid "$error FFmpeg downloading failed!"
msgstr ""
#: ../docs/iptv.sh:1579
#, sh-format
msgid "$error FFmpeg decompression failed!"
msgstr ""
#: ../docs/iptv.sh:1581
#, sh-format
msgid "$info FFmpeg installed"
msgstr ""
#: ../docs/iptv.sh:1583
#, sh-format
msgid "$info FFmpeg already installed"
msgstr ""
#: ../docs/iptv.sh:1593
#, sh-format
msgid "$error not support centos"
msgstr ""
#: ../docs/iptv.sh:1598
msgid "Choose tls"
msgstr ""
#: ../docs/iptv.sh:2397
#, sh-format
msgid "$info FFmpeg compiled successfully"
msgstr ""
#: ../docs/iptv.sh:2406 ../docs/iptv.sh:2426
#, sh-format
msgid "$info Start downloading/installing JQ..."
msgstr ""
#: ../docs/iptv.sh:2423 ../docs/iptv.sh:2433
#, sh-format
msgid "$info JQ installed"
msgstr ""
#: ../docs/iptv.sh:2436
#, sh-format
msgid "$error JQ downloading failed, try again!"
msgstr ""
#: ../docs/iptv.sh:2439 ../docs/iptv.sh:2614
#, sh-format
msgid "$error Can't connect server, try again later!"
msgstr ""
#: ../docs/iptv.sh:2442
#, sh-format
msgid "$info JQ already installed"
msgstr ""
#: ../docs/iptv.sh:2450
#, sh-format
msgid "$error directory already exists, uninstall first..."
msgstr ""
#: ../docs/iptv.sh:2553
#, sh-format
msgid "$info Installation completed"
msgstr ""
#: ../docs/iptv.sh:2559 ../docs/iptv.sh:2600 ../docs/iptv.sh:6150
#, sh-format
msgid "$error Not installed!"
msgstr ""
#: ../docs/iptv.sh:2562
msgid "Do you confirm deleting this script and files with it"
msgstr ""
#: ../docs/iptv.sh:2595
#, sh-format
msgid "$info Uninstallation completed"
msgstr ""
#: ../docs/iptv.sh:2621
msgid "monitoring need to be stopped, do you want to continue"
msgstr ""
#: ../docs/iptv.sh:2630
msgid "You already have the latest version of FFmpeg, do you want to reinstall it"
msgstr ""
#: ../docs/iptv.sh:2646
msgid "updating FFmpeg"
msgstr ""
#: ../docs/iptv.sh:2654
#, sh-format
msgid "script updated to the latest version [ ${green}$sh_new_ver${normal} ] ! (cmd: tv)"
msgstr ""
#: ../docs/iptv.sh:2659
#, sh-format
msgid "$info Installing youtube-dl..."
msgstr ""
#: ../docs/iptv.sh:2684
#, sh-format
msgid "$info openssl installation completed"
msgstr ""
#: ../docs/iptv.sh:2705
#, sh-format
msgid "$info magick installation completed"
msgstr ""
#: ../docs/iptv.sh:3039
#, sh-format
msgid "$FILE JQ fd 200 failed"
msgstr ""
#: ../docs/iptv.sh:3431 ../docs/iptv.sh:3462
#, sh-format
msgid "$error wrong sync settings"
msgstr ""
#: ../docs/iptv.sh:3532
#, sh-format
msgid "$info channel [ $chnl_channel_name ] sync succeed..."
msgstr ""
#: ../docs/iptv.sh:6100
msgid "random name"
msgstr ""
#: ../docs/iptv.sh:6102
msgid "same as playlist name"
msgstr ""
#: ../docs/iptv.sh:6107
#, sh-format
msgid "video delay $d_video_shift seconds"
msgstr ""
#: ../docs/iptv.sh:6111
#, sh-format
msgid "audio delay $d_audio_shift seconds"
msgstr ""
#: ../docs/iptv.sh:6246
#, sh-format
msgid "$error no channels found!"
msgstr ""
#: ../docs/iptv.sh:6350
msgid "Starting all stopped channels"
msgstr ""
#: ../docs/iptv.sh:6351
msgid "Stopping all running channels"
msgstr ""
#: ../docs/iptv.sh:6354
msgid "Restart all running channels"
msgstr ""
#: ../docs/iptv.sh:6358
msgid "channels count"
msgstr ""
#: ../docs/iptv.sh:6596
#, sh-format
msgid "Channel [$chnl_channel_name] configuration"
msgstr ""
#: ../docs/iptv.sh:6649
#, sh-format
msgid "$tip multiple numbers separated with space e.g. 5 7 9-11"
msgstr ""
#: ../docs/iptv.sh:6650
msgid "Input numbers(default: cancel): "
msgstr ""
#: ../docs/iptv.sh:6672
#, sh-format
msgid "$error stopped channel not found"
msgstr ""
#: ../docs/iptv.sh:6686 ../docs/iptv.sh:6701
#, sh-format
msgid "$error running channel not found"
msgstr ""
#: ../docs/iptv.sh:6717 ../docs/iptv.sh:6727
#, sh-format
msgid "$error wrong number"
msgstr ""
#: ../docs/iptv.sh:6891 ../docs/iptv.sh:16477 ../docs/iptv.sh:21777
#: ../docs/iptv.sh:21977 ../docs/iptv.sh:23680 ../docs/iptv.sh:23719
#: ../docs/iptv.sh:24103 ../docs/iptv.sh:27334 ../docs/iptv.sh:28355
#: ../docs/iptv.sh:30135 ../docs/iptv.sh:30163 ../docs/iptv.sh:32150
#: ../docs/iptv.sh:34627 ../docs/iptv.sh:38120 ../docs/iptv.sh:38167
#: ../docs/iptv.sh:38379 ../docs/iptv.sh:38915 ../docs/iptv.sh:39058
#: ../docs/iptv.sh:39339 ../docs/iptv.sh:39486 ../docs/iptv.sh:39628
#: ../docs/iptv.sh:40535
msgid "Input No."
msgstr ""
#: ../docs/iptv.sh:7031 ../docs/iptv.sh:7105 ../docs/iptv.sh:41127
msgid "Installing openssl"
msgstr ""
#: ../docs/iptv.sh:9417 ../docs/iptv.sh:9618 ../docs/iptv.sh:9625
msgid "Channel is running, stopping now"
msgstr ""
#: ../docs/iptv.sh:13702
msgid "pdf2htmlEX required. Compiling pdf2htmlEX, it takes awhile. Do you want to continue"
msgstr ""
#: ../docs/iptv.sh:16139
msgid "Installing imgcat"
msgstr ""
#: ../docs/iptv.sh:16256 ../docs/iptv.sh:16288
msgid "Registration is complete, login now"
msgstr ""
#: ../docs/iptv.sh:16350
msgid "Register an account"
msgstr ""
#: ../docs/iptv.sh:16405
msgid "old link detected. Do you want to replace it with this new link"
msgstr ""
#: ../docs/iptv.sh:21359
#, sh-format
msgid "Are you sure you want to permanently remove all $nginx_name files"
msgstr ""
#: ../docs/iptv.sh:21382
#, sh-format
msgid "Recompiling $nginx_name"
msgstr ""
#: ../docs/iptv.sh:21404
#, sh-format
msgid "$nginx_name is running, stopping now"
msgstr ""
#: ../docs/iptv.sh:21409
#, sh-format
msgid "$nginx_name is stopped, starting now"
msgstr ""
#: ../docs/iptv.sh:24573 ../docs/iptv.sh:30251
msgid "override old installation"
msgstr ""
#: ../docs/iptv.sh:27303
msgid "print QR code"
msgstr ""
#: ../docs/iptv.sh:29608
msgid "reset all traffic stats"
msgstr ""
#: ../docs/iptv.sh:31635
msgid "Deleting this domain anyway. Also remove domain from official website to add this domain again"
msgstr ""
#: ../docs/iptv.sh:31683
msgid "Do you want to delete all domains added with this CFP"
msgstr ""
#: ../docs/iptv.sh:31941
msgid "Updating this token"
msgstr ""
#: ../docs/iptv.sh:32359
msgid "directory already exits, add anyway"
msgstr ""
#: ../docs/iptv.sh:36252
msgid "Deleting IBM CF CLI, do you want to continue"
msgstr ""
#: ../docs/iptv.sh:38114 ../docs/iptv.sh:38149
msgid "VIP manager"
msgstr ""
#: ../docs/iptv.sh:38116 ../docs/iptv.sh:38154
msgid "View VIP channels"
msgstr ""
#: ../docs/iptv.sh:38117
msgid "Input VIP auth code"
msgstr ""
#: ../docs/iptv.sh:38119 ../docs/iptv.sh:38166
#, sh-format
msgid "$tip cmd: h => HLS manager, f => FLV manager"
msgstr ""
#: ../docs/iptv.sh:38143
#, sh-format
msgid "$error Intall first with cmd: tv"
msgstr ""
#: ../docs/iptv.sh:38151
msgid "View VIP user"
msgstr ""
#: ../docs/iptv.sh:38152
msgid "Add VIP user"
msgstr ""
#: ../docs/iptv.sh:38153
msgid "Config VIP user"
msgstr ""
#: ../docs/iptv.sh:38155
msgid "Add VIP channel"
msgstr ""
#: ../docs/iptv.sh:38156
msgid "Config VIP channel"
msgstr ""
#: ../docs/iptv.sh:38157
msgid "View VIP server"
msgstr ""
#: ../docs/iptv.sh:38158
msgid "Add VIP server"
msgstr ""
#: ../docs/iptv.sh:38159
msgid "Config VIP server"
msgstr ""
#: ../docs/iptv.sh:38160
msgid "Delete VIP user"
msgstr ""
#: ../docs/iptv.sh:38161
msgid "Delete VIP channel"
msgstr ""
#: ../docs/iptv.sh:38162
msgid "Delete VIP server"
msgstr ""
#: ../docs/iptv.sh:38163
msgid "Enable VIP"
msgstr ""
#: ../docs/iptv.sh:38164
msgid "Disable VIP"
msgstr ""
#: ../docs/iptv.sh:38249
msgid "Installing vim-plug and overriding ~/.vimrc, do you want to continue"
msgstr ""
#: ../docs/iptv.sh:38353
msgid "cmd: f => FLV manager, v => VIP manager"
msgstr ""
#: ../docs/iptv.sh:38357
msgid "cmd: h => HLS manager, v => VIP manager"
msgstr ""
#: ../docs/iptv.sh:38362
msgid "IPTV manager"
msgstr ""
#: ../docs/iptv.sh:38364
msgid "Install"
msgstr ""
#: ../docs/iptv.sh:38365
msgid "Uninstall"
msgstr ""
#: ../docs/iptv.sh:38366
msgid "Update"
msgstr ""
#: ../docs/iptv.sh:38368
msgid "View channel"
msgstr ""
#: ../docs/iptv.sh:38369
msgid "Add channel"
msgstr ""
#: ../docs/iptv.sh:38370
msgid "Config channel"
msgstr ""
#: ../docs/iptv.sh:38371
msgid "Toggle channel"
msgstr ""
#: ../docs/iptv.sh:38372
msgid "Restart channel"
msgstr ""
#: ../docs/iptv.sh:38373
msgid "View logs"
msgstr ""
#: ../docs/iptv.sh:38374
msgid "Delete channel"
msgstr ""
#: ../docs/iptv.sh:38375
msgid "Config default"
msgstr ""
#: ../docs/iptv.sh:38377
#, sh-format
msgid "$tip now: ${green}$title${normal} manager"
msgstr ""
#: ../docs/iptv.sh:38423
msgid "Usage: tv -i [input stream] [-s segment length(s)] [-o output directory name] [-c segments count] [-b bitrates] [-p HLS playlist name] [-C] [-l] [-P http proxy]"
msgstr ""
#: ../docs/iptv.sh:38424
msgid " -i input stream(support mpegts / hls / flv / youtube ...)"
msgstr ""
#: ../docs/iptv.sh:38425
msgid "can be path to local video"
msgstr ""
#: ../docs/iptv.sh:38426
msgid "you can input multiple stream links, separate with space"
msgstr ""
#: ../docs/iptv.sh:38427
msgid " -s segment length(s)(default: 6)"
msgstr ""
#: ../docs/iptv.sh:38428
msgid " -o output directory name(default: random)"
msgstr ""
#: ../docs/iptv.sh:38430
msgid " -l not live stream, in this case it can't be monitored nor set segments number(default: no)"
msgstr ""
#: ../docs/iptv.sh:38431
msgid " -P http proxy for FFmpeg, apply to http input stream(default: no)"
msgstr ""
#: ../docs/iptv.sh:38433
msgid " -p HLS playlist name(default: random)"
msgstr ""
#: ../docs/iptv.sh:38434
msgid " -c segments number in HLS playlist(default: 5)"
msgstr ""
#: ../docs/iptv.sh:38435
msgid " -S sub directory for segments(default: no)"
msgstr ""
#: ../docs/iptv.sh:38436
msgid " -t segments name(prefix)(default: same as playlist name)"
msgstr ""
#: ../docs/iptv.sh:38437
msgid " -a audio codec(default: aac) (e.g. copy)"
msgstr ""
#: ../docs/iptv.sh:38438
msgid " -v video codec(default: libx264) (e.g. copy)"
msgstr ""
#: ../docs/iptv.sh:38439
msgid " -f video or audio delay(e.g. v_3 video delay 3 seconds, a_2 audio delay 2 seconds)"
msgstr ""
#: ../docs/iptv.sh:38440
msgid " -d convert dvb teletext, options: text,ass (default: no)"
msgstr ""
#: ../docs/iptv.sh:38441
msgid " -q crf value(precedence over bitrates)(0-63 greater number worse video qualit), multiple crf can be separated by comma"
msgstr ""
#: ../docs/iptv.sh:38442
msgid "(default: crf not set)"
msgstr ""
#: ../docs/iptv.sh:38443
msgid " -b bitrates of the output video(kb/s)(default: 900-1280x720)"
msgstr ""
#: ../docs/iptv.sh:38444
msgid "If crf is set, bitrates value apply to -maxrate -bufsize"
msgstr ""
#: ../docs/iptv.sh:38445
msgid "If crf is not set you can continue to set const option of FFmpeg"
msgstr ""
#: ../docs/iptv.sh:38446
msgid "multiple bitrates can be separated by comma(in this case adaptive stream will be created)"
msgstr ""
#: ../docs/iptv.sh:38447
msgid "you can set video dimensions(e.g. -b 800-640x360,1000-960x540,1500-1280x720)"
msgstr ""
#: ../docs/iptv.sh:38448
msgid "input omit to skip this option"
msgstr ""
#: ../docs/iptv.sh:38449
msgid " -C constant bitrates(only work if crf not set)(default: no)"
msgstr ""
#: ../docs/iptv.sh:38450
msgid " -e encrypt segments(default: no)"
msgstr ""
#: ../docs/iptv.sh:38451
msgid " -K Key name(default: random)"
msgstr ""
#: ../docs/iptv.sh:38452
msgid " -z channel name(default: same as playlist name)"
msgstr ""
#: ../docs/iptv.sh:38453
msgid "push FLV stream instead of HLS"
msgstr ""
#: ../docs/iptv.sh:38454
msgid " -k push stream kind, e.g. -k flv"
msgstr ""
#: ../docs/iptv.sh:38455
msgid " -H push h265 stream(default: no)"
msgstr ""
#: ../docs/iptv.sh:38456
msgid " -T push address, e.g. rtmp://127.0.0.1/flv/xxx"
msgstr ""
#: ../docs/iptv.sh:38457
msgid " -L pull(play) address(default: omit). e.g. http://domain.com/flv?app=flv&stream=xxx"
msgstr ""
#: ../docs/iptv.sh:38458
msgid " -m more input flags for FFmpeg"
msgstr ""
#: ../docs/iptv.sh:38459 ../docs/iptv.sh:38465
msgid "default:"
msgstr ""
#: ../docs/iptv.sh:38462
msgid "If it's HLS input stream, remove -reconnect_at_eof 1"
msgstr ""
#: ../docs/iptv.sh:38463
msgid "If it's rtmp or local video, remove -reconnect 1 -reconnect_at_eof 1 -reconnect_streamed 1 -reconnect_delay_max 2000"
msgstr ""
#: ../docs/iptv.sh:38464
msgid " -n output flags for FFmpeg, input omit to skip this option"
msgstr ""
#: ../docs/iptv.sh:38467
msgid "Examples:"
msgstr ""
#: ../docs/iptv.sh:38468
msgid "Use crf to control video quality:"
msgstr ""
#: ../docs/iptv.sh:38469
msgid "tv -i http://xxx.com/xxx.ts -s 6 -o hbo1 -p hbo1 -q 15 -b 1500-1280x720 -z 'hbo stream 1'"
msgstr ""
#: ../docs/iptv.sh:38470
msgid "Use bitrates to control video quality[default]:"
msgstr ""
#: ../docs/iptv.sh:38471
msgid "tv -i http://xxx.com/xxx.ts -s 6 -o hbo2 -p hbo2 -b 900-1280x720 -z 'hbo stream 2'"
msgstr ""
#: ../docs/iptv.sh:38472
msgid "If no need converting:"
msgstr ""
#: ../docs/iptv.sh:38473
msgid "Push FLV instead of HLS:"
msgstr ""
#: ../docs/iptv.sh:38476
msgid "Shortcuts:"
msgstr ""
#: ../docs/iptv.sh:38477
msgid "tv # open HLS manager"
msgstr ""
#: ../docs/iptv.sh:38478
msgid "tv l # list all running channels"
msgstr ""
#: ../docs/iptv.sh:38479
msgid "tv d # add demo channels"
msgstr ""
#: ../docs/iptv.sh:38480
msgid "tv e # mannual editing channels.json"
msgstr ""
#: ../docs/iptv.sh:38481
msgid "tv f # open FLV manager"
msgstr ""
#: ../docs/iptv.sh:38482
msgid "tv v # open VIP manager"
msgstr ""
#: ../docs/iptv.sh:38483
msgid "tv m # start monitoring"
msgstr ""
#: ../docs/iptv.sh:38484
msgid "tv m l [lines count] # view monitoring log"
msgstr ""
#: ../docs/iptv.sh:38485
msgid "tv m s # stop monitoring"
msgstr ""
#: ../docs/iptv.sh:38486
msgid "tv s # tv guide manager"