-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
778 lines (724 loc) · 43.9 KB
/
index.html
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
---
---
{%- include release_data.html -%}
{%- include head.html
bodyID = "main-page"
extraCSS = "home.css"
page = "False" %}
<!-- parallax background for header -->
<div class="header-background"></div>
<!-- header-wrapper -->
<div class="header-wrapper">
<!-- navigation -->
<div id="navbar-wrapper">
<div class="container">
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand visible-xs" href="#">NewPipe</a>
</div>
<div id="navbar" class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<li class="active"><a href="{{ site.baseurl }}/">Home</a></li>
<li><a href="{{ site.baseurl }}/FAQ/">FAQ</a></li>
<li><a href="{{ site.baseurl }}/blog/">Blog</a></li>
<li><a href="{{ site.baseurl }}/press/">Press</a></li>
<li><a href="https://github.com/TeamNewPipe/NewPipe/">GitHub</a></li>
<li><a href="https://teamnewpipe.github.io/documentation/">Docs <span class="badge">BETA</span></a></li>
<li><a href="https://github.com/TeamNewPipe/NewPipe/releases/">Releases</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div> <!-- navigation -->
<!-- header-box -->
<div class="header-box-wrapper">
<div class="container container-double">
<div class="header-text pull-left">
<h1 class="hidden-xs">NewPipe</h1>
<br class="hidden-xs">
<h3>The lightweight<br>YouTube experience<br>for Android</h3>
</div>
<div class="logo">
<img src="{{ site.baseurl }}/img/logo.svg" class="img-circle border-white" alt="NewPipe logo" />
</div>
<div class="get-newpipe-wrapper">
<a href="#download">
<img src="{{ site.baseurl }}/img/Get_NewPipe_logo_large.svg" class="newpipe" alt="get NewPipe" />
</a>
</div>
<div class="phone hidden-xs">
<video id="animation" src="{{ site.baseurl }}/img/newpipe_promotion_video.webm" preload='none' loop muted playsinline></video>
<img src="{{ site.baseurl }}/img/fairphone_device_frame.png" alt="NewPipe running on a Fairphone" />
</div>
</div>
</div> <!-- header-box -->
</div> <!-- header-wrapper -->
<!-- first text box -->
<div id="text-1">
<div class="container container-double">
<div id="text-1-wrapper">
<div class="row">
<div class="col-sm-6">
<p><strong>Do you like watching videos on YouTube but want an intuitive, feature-rich and privacy friendly app for that?</strong></p>
<p class="text-justify-md"><span class="red">NewPipe</span> has been created with the purpose of getting the original YouTube experience on your smartphone without annoying ads and questionable permissions.</p>
<p>The application is open source and you can check on it at <a href="https://github.com/TeamNewPipe/NewPipe/">GitHub</a>.</p>
</div>
</div>
</div>
<!-- separator -->
<div class="row">
<div class="col-md-12">
<hr class="visible-xs separator" />
</div>
</div>
</div>
</div> <!-- first text box -->
<!-- features -->
<div id="features">
<div class="container container-double">
<h3 id="features-title">Main Features</h3>
</div>
<div class="container container-double">
<div class="row is-flex">
<div class="col-md-9 feature-detail" id="lightweight">
<h3 class="newpipe-title">NewPipe - the smart streaming solution</h3>
<div class="feature-description">
<div class="row">
<div class="col-sm-6">
<div class="single-chart">
<svg viewbox="0 0 36 36" class="circular-chart red">
<path class="circle-bg"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
<path class="circle in"
stroke-dasharray="80, 100"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
</svg>
<span class="circle-text"><i class="fa fa-bolt"></i></span>
</div>
<p class="text-center">Fast</p>
</div> <!-- fast -->
<div class="col-sm-6">
<div class="single-chart">
<svg viewbox="0 0 36 36" class="circular-chart red">
<path class="circle-bg"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
<path class="circle"
stroke-dasharray="87, 100"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
</svg>
<span class="circle-text fa-mobile-wrapper"><i class="fa fa-mobile"></i></span>
</div>
<p class="text-center">Small</p>
</div> <!-- size -->
<div class="col-sm-6">
<div class="single-chart">
<svg viewbox="0 0 36 36" class="circular-chart red">
<path class="circle-bg"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
<path class="circle"
stroke-dasharray="97, 100"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
</svg>
<span class="circle-text"><i class="fa fa-battery"></i></span>
</div>
<p class="text-center">Battery Saving</p>
</div> <!-- battery -->
<div class="col-sm-6">
<div class="single-chart">
<svg viewbox="0 0 36 36" class="circular-chart red">
<path class="circle-bg"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
<path class="circle in"
stroke-dasharray="90, 100"
d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831"
/>
</svg>
<span class="circle-text"><i class="fa fa-signal"></i></span>
</div>
<p class="text-center">Little Data Consumption</p>
</div> <!-- data -->
</div>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="offline-usage">
<h3>Offline usage</h3>
<div class="feature-media">
<img src="/img/screenshots/shot_02.png" class="img-responsive active" alt="offline functionality" loading="lazy" />
<!--<img src="/img/screenshots/shot_03.png" class="img-responsive" />-->
</div>
<div class="feature-description">
<p><strong>Customize your offline experience:</strong></p>
<ul>
<li>Set title</li>
<li>Choose between video, audio or captions</li>
<li>Select the most suitable file format</li>
<li>Use the resolution you need</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="privacy" >
<h3>Extended Privacy</h3>
<div class="feature-media">
<img src="/img/privacy_written_in_tiles.jpg" class="img-responsive" alt="privacy spelled" loading="lazy" />
</div>
<div class="feature-description">
<p><strong>We protect your privacy</strong></p>
<ul>
<li>No proprietary Google APIs</li>
<li>Only send information which are required to get video and channel details</li>
<li>Decide what information we keep</li>
<li>We store everything offline on your device</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="background">
<h3>Background Player</h3>
<div class="feature-media">
<img src="/img/screenshots/shot_06.png" class="img-responsive" alt="background playlist" loading="lazy" />
</div>
<div class="feature-description">
<p><strong>Listen to your favourite music while using other apps:</strong></p>
<ul>
<li>Play in background</li>
<li class="text-success">Pro tip: close NewPipe to save RAM and battery</li>
<li>Create playlists for an endless music experience</li>
<li>Save mobile data volume (we only download the audio)</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="popup">
<h3>Popup Player</h3>
<div class="feature-media">
<img src="/img/screenshots/shot_05.png" class="img-responsive" alt="popup player in browser app" loading="lazy" />
</div>
<div class="feature-description">
<p><strong>Never stop playing!</strong></p>
<ul>
<li>View videos whenever you like</li>
<li>Resize and move it wherever you like</li>
<li>Use the full comfort of our normal video player</li>
<li class="text-success">Pro tip: switch between all players with one click</li>
<li>Available for all Android versions</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="subscriptions">
<h3>Subscriptions</h3>
<div class="feature-media">
<img src="/img/screenshots/shot_09.png" class="img-responsive" alt="subscriptions list" loading="lazy" />
</div>
<div class="feature-description">
<p><strong>Never miss updates again:</strong></p>
<ul>
<li>Subscribe to a channel with one click</li>
<li>Use your custom feed</li>
<li>Watch your favourite channels</li>
<li>Easily import and export your local subscriptions from other devices</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="bookmarks">
<h3>Bookmarks and Local Playlists</h3>
<div class="feature-media">
<img src="/img/screenshots/shot_14.png" class="img-responsive" alt="bookmark view" loading="lazy" />
</div>
<div class="feature-description">
<p><strong>Endless music</strong></p>
<ul>
<li>Create your own playlists</li>
<li>Import playlists</li>
<li>Mark your favourite videos</li>
<li class="text-success">Import your data on other devices to save time</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<div class="col-md-9 feature-detail" id="history">
<h3>History</h3>
<div class="feature-media">
<img src="/img/screenshots/shot_history_last_played_dark.png" class="img-responsive" alt="watched history" loading="lazy" />
</div>
<div class="feature-description">
<p><strong>Go back in time</strong></p>
<ul>
<li>Watch your favourites again</li>
<li>Search suggestions based on your last searches</li>
<li>Easily open what you watch most</li>
<li class="text-success">Control what we keep for you</li>
</ul>
</div>
<div class="feature-close-detail">
<i class="fa fa-arrow-left"></i>
</div>
</div>
<!-- Sidebar -->
<div class="col-md-3" id="features-sidebar">
<div class="list-group">
<a href="#lightweight">
<div class="list-group-item active">
<span class="icon"><i class="fa fa-bolt"></i></span> Lightweight
</div>
</a>
<a href="#offline-usage">
<div class="list-group-item">
<span class="icon"><i class="fa fa-download"></i></span> Offline usage
</div>
</a>
<a href="#privacy">
<div class="list-group-item">
<span class="icon"><i class="fa fa-lock"></i></span> Extended Privacy
</div>
</a>
<a href="#background">
<div class="list-group-item">
<span class="icon"><i class="fa fa-volume-up"></i></span> Background Player
</div>
</a>
<a href="#popup">
<div class="list-group-item">
<span class="icon"><i class="fa fa-window-maximize"></i></span> Popup Player
</div>
</a>
<a href="#subscriptions">
<div class="list-group-item">
<span class="icon"><i class="fa fa-feed"></i></span> Subscriptions
</div>
</a>
<a href="#bookmarks">
<div class="list-group-item">
<span class="icon"><i class="fa fa-bookmark"></i></span> Bookmarks
</div>
</a>
<a href="#history">
<div class="list-group-item">
<span class="icon"><i class="fa fa-history"></i></span> History
</div>
</a>
<!--<a href="#4k">
<div class="list-group-item">
<span class="icon"><i class="fa fa-podcast"></i></span> Live
</div>
</a>-->
</div>
</div>
</div>
</div>
</div> <!-- features -->
<!-- tiles -->
<div class="tiles-container">
<div class="container container-double">
<div class="row is-flex">
<div class="col-xs-12">
<hr class="separator hidden visible-xs" />
</div>
<div class="col-xs-12" id="services">
<h3 class="title">Supported Services</h3>
<div class="row is-flex">
<div class="tile service-tile" id="service-youtube">
<div class="service-title">YouTube</div>
<div class="service-description">
YouTube is one of the most popular video and live streaming platforms, including music, news, gaming and much more.
</div>
<a class="service-link" href="https://youtube.com">visit service website</a>
</div>
<div class="tile service-tile" id="service-peertube">
<!--<div class="service-logo"><img src="/img/peertube-brand.png" alt="PeerTube" class="img-responsive"/></div>-->
<div class="service-title">PeerTube</div>
<div class="service-description">
PeerTube is a decentralized video platform.<br>
Any PeerTube instance can be added to NewPipe.
</div>
<a class="service-link" href="https://joinpeertube.org">visit service website</a>
</div>
<div class="tile service-tile" id="service-soundcloud">
<div class="service-title">SoundCloud</div>
<div class="service-description">
SoundCloud is a streaming platform for music.
</div>
<a class="service-link" href="https://soundcloud.com">visit service website</a>
</div>
<div class="tile service-tile" id="service-bandcamp">
<!--<div class="service-logo"></div>-->
<div class="service-title">Bandcamp</div>
<div class="service-description">
Bandcamp is an artist-friendly platform for sharing music.<br>
It offers user-friendly DRM-free downloads.
</div>
<a class="service-link" href="https://bandcamp.com">visit service website</a>
</div>
<div class="tile service-tile" id="service-mediacccde">
<div class="service-title">media.ccc.de</div>
<div class="service-description">
media.ccc.de is the video archive and live streaming platform of the German hacker and information security activist group <a href="https://ccc.de">Chaos Computer Club</a>.
</div>
<a class="service-link" href="https://media.ccc.de/">visit service website</a>
</div>
<div class="clearfix"></div>
<div class="col-xs-12 text-center" style="margin-top: 15px">
<div class="button action" style="background-color: green">And more to come!</div>
</div>
</div>
</div>
<div class="col-xs-12">
<hr class="separator hidden-md" />
</div>
<!-- User Voices -->
<div class="col-xs-12 tile" id="user-voices">
<h3>What other people think</h3>
<div id="user-voices-carousel" class="carousel slide" data-ride="carousel" data-interval="6000">
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active"> <!-- @Bubu -->
<div class="user-thumbnail">
<a href="https://github.com/TeamNewPipe/NewPipe/issues/1153#issuecomment-375478646">
<img src="{{ site.baseurl }}/img/bubu_thumbnail.jpg" class="img-responsive img-circle" alt="Marcus Hoffman thumbnail" loading="lazy" />
</a>
</div>
<p class="user-name">
<a href="https://github.com/TeamNewPipe/NewPipe/issues/1153#issuecomment-375478646">
Marcus Hoffmann
</a>
</p>
<p class="user-statement">one of the most used apps on my Phone</p>
</div>
<div class="item">
<div class="user-thumbnail">
<i class="fa fa-user-circle-o"></i>
</div>
<p class="user-name">
<a href="{{ site.url }}/blog/pinned/NewPipe-needs-feedback/#isso-12">
Neil Simpson
</a>
</p>
<p class="user-statement">Such a great app - it is probably the app I use most on my phone!</p>
</div>
<div class="item">
<div class="user-thumbnail">
<i class="fa fa-user-circle-o"></i>
</div>
<p class="user-name">
<a href="{{ site.url }}/blog/pinned/NewPipe-needs-feedback/#isso-8">
Sarah Ann Berger
</a>
</p>
<p class="user-statement">You really do have a quality app, which is a rarity. </p>
</div>
<div class="item">
<div class="user-thumbnail">
<i class="fa fa-user-circle-o"></i>
</div>
<p class="user-name">
<a href="{{ site.url }}/blog/pinned/NewPipe-needs-feedback/#isso-16">
Arthur Reeder
</a>
</p>
<p class="user-statement">NewPipe is one of the best applications on mobile today.</p>
</div>
</div>
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#user-voices-carousel" data-slide-to="0" class="active"></li>
<li data-target="#user-voices-carousel" data-slide-to="1"></li>
<li data-target="#user-voices-carousel" data-slide-to="2"></li>
<li data-target="#user-voices-carousel" data-slide-to="3"></li>
</ol>
<!-- Controls: not displayed but needed to get preventJumpingPage() working
Pausing the Carousel won't work without controls. Don't ask me why :)
-->
<a class="left carousel-control" href="#user-voices-carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#user-voices-carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Download -->
<div class="col-xs-12" id="download">
<h3 class="title">Get NewPipe</h3>
</div>
<div class="col-xs-12 tile tile-bordered" id="download1">
<div class="row is-flex">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4 tri-col" id="download1-direct-download">
<div class="download-version-container">
<div class="download-version-icon">
<img src="img/logo_app.svg" class="img-responsive" alt="NewPipe icon" loading="lazy" />
</div>
<div class="download-version-requirements">
Android 5+
</div>
<div class="download-version-button">
<a href="https://github.com/TeamNewPipe/NewPipe/releases" data-newpipe-api="flavors.newpipe.apk" data-newpipe-api-attribute="href" class="button action">
<i class="fa fa-download"></i> NewPipe <span data-newpipe-api="flavors.newpipe.version"></span>
</a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4 tri-col" id="download1-apk-info">
<div class="download-info-container">
<div class="download-info-heading">
<h4>APK Info</h4>
</div>
<div class="download-info-content">
<p>Hash sum: <span data-newpipe-api="flavors.newpipe.hash_type">hashing algorithm not available</span>
<code data-newpipe-api="flavors.newpipe.hash">hash sum not available</code>
</p>
<p>
Signing key (SHA256 fingerprint):
<code>CB:84:06:9B:D6:81:16:BA:FA:E5:EE:4E:E5:B0:8A:56:7A:A6:D8:98:40:4E:7C:B1:2F:9E:75:6D:F5:CF:5C:AB</code>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 tri-col" id="download1-release-highlights">
<div class="download-info-container">
<div class="download-info-heading">
<h4>Release Highlights</h4>
</div>
<div class="download-info-content">
<div id="download-info-changelog">
{{ releaseChangelog }}
{%- if releasePostUrl and releasePostUrl != empty %}
<p class="text-center"><a href="{{ releasePostUrl }}" class="button button-small action grey">Blog post</a></p>
{%- endif %}
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12" id="download1-fdroid-newpipe-repo">
<div class="row is-flex">
<div class="col-md-5 col-lg-4" id="download-newpipe-qr-code-container-col">
<div id="download-newpipe-qr-code-container">
<a href="https://archive.newpipe.net/fdroid/repo/?fingerprint=E2402C78F9B97C6C89E97DB914A2751FDA1D02FE2039CC0897A462BDB57E7501">
<img src="/img/fdroid-repo-qrcode.svg" class="img-responsive fdroid-repo-qrcode" alt="Link to our F-Droid repo" />
</a>
</div>
</div>
<div class="col-md-7 col-lg-8">
<div class="fdroid-col-right">
<h4>Faster updates</h4>
<p>You can also add our own F-Droid repository to your client to receive updates even faster.</p>
<p><a class="break-line" href="https://archive.newpipe.net/fdroid/repo/?fingerprint=E2402C78F9B97C6C89E97DB914A2751FDA1D02FE2039CC0897A462BDB57E7501">https://archive.newpipe.net/fdroid/repo/?fingerprint=E2402C78F9B97C6C89E97DB914A2751FDA1D02FE2039CC0897A462BDB57E7501</a></p>
<div class="hidden-md hidden-lg">
<p id="f-droid-qr-code-toggle" class="text-center"><i class="fa fa-chevron-right"></i> <span class="f-droid-qr-code-toggled shown">Show</span><span class="f-droid-qr-code-toggled hidden">Hide</span> QR-code</p>
<p class="text-center">
<a id="f-droid-repo-qr-code" href="https://archive.newpipe.net/fdroid/repo/?fingerprint=E2402C78F9B97C6C89E97DB914A2751FDA1D02FE2039CC0897A462BDB57E7501" class="hidden f-droid-qr-code-toggled">
<img src="https://f-droid.org/assets/download-fdroid-qr.png" class="img-responsive" alt="URL to our F-Droid repo"/>
</a>
</p>
</div>
<p class="text-center text-left-md"><a class="button button-small action grey" href="{{ site.baseurl }}/FAQ/tutorials/install-add-fdroid-repo/">Learn more</a></p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12" id="download1-fdroid">
<p><a href="https://f-droid.org/"><img src="img/fdroid-logo.svg" class="img-responsive fdroid-logo" alt="F-Droid logo" /> F-Droid</a> is a trusted catalogue of Free and Open Source applications for Android.</p>
<p>Install the F-Droid app to get notified about updates. It enables you to download and update them too.</p>
<div>
<p>If you install NewPipe via the default F-Droid repo, updates for NewPipe might take their time to arrive for you. If you want to use our own repository, check out the next item in this slideshow.</p>
<a href="https://f-droid.org/packages/org.schabi.newpipe/" target="_blank">
<img src="/img/f-droid.svg" class="f-droid" alt="get it on F-Droid">
</a>
</div>
<p><a href=" https://f-droid.org/en/about/#terms-etc">F-Droid respects your privacy. They don’t track you, or your device.</a><br />
We would like to thank them for providing their services in this way.
</p>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 tri-col" id="download1-installation-help">
<div class="download-info-container">
<div class="download-info-heading">
<h4>Need help?</h4>
</div>
<div class="download-info-content">
<div id="download-info-help">
<ul>
<li>Did you enable unknown sources?</li>
<li>Do you have problems updating?</li>
</ul>
<p class="text-center">
<!--<a href="#" class="button button-small action grey">Read more</a>-->
<a href="{{ site.baseurl }}/FAQ/install/" class="button button-small action grey">First steps</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- disabled until we have enough tutorials and FAQs
<div class="col-xs-12">
<h3 class="title">Get Started</h3>
</div>
<div class="col-xs-12 tile tile-bordered" id="get-started">
<div class="row">
<div class="col-xs-12">
<h4>Try our tutorials and read the FAQ</h4>
</div>
</div>
<div class="row is-flex">
<div class="col-xs-12 col-md-4">
<div class="content">
Set up NewPipe to work best with your conditions.
</div>
</div>
<a class="col-xs-12 col-md-4" href="#"><i class="fa fa-caret-right"></i> First steps</a>
<div class="col-xs-12 col-md-4">
<div class="content">
Are you low on mobile data and have no WiFi?<br>We show you how to save data with NewPipe
</div>
</div>
<a class="col-xs-12 col-md-4" href="#"><i class="fa fa-caret-right"></i> Save Data</a>
<div class="col-xs-12 col-md-4">
<div class="content">
NewPipe has a bunch of hidden features.<br>Don't believe us?<br>Check it out!
</div>
</div>
<a class="col-xs-12 col-md-4" href="#"><i class="fa fa-caret-right"></i> Learn more</a>
</div>
<div class="row text-center border-none">
<a class="col-xs-6" href="#">
<i class="fa fa-chevron-right"></i> Tutorials
</a>
<a class="col-xs-6" href="#">
<i class="fa fa-chevron-right"></i> FAQ
</a>
</div>
</div>
-->
<!-- Open Source -->
<div class="col-xs-12">
<hr class="separator" />
</div>
<div class="col-xs-12 tile" id="tile-opensource">
<div class="tile-media">
<a href="https://github.com/TeamNewPipe/NewPipe">
<img src="/img/newpipe_on_github.svg" class="img-responsive" alt="NewPipe on GitHub" loading="lazy" />
</a>
</div>
<div class="tile-description">
<h4>NewPipe is free and open source</h4>
<p><strong>Your advantages</strong></p>
<ul class="check">
<li>Quick help when you have a problem (nobody's ever had one)</li>
<li>Dozens of people bring NewPipe forward and translate it into <a href="https://hosted.weblate.org/engage/NewPipe/"><span data-newpipe-api="stats.translations">60+</span> languages</a>.</li>
<li>You can check the source code on <a href="https://github.com/TeamNewPipe/NewPipe">GitHub</a> and contribute to NewPipe.</li>
<li>NewPipe is covered by the <a href="https://github.com/TeamNewPipe/NewPipe/blob/master/LICENSE">GPL 3.0 license</a>.</li>
<li>Get NewPipe from <a href="https://f-droid.org/packages/org.schabi.newpipe/">F-Droid</a> and discover more FOSS apps.</li>
<li class="text-success">NewPipe is available for free</li>
</ul>
<p class="button-wrapper">
<a href="https://github.com/TeamNewPipe/NewPipe/blob/dev/.github/CONTRIBUTING.md#newpipe-contribution-guidelines" class="button action">Contribute</a>
<a href="https://github.com/TeamNewPipe/NewPipe/" class="button action"><i class="fa fa-star"></i> <span data-newpipe-api="stats.stargazers">25k</span></a>
<a href="https://hosted.weblate.org/engage/NewPipe/" class="button action">Translate</a>
<a href="https://github.com/TeamNewPipe/website/" class="button action grey" >Improve this site</a>
</p>
</div>
</div>
<div class="clearfix"></div>
<!-- Support -->
<div class="col-xs-12">
<h3 class="title">Support NewPipe</h3>
</div>
<div class="col-md-6 tile tile-left" id="tile-free">
<h4>Why NewPipe is free</h4>
<ul class="check">
<li class="heart">We love what we are doing</li>
<li>NewPipe is powered by a growing community</li>
<li>Our goal is to make the internet a more free (libre) place and open it for everyone</li>
<li>Your donations cover a majority of our costs</li>
<li class="text-success">F-Droid, Weblate, Sentry and other companies offer their services to open source projects for free</li>
</ul>
</div>
<div class="col-md-6 tile tile-right" id="tile-like-np">
<h4>Like the idea?</h4>
<p>We hope so! But don't forget, a lot of time and energy goes into this, and we share it with you.</p>
<p>We offer you ways to support our work by donations - so we can get some <strong class="red">extra snacks during work!</strong></p>
</div>
</div>
</div>
</div> <!-- tiles -->
<!-- donate -->
<div id="donate">
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Bring NewPipe forward</h3>
</div>
<div class="col-md-4 text-center">
<p><a href="{{ site.baseurl }}/donate/" class="button button-large action">Donate</a></p>
</div>
<div class="col-md-4">
<h3>Support our developers</h3>
</div>
</div>
</div>
</div> <!-- donate -->
{% include footer.html buffer=False %}
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="{{ site.baseurl }}/bootstrap/js/bootstrap.min.js"></script>
<!-- Script for parallax animations -->
<script async src="{{ site.baseurl }}/js/parallax.js"></script>
<!-- Script for feature animations -->
<script async src="{{ site.baseurl }}/js/features.js"></script>
<script defer src="{{ site.baseurl }}/js/tiles.js"></script>
<script defer src="{{ site.baseurl }}/js/web-api.js"></script>
<script src="{{ site.baseurl }}/js/swipe.js"></script>
<!-- Script to handle touch and swipe events on carousels-->
<!-- Load and play animation on medium and large screens -->
<script src="{{ site.baseurl }}/js/index.js"></script>
</body>
</html>