[이윰] 페이스북(facebook) 동영상 올바르게 적용하기
페이지 정보
shadow2fox
2,831 3 2
2019.10.14 22:47:32
짧은주소
-
https://yadolee.com/tip/689 주소복사
본문
페이스북(facebook) 동영상 올바르게 적용하기
그누보드5/eyoom/classes/eyoom.class.php를 열어 if (!is_numeric($video['key1'])) $video = NULL;를 검색하여 다음과 같이 수정한다.
수정 전
case 'facebook.com':
if ($query['video_id']) {
$video['key1'] = $query['video_id'];
} else {
$video['key1'] = $query['v'];
}
if (!is_numeric($video['key1'])) $video = NULL;
break;
수정 후
case 'facebook.com':
$video['protocol'] = $info['scheme'];
$video['key1'] = $info['path'];
break;
수집된 동영상 정보를 iframe source로 구현를 검색하고 다음과 같이 수정한다.
수정 전
case 'facebook.com':
$source = '<iframe src="https://www.facebook.com/video/embed?video_id='.urlencode($video['key1']).'" width="'.$video['width'].'" height="'.$video['height'].'" frameborder="0"></iframe>';
break;
수정 후
case 'facebook.com':
$source = '<iframe src="https://www.facebook.com/plugins/video.php?href='.urlencode($video['protocol']."://www.".$video['host'].$video['key1']).'&show_text=0&width='.$video['width'].'" width="'.$video['width'].'" height="'.$video['height'].'" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allowFullScreen="true" frameborder="0"></iframe>';
break;
추천인 2
레벨 149
경험치 3,343,659
Progress Bar 80.23%
- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은
자기 자신에게 기회를 주는 것이다.
- 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.



댓글3
내사랑님의 댓글
축하합니다. 지뢰폭탄 제거로 28경험치를 획득하였습니다.
하늘구장님의 댓글
하늘구장님의 댓글
축하합니다. 첫 댓글로 10경험치를 획득하였습니다.