mirror of https://github.com/iv-org/invidious.git
improve return data
Co-authored-by: AHOHNMYC <24810600+AHOHNMYC@users.noreply.github.com>
This commit is contained in:
parent
8239d1da5d
commit
2134dd89d8
|
@ -310,12 +310,7 @@ class invidious_embed{
|
||||||
search_params.append('widgetid',invidious_embed.widgetid);
|
search_params.append('widgetid',invidious_embed.widgetid);
|
||||||
this.widgetid = invidious_embed.widgetid;
|
this.widgetid = invidious_embed.widgetid;
|
||||||
invidious_embed.widgetid++;
|
invidious_embed.widgetid++;
|
||||||
if(autoplay){
|
search_params.append('autoplay', Number(autoplay));
|
||||||
search_params.append('autoplay',1);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
search_params.append('autoplay',0);
|
|
||||||
}
|
|
||||||
if(this.option_playerVars!==undefined){
|
if(this.option_playerVars!==undefined){
|
||||||
for(var x in this.option_playerVars){
|
for(var x in this.option_playerVars){
|
||||||
if(x!=='autoplay'&&x!=='start'&&x!=='end'){
|
if(x!=='autoplay'&&x!=='start'&&x!=='end'){
|
||||||
|
@ -361,7 +356,7 @@ class invidious_embed{
|
||||||
}
|
}
|
||||||
async getVideoEmbedCode(){
|
async getVideoEmbedCode(){
|
||||||
var title = await this.getVideoTitle();
|
var title = await this.getVideoTitle();
|
||||||
return '<iframe width="560" height="315" src="' + this.target_origin + "/embed/" + this.videoId + '" title="' + title.replace('"','') + '" frameborder="0" allow="autoplay;encrypted-media;picture-in-picture; web-share" allowfullscreen></iframe>';
|
return '<iframe width="560" height="315" src="' + this.target_origin + '/embed/' + this.videoId + '" title="' + title.replace('"',"'") + '" frameborder="0" allow="autoplay;encrypted-media;picture-in-picture;web-share" allowfullscreen></iframe>';
|
||||||
}
|
}
|
||||||
getCurrentTime(){
|
getCurrentTime(){
|
||||||
return this.promise_send_event('getcurrenttime');
|
return this.promise_send_event('getcurrenttime');
|
||||||
|
|
Loading…
Reference in New Issue