Skip to content

Commit

Permalink
feat: shorter video labels
Browse files Browse the repository at this point in the history
  • Loading branch information
fent committed Jul 9, 2019
1 parent 84eb757 commit bd181f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/ytdl.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ const printVideoInfo = (info, live) => {
console.log();
console.log(label('title: ') + info.title);
console.log(label('author: ') + info.author.name);
console.log(label('average rating: ') +
console.log(label('avg rating: ') +
info.player_response.videoDetails.averageRating);
console.log(label('view count: ') +
console.log(label('views: ') +
info.player_response.videoDetails.viewCount);
if (!live) {
console.log(label('length: ') + util.toHumanTime(info.length_seconds));
Expand Down

0 comments on commit bd181f4

Please sign in to comment.