유투브 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>
'컴퓨터' 카테고리의 다른 글
코드카데미 (Codecademy) (0) | 2013.02.28 |
---|---|
구글 특정 사이트 검색 제한 (0) | 2013.02.22 |
크롬에서 다음(Daum) 광고 차단 (0) | 2012.11.10 |
[아주 대충 HTML] 링크 태그 (0) | 2012.01.28 |
유투브에서 반복재생하는 방법 - 위키트리 (0) | 2012.01.17 |