Disable webtorrent support in client

pull/2286/head
Chocobozzz 2019-11-21 17:01:24 +01:00
parent d441f2ed78
commit 5a71acd254
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
10 changed files with 44 additions and 9 deletions

View File

@ -491,6 +491,23 @@
</my-peertube-checkbox>
</div>
<ng-container formGroupName="webtorrent">
<div class="form-group" >
<my-peertube-checkbox
inputName="transcodingWebTorrentEnabled" formControlName="enabled"
i18n-labelText labelText="WebTorrent support enabled"
>
<ng-template ptTemplate="help">
<ng-container i18n>
<strong>Experimental, we suggest you to not disable webtorrent support for now</strong>
<p>If you also enabled HLS support, it will multiply videos storage by 2</p>
</ng-container>
</ng-template>
</my-peertube-checkbox>
</div>
</ng-container>
<ng-container formGroupName="hls">
<div class="form-group" >
<my-peertube-checkbox
@ -499,7 +516,7 @@
>
<ng-template ptTemplate="help">
<ng-container i18n>
<strong>Requires ffmpeg >= 4.1 and multiplies videos storage by 2!</strong>
<strong>Requires ffmpeg >= 4.1</strong>
<p>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:</p>
<ul>
@ -507,6 +524,8 @@
<li>Faster playback in particular with long videos</li>
<li>More stable playback (less bugs/infinite loading)</li>
</ul>
<p>If you also enabled WebTorrent support, it will multiply videos storage by 2</p>
</ng-container>
</ng-template>
</my-peertube-checkbox>

View File

@ -169,6 +169,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit {
resolutions: {},
hls: {
enabled: null
},
webtorrent: {
enabled: null
}
},
autoBlacklist: {

View File

@ -65,6 +65,9 @@ export class ServerService {
enabledResolutions: [],
hls: {
enabled: false
},
webtorrent: {
enabled: true
}
},
avatar: {

View File

@ -9,7 +9,7 @@
<div class="input-group input-group-sm">
<div class="input-group-prepend peertube-select-container">
<select [(ngModel)]="resolutionId">
<option *ngFor="let file of video?.files" [value]="file.resolution.id">{{ file.resolution.label }}</option>
<option *ngFor="let file of getVideoFiles()" [value]="file.resolution.id">{{ file.resolution.label }}</option>
</select>
</div>
<input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getLink()" />

View File

@ -24,12 +24,18 @@ export class VideoDownloadComponent {
private i18n: I18n
) { }
getVideoFiles () {
if (!this.video) return []
return this.video.getFiles()
}
show (video: VideoDetails) {
this.video = video
this.activeModal = this.modalService.open(this.modal)
this.resolutionId = this.video.files[0].resolution.id
this.resolutionId = this.getVideoFiles()[0].resolution.id
}
onClose () {
@ -45,7 +51,7 @@ export class VideoDownloadComponent {
// HTML select send us a string, so convert it to a number
this.resolutionId = parseInt(this.resolutionId.toString(), 10)
const file = this.video.files.find(f => f.resolution.id === this.resolutionId)
const file = this.getVideoFiles().find(f => f.resolution.id === this.resolutionId)
if (!file) {
console.error('Could not find file with resolution %d.', this.resolutionId)
return

View File

@ -55,4 +55,8 @@ export class VideoDetails extends Video implements VideoDetailsServerModel {
hasHlsPlaylist () {
return !!this.getHlsPlaylist()
}
getFiles () {
if (this.files.length === 0) return this.getHlsPlaylist().files
}
}

View File

@ -56,7 +56,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit {
this.schedulePublicationPossible = this.video.privacy === VideoPrivacy.PRIVATE
const videoFiles = (video as VideoDetails).files
const videoFiles = (video as VideoDetails).getFiles()
if (videoFiles.length > 1) { // Already transcoded
this.waitTranscodingEnabled = false
}

View File

@ -221,7 +221,7 @@
</div>
</div>
<ng-template [ngIf]="video !== null">
<ng-container *ngIf="video !== null">
<my-video-support #videoSupportModal [video]="video"></my-video-support>
<my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions"></my-video-share>
</ng-template>
</ng-container>

View File

@ -469,7 +469,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
trackerAnnounce: this.video.trackerUrls,
videoFiles: this.video.files
videoFiles: hlsPlaylist.files
} as P2PMediaLoaderOptions
Object.assign(options, { p2pMediaLoader })

View File

@ -207,7 +207,7 @@ export class PeerTubeEmbed {
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
trackerAnnounce: videoInfo.trackerUrls,
videoFiles: videoInfo.files
videoFiles: hlsPlaylist.files
} as P2PMediaLoaderOptions
})
}