A client of mine has youtube.com
blocked via firewall and they are trying to watch embedded videos that are on my system. What is a good way to proxy those URLs to bypass their block?
Here is a plugin/website I am interested in: PHP plugin and Website that unblocks Youtube videos
I don't want them to type in a URL, they will be navigating to my system and watching EMBEDDED YouTube videos. Does anyone have any insight on what to do?
I am willing to work with someone on making this work.
EDIT: here is how I am displaying the video:
$('.video-zoom').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: false
});
<a href="{{URL::to('/') . '/video/embed/' . $item['id']}}" class="video-zoom" title="View Video" data-toggle="tooltip">
<i class="icon fa fa-search"></i>
</a>
</div>