Jump to content

Recommended Posts

Posted

Hello. I need to write a User Script to add videos to created playlists. On the video watch page on the right, there are recommended videos.
When cursor on thumbnail upper-right on icon appears plus sign, when cursor on that plus sign appears list of user's playlists and by clicking on playlist name video adding to playlist and appears plus sign located right of playlist name. If video already in some playlist, when cursor on thumbnail plus sign, plus sign already located right of playlist name.
I think it must be like JS function copy thumbnail, link and video name, after adding that on playlist page. Playlist page initially is some cleared page of site, for example page that doesn't exist - when you put wrong address that's written. User Script saves data to appear it on that page.
On the playlist page, you can remove videos from it. There is also a page set in the code where you can create or delete a playlist. When creating, along with the name, the address of an empty page is set to which the video will be added.
On the video viewing page, a plus sign is also needed under it so that this video can be added.

This is the code for the thumbnail on the right of the page.
<div id="node-1001410" class="node node-video node-sidebar_teaser clearfix" data-toggle="tooltip" data-placement="top" title="" data-original-title="VIDEO NAME">
    <div>
        <div class="icon-bg">
                            <div class="right-icon likes-icon">
                    <i class="glyphicon glyphicon-heart"></i> 795                </div>
            
            <div class="left-icon likes-icon">
                <i class="glyphicon glyphicon-eye-open"></i> 37.7k            </div>

                    </div>
        <div class="field field-name-field-video field-type-video field-label-hidden"><div class="field-items"><div class="field-item even"><a href="/videos/gf45ugh5ca"><img src="//Full IMG Address" width="141" height="84" alt="VIDEO NAME" title="VIDEO NAME"></a></div></div></div>
            </div>

    </div>
<div>

On the video viewing page, to add to the playlist, you need to extract the poster address from part of the code
<div poster = "//Full IMG Address" ...>

Title from here 
<h1 class = "title"> VIDEO NAME </h1>

I think it's worth copying the number of likes and views from here
<div class="node-views"><i class="glyphicon glyphicon-heart"></i> 380 <i class="glyphicon glyphicon-eye-open"></i> 17,716 </div>

I rely on you.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...