-3

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?

VC.One
  • 14,790
  • 4
  • 25
  • 57
  • 2
    Please read [Under what circumstances may I add “urgent” or other similar phrases to my question, in order to obtain faster answers?](//meta.stackoverflow.com/q/326569) - the summary is that this is not an ideal way to address volunteers, and is probably counterproductive to obtaining answers. Please refrain from adding this to your questions. – halfer Sep 06 '17 at 08:15
  • 3
    (1) StackOverflow is about **programming** questions. Maybe use your same account to ask at : **https://video.stackexchange.com/** since that community handles video software. (2) About _"I tried with QuickTime software but it's not helping me"_ explain what you've tried & how it's not working (what is expected result?). Maybe it's just wrong step? (3) I haven't seen a `.MOV` video open a (web) link in last 15 years (I remember the pop-ups during Windows 98 era). Is such (insecure) feature still supported in 2017? (4) If watched offline (no internet) then why care about inserting a web link? – VC.One Sep 06 '17 at 14:16

2 Answers2

0

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.

0

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)

fabianmoronzirfas
  • 4,091
  • 4
  • 24
  • 41