1
0
Fork 0

Add resolution in torrent file name

This commit is contained in:
Chocobozzz 2018-04-19 15:37:44 +02:00
parent 81e504b34e
commit 6cced8f915
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 2 additions and 1 deletions

View File

@ -946,7 +946,8 @@ export class VideoModel extends Model<VideoModel> {
async createTorrentAndSetInfoHash (videoFile: VideoFileModel) {
const options = {
name: this.name + videoFile.extname,
// Keep the extname, it's used by the client to stream the file inside a web browser
name: `${this.name} ${videoFile.resolution}p${videoFile.extname}`,
createdBy: 'PeerTube',
announceList: [
[ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ],