유투브 iframe 동영상 embed로 변환하기

요즘 동영상 퍼오기를 하면 가끔 안 보일 때가 있습니다. 즉 퍼오기가 안 된다는 얘기겠죠.
이유가 과거에 쓰던 embed 코드를 iframe 코드로 바꿨기 때문입니다. 특히 블로그 같은 데서 안 먹힐 겁니다.
이때 iframe 대신 embed 를 쓰는 방법을 알아보겠습니다.


1. 유튜브 동영상 소스 퍼오기 
      방법은 다 아시죠. 공유 누르고 소스코드 누르고 복사해 오시면 됩니다. iframe 이라고 되어 있죠.

      



2. iframe을 embed로 바꿉니다

<iframe width="560" height="315" src="http://www.youtube.com/embed/z-up2VNU8eo" frameborder="0" allowfullscreen></iframe>

<embed width="560" height="315" src="http://www.youtube.com/embed/z-up2VNU8eo" frameborder="0" allowfullscreen></embed>


3. embed를 v로 바꿉니다

<embed width="560" height="315" src="http://www.youtube.com/embed/z-up2VNU8eo" frameborder="0" allowfullscreen></embed>

<embed width="560" height="315" src="http://www.youtube.com/v/z-up2VNU8eo" frameborder="0" allowfullscreen></embed>




 
Posted by civ2
,