feat(song): add rawVideo property
This commit is contained in:
parent
5a7d6808d6
commit
09fa110790
2 changed files with 74 additions and 0 deletions
|
@ -565,6 +565,75 @@
|
|||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="section-members">
|
||||
<h4 class="name" id="rawVideo"><span class="type-signature"></span>rawVideo<span class="type-signature"> :Video</span></h4>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>Raw video object from Simple Youtube API</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
<h5>Type:</h5>
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
<span class="param-type"><code>Video</code></span>
|
||||
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -17,6 +17,11 @@ class Song {
|
|||
* @type {Number}
|
||||
*/
|
||||
this.duration = ((video.duration.hours*3600)+(video.duration.minutes*60)+(video.duration.seconds)) * 100;
|
||||
/**
|
||||
* Raw video object from Simple Youtube API
|
||||
* @type {Video}
|
||||
*/
|
||||
this.rawVideo = video;
|
||||
/**
|
||||
* Raw informations about the song.
|
||||
* @type {Object}
|
||||
|
|
Loading…
Reference in a new issue