radx says...

Long story short: code is at the bottom.

Either I'm too blind to see the obvious or embedding a Rutube clip is, pardon my French, a fucking pain in the arse.

The iframe code you can get through the respective button on Rutube doesn't work. The video ID itself, injected into a template, doesn't work. Although, the latter at least produces a working player, just no valid video code to use it on.

What you have to do is get the proper video ID for embeds.

Open the site's source code and look for the following entry:

<meta property="og:image" content="http://tub.rutube.ru/thumbs-wide/91/4f/914f09904b50b553f3a345ef8ce61b49-1.jpg" />

That's a link for the thumbnail image Rutube used, and since it was taken automatically from the original video, it includes the proper video ID, as marked in bold.

Now take the ID and inject it into a working template, eg:

<object width="640" height="360">
<param name="movie" value="http://video.rutube.ru/$ID"></param>
<param name="wmode" value="window"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://video.rutube.ru/$ID" type="application/x-shockwave-flash" wmode="window" width="640" height="360" allowFullScreen="true" ></embed>
</object>

Replace $ID with your actual video ID and you should be good to go.

So here's your code:
<object width="640" height="360">
<param name="movie" value="http://video.rutube.ru/914f09904b50b553f3a345ef8ce61b49"></param>
<param name="wmode" value="window"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://video.rutube.ru/914f09904b50b553f3a345ef8ce61b49" type="application/x-shockwave-flash" wmode="window" width="640" height="360" allowFullScreen="true" ></embed>
</object>


Hopefully, that shit works.




Edit: fixed two HTML characters.

ant says...

>> ^radx:

Long story short: code is at the bottom.
Either I'm too blind to see the obvious or embedding a Rutube clip is, pardon my French, a fucking pain in the arse.
The iframe code you can get through the respective button on Rutube doesn't work. The video ID itself, injected into a template, doesn't work. Although, the latter at least produces a working player, just no valid video code to use it on.
What you have to do is get the proper video ID for embeds.
Open the site's source code and look for the following entry:
<meta property="og:image" content="http://tub.rutube.ru/thumbs-wide/91/4f/914f09904b50b553f3a345ef8ce61b49-1.jpg" />
That's a link for the thumbnail image Rutube used, and since it was taken automatically from the original video, it includes the proper video ID, as marked in bold.
Now take the ID and inject it into a working template, eg:

<object width="640" height="360">
<param name="movie" value="http://video.rutube.ru/$ID"></param>
<param name="wmode" value="window"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://video.rutube.ru/$ID" type="application/x-shockwave-flash" wmode="window" width="640" height="360" allowFullScreen="true" ></embed>
</object>

Replace $ID with your actual video ID and you should be good to go.
So here's your code:
<object width="640" height="360">
<param name="movie" value="http://video.rutube.ru/914f09904b50b553f3a345ef8ce61b49"></param>
<param name="wmode" value="window"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://video.rutube.ru/914f09904b50b553f3a345ef8ce61b49" type="application/x-shockwave-flash" wmode="window" width="640" height="360" allowFullScreen="true" ></embed>
</object>

Hopefully, that shit works.


Edit: fixed two HTML characters.


Thanks. I will try it when my queue has an empty spot unless someone beats me.

Send this Article to a Friend



Separate multiple emails with a comma (,); limit 5 recipients






Your email has been sent successfully!

Manage this Video in Your Playlists

New Blog Posts from All Members