How to place embedded link in videos?

1.1k views Asked by At

I am trying to place an embedded link in offline video. Is there any solution to do that? I tried with QuickTime software but it's not helping me. Is there any software to put embedded links in videos?

2

There are 2 answers

0
fabianmoronzirfas On

The only thing I know that was (and still might be) able to do that is Quicktime Pro 7.x.x See:

Alternatives are:

  • Using Flash (but that means you will need the Flashplayer on that machine)

  • Using HTML5 (then you need a browser)

0
ColdNuddle On

You can use two div tags.

Css code:

.div1{height:30px; width:100%; background:#fff; position:relative; z-index:1;}.div2{height:30px; width:100%; background:#f00; position:absolute; top:0px; left:0; z-index:2;}

Html Code:

<div class="div1"><div class="div2"></div></div>

div2 will completely cover div1.

This is a thinking.