mirror of https://github.com/Chocobozzz/PeerTube
Disable webtorrent support in client
parent
d441f2ed78
commit
5a71acd254
|
@ -491,6 +491,23 @@
|
||||||
</my-peertube-checkbox>
|
</my-peertube-checkbox>
|
||||||
</div>
|
</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">
|
<ng-container formGroupName="hls">
|
||||||
<div class="form-group" >
|
<div class="form-group" >
|
||||||
<my-peertube-checkbox
|
<my-peertube-checkbox
|
||||||
|
@ -499,7 +516,7 @@
|
||||||
>
|
>
|
||||||
<ng-template ptTemplate="help">
|
<ng-template ptTemplate="help">
|
||||||
<ng-container i18n>
|
<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>
|
<p>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -507,6 +524,8 @@
|
||||||
<li>Faster playback in particular with long videos</li>
|
<li>Faster playback in particular with long videos</li>
|
||||||
<li>More stable playback (less bugs/infinite loading)</li>
|
<li>More stable playback (less bugs/infinite loading)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<p>If you also enabled WebTorrent support, it will multiply videos storage by 2</p>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</my-peertube-checkbox>
|
</my-peertube-checkbox>
|
||||||
|
|
|
@ -169,6 +169,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit {
|
||||||
resolutions: {},
|
resolutions: {},
|
||||||
hls: {
|
hls: {
|
||||||
enabled: null
|
enabled: null
|
||||||
|
},
|
||||||
|
webtorrent: {
|
||||||
|
enabled: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
autoBlacklist: {
|
autoBlacklist: {
|
||||||
|
|
|
@ -65,6 +65,9 @@ export class ServerService {
|
||||||
enabledResolutions: [],
|
enabledResolutions: [],
|
||||||
hls: {
|
hls: {
|
||||||
enabled: false
|
enabled: false
|
||||||
|
},
|
||||||
|
webtorrent: {
|
||||||
|
enabled: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
avatar: {
|
avatar: {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<div class="input-group input-group-sm">
|
<div class="input-group input-group-sm">
|
||||||
<div class="input-group-prepend peertube-select-container">
|
<div class="input-group-prepend peertube-select-container">
|
||||||
<select [(ngModel)]="resolutionId">
|
<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>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getLink()" />
|
<input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getLink()" />
|
||||||
|
|
|
@ -24,12 +24,18 @@ export class VideoDownloadComponent {
|
||||||
private i18n: I18n
|
private i18n: I18n
|
||||||
) { }
|
) { }
|
||||||
|
|
||||||
|
getVideoFiles () {
|
||||||
|
if (!this.video) return []
|
||||||
|
|
||||||
|
return this.video.getFiles()
|
||||||
|
}
|
||||||
|
|
||||||
show (video: VideoDetails) {
|
show (video: VideoDetails) {
|
||||||
this.video = video
|
this.video = video
|
||||||
|
|
||||||
this.activeModal = this.modalService.open(this.modal)
|
this.activeModal = this.modalService.open(this.modal)
|
||||||
|
|
||||||
this.resolutionId = this.video.files[0].resolution.id
|
this.resolutionId = this.getVideoFiles()[0].resolution.id
|
||||||
}
|
}
|
||||||
|
|
||||||
onClose () {
|
onClose () {
|
||||||
|
@ -45,7 +51,7 @@ export class VideoDownloadComponent {
|
||||||
// HTML select send us a string, so convert it to a number
|
// HTML select send us a string, so convert it to a number
|
||||||
this.resolutionId = parseInt(this.resolutionId.toString(), 10)
|
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) {
|
if (!file) {
|
||||||
console.error('Could not find file with resolution %d.', this.resolutionId)
|
console.error('Could not find file with resolution %d.', this.resolutionId)
|
||||||
return
|
return
|
||||||
|
|
|
@ -55,4 +55,8 @@ export class VideoDetails extends Video implements VideoDetailsServerModel {
|
||||||
hasHlsPlaylist () {
|
hasHlsPlaylist () {
|
||||||
return !!this.getHlsPlaylist()
|
return !!this.getHlsPlaylist()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getFiles () {
|
||||||
|
if (this.files.length === 0) return this.getHlsPlaylist().files
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit {
|
||||||
|
|
||||||
this.schedulePublicationPossible = this.video.privacy === VideoPrivacy.PRIVATE
|
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
|
if (videoFiles.length > 1) { // Already transcoded
|
||||||
this.waitTranscodingEnabled = false
|
this.waitTranscodingEnabled = false
|
||||||
}
|
}
|
||||||
|
|
|
@ -221,7 +221,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ng-template [ngIf]="video !== null">
|
<ng-container *ngIf="video !== null">
|
||||||
<my-video-support #videoSupportModal [video]="video"></my-video-support>
|
<my-video-support #videoSupportModal [video]="video"></my-video-support>
|
||||||
<my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions"></my-video-share>
|
<my-video-share #videoShareModal [video]="video" [videoCaptions]="videoCaptions"></my-video-share>
|
||||||
</ng-template>
|
</ng-container>
|
||||||
|
|
|
@ -469,7 +469,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
|
||||||
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
||||||
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
||||||
trackerAnnounce: this.video.trackerUrls,
|
trackerAnnounce: this.video.trackerUrls,
|
||||||
videoFiles: this.video.files
|
videoFiles: hlsPlaylist.files
|
||||||
} as P2PMediaLoaderOptions
|
} as P2PMediaLoaderOptions
|
||||||
|
|
||||||
Object.assign(options, { p2pMediaLoader })
|
Object.assign(options, { p2pMediaLoader })
|
||||||
|
|
|
@ -207,7 +207,7 @@ export class PeerTubeEmbed {
|
||||||
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
||||||
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
||||||
trackerAnnounce: videoInfo.trackerUrls,
|
trackerAnnounce: videoInfo.trackerUrls,
|
||||||
videoFiles: videoInfo.files
|
videoFiles: hlsPlaylist.files
|
||||||
} as P2PMediaLoaderOptions
|
} as P2PMediaLoaderOptions
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue