질답게시판이 지금 등록이 안되서 요기에 질문좀 드립니다. "죄송합니다"
게시판에서 현재는 유튜뷰 동영상 소스를 긁어다가 플래쉬로 업로드 하고있는데요 이거를 그냥 동영상주소를
관련링크1#에 입력하면 동영상이 업로드 되게끔 구현 할려고 하는데요 너무 어렵네요 고수님들 한수 부탁합니다.
"감사합니다"
댓글 2개
11년 전
어렵지 않아요.
해당 주소를 내용에 넣게 합니다.
그리고 view.skin.php에 content라고 된 것을 wr_content로 고치면 본문 안에 나오게 됩니다.
물론 html 허용을 체크해야 겠지요.
해당 주소를 내용에 넣게 합니다.
그리고 view.skin.php에 content라고 된 것을 wr_content로 고치면 본문 안에 나오게 됩니다.
물론 html 허용을 체크해야 겠지요.
11년 전
민기만님 안되는데요 그렇게 간단하게 될수가 없을거라고 생각한는데요 아래 소스보시면 제가 지금 사용하고있지는 않지만
동영상 최신글인데요 관련링크#1에 링크걸면 바로 동영상 썸네일이 출력되고 내용보기도 가능하거든요 그래서 오늘 이소스를 보면서 적용해 볼려고 했는데 어렵더라구요 ㅡ.ㅡ
<?php
if (!defined("_GNUBOARD_")) exit; //개별 페이지 접근 불가
global $is_admin, $member;
$youtube_width = 500; //레이어 팝업 동영상 가로 크기
$youtube_height = 370; //레이어 팝업 동영상 세로 크기
$youtube_autoplay = 1; //레이어 팝업 동영상 자동재생 여부(자동재생하지 않으려면 '0' 입력)
?>
<script type="text/javascript" src="<?php echo $latest_skin_path; ?>/fancyzoom.js"></script>
<style type="text/css">
.mov_title_wrap {width:100%; height:26px; border:1px solid #ccc}
.mov_title a:link, .mov_title a:visited, .mov_title a:active, .mov_title a:hover {float:left; text-decoration:none; padding-left:8px; white-space:nowrap; font:bold 12px gulim, tahoma; color:#222; line-height:28px}
.mov_right_wrap {float:right; margin:3px 8px 0 0; width:150px}
.mov_btn_admin {float:right; margin:1px 1px 0; background:url(<?php echo $latest_skin_path; ?>/img/icon.gif) -5px 0; width:10px; height:18px}
.mov_btn_write {float:right; margin:1px 1px 0; background:url(<?php echo $latest_skin_path; ?>/img/icon.gif) -15px 0; width:20px; height:18px}
.mov_btn_more {float:right; margin:1px 1px 0; background:url(<?php echo $latest_skin_path; ?>/img/icon.gif) -35px 0; width:10px; height:18px}
.mov_latest_wrap {clear:both; position:relative}
.mov_latest_wrap ul.mov_list {clear:both; position:relative; margin:10px 0 0 0; padding:0; list-style:none; text-align:left}
.mov_latest_wrap ul.mov_list li {margin:5px 0; padding-left:10px; height:95px; border-bottom:1px dotted #ebebeb; font:normal 12px gulim, dotum; color:#999}
.mov_latest_wrap ul.mov_list .list_thumb {float:left}
.mov_latest_wrap ul.mov_list .list_explain {float:left; padding:2px 10px 0 10px}
.list_title_movie {padding-top:35px; padding-left:10px; font:bold 12px tahoma, gulim; color:#555}
.list_title_movie a:link, .list_title_movie a:visited, .list_title_movie a:active, .list_title_movie a:hover {text-decoration:none; color:#555}
.mov_no_list {padding:10px 0; font:normal 12px tahoma, gulim; color:#999; text-align:center}
</style>
<div class="mov_latest_wrap">
<div class="mov_title_wrap">
<div class="mov_title"><a href="<?php echo $g4[bbs_path]; ?>/board.php?bo_table=<?php echo $bo_table; ?>"><?php echo $board[bo_subject]; ?></a></div>
<div class="mov_right_wrap">
<div class="mov_btn_more"><a href="<?php echo $g4[bbs_path] ?>/board.php?bo_table=<?php echo $bo_table ?>"><img src="<?php echo $latest_skin_path; ?>/img/none.gif" width="10" height="18" border="0" alt="더보기"></a></div>
<?php if ($member[mb_level] >= $board[bo_write_level]) { ?>
<div class="mov_btn_write"><a href="<?php echo $g4[bbs_path]; ?>/write.php?bo_table=<?php echo $bo_table; ?><?php echo $write_href; ?>"><img src="<?php echo $latest_skin_path; ?>/img/none.gif" width="20" height="18" border="0" alt="글쓰기"></a></div>
<?php } ?>
<?php if ($is_admin == "super" || $is_auth) { ?>
<div class="mov_btn_admin"><a href="<?php echo $g4[path]; ?>/adm/board_form.php?w=u&bo_table=<?php echo $bo_table; ?>"><img src="<?php echo $latest_skin_path; ?>/img/none.gif" width="10" height="18" border="0" alt="게시판설정"></a></div>
<?php } ?>
</div>
</div>
<?php if (count($list) == 0) { ?>
<div class="mov_no_list">게시물이 없습니다.</div>
<?php } else { ?>
<ul class="mov_list">
<?php for ($i = 0; $i < count($list); $i++) {
$youtube_url = strstr($list[$i]['wr_link1'], '=');
$youtube_url = explode('&', $youtube_url);
$youtube_url = str_replace('=', '', $youtube_url[0]);
?>
<li>
<div class="list_thumb"><a href="#pic-<?php echo $bo_table; ?>_<?php echo $i; ?>" rel="next"><img src="http://img.youtube.com/vi/<?php echo $youtube_url; ?>/3.jpg" width="120" height="90" border="0" alt="" /></a> </div>
<div id="pic-<?php echo $bo_table; ?>_<?php echo $i; ?>" class="hide_movie">
<iframe src="http://www.youtube.com/embed/<?php echo $youtube_url; ?>?hl=ko_KR&version=3&rel=0&autoplay=<?php echo $youtube_autoplay; ?>" width="<?php echo $youtube_width; ?>" height="<?php echo $youtube_height; ?>" frameborder="0" allowfullscreen></iframe>
</div>
<div class="list_explain">
<div class="list_title_movie"><a href="<?php echo $list[$i]['href']; ?>"><?php echo $list[$i]['subject']; ?></a></div>
</div>
</li>
<?php } ?>
</ul>
<?php } ?>
</div>
동영상 최신글인데요 관련링크#1에 링크걸면 바로 동영상 썸네일이 출력되고 내용보기도 가능하거든요 그래서 오늘 이소스를 보면서 적용해 볼려고 했는데 어렵더라구요 ㅡ.ㅡ
<?php
if (!defined("_GNUBOARD_")) exit; //개별 페이지 접근 불가
global $is_admin, $member;
$youtube_width = 500; //레이어 팝업 동영상 가로 크기
$youtube_height = 370; //레이어 팝업 동영상 세로 크기
$youtube_autoplay = 1; //레이어 팝업 동영상 자동재생 여부(자동재생하지 않으려면 '0' 입력)
?>
<script type="text/javascript" src="<?php echo $latest_skin_path; ?>/fancyzoom.js"></script>
<style type="text/css">
.mov_title_wrap {width:100%; height:26px; border:1px solid #ccc}
.mov_title a:link, .mov_title a:visited, .mov_title a:active, .mov_title a:hover {float:left; text-decoration:none; padding-left:8px; white-space:nowrap; font:bold 12px gulim, tahoma; color:#222; line-height:28px}
.mov_right_wrap {float:right; margin:3px 8px 0 0; width:150px}
.mov_btn_admin {float:right; margin:1px 1px 0; background:url(<?php echo $latest_skin_path; ?>/img/icon.gif) -5px 0; width:10px; height:18px}
.mov_btn_write {float:right; margin:1px 1px 0; background:url(<?php echo $latest_skin_path; ?>/img/icon.gif) -15px 0; width:20px; height:18px}
.mov_btn_more {float:right; margin:1px 1px 0; background:url(<?php echo $latest_skin_path; ?>/img/icon.gif) -35px 0; width:10px; height:18px}
.mov_latest_wrap {clear:both; position:relative}
.mov_latest_wrap ul.mov_list {clear:both; position:relative; margin:10px 0 0 0; padding:0; list-style:none; text-align:left}
.mov_latest_wrap ul.mov_list li {margin:5px 0; padding-left:10px; height:95px; border-bottom:1px dotted #ebebeb; font:normal 12px gulim, dotum; color:#999}
.mov_latest_wrap ul.mov_list .list_thumb {float:left}
.mov_latest_wrap ul.mov_list .list_explain {float:left; padding:2px 10px 0 10px}
.list_title_movie {padding-top:35px; padding-left:10px; font:bold 12px tahoma, gulim; color:#555}
.list_title_movie a:link, .list_title_movie a:visited, .list_title_movie a:active, .list_title_movie a:hover {text-decoration:none; color:#555}
.mov_no_list {padding:10px 0; font:normal 12px tahoma, gulim; color:#999; text-align:center}
</style>
<div class="mov_latest_wrap">
<div class="mov_title_wrap">
<div class="mov_title"><a href="<?php echo $g4[bbs_path]; ?>/board.php?bo_table=<?php echo $bo_table; ?>"><?php echo $board[bo_subject]; ?></a></div>
<div class="mov_right_wrap">
<div class="mov_btn_more"><a href="<?php echo $g4[bbs_path] ?>/board.php?bo_table=<?php echo $bo_table ?>"><img src="<?php echo $latest_skin_path; ?>/img/none.gif" width="10" height="18" border="0" alt="더보기"></a></div>
<?php if ($member[mb_level] >= $board[bo_write_level]) { ?>
<div class="mov_btn_write"><a href="<?php echo $g4[bbs_path]; ?>/write.php?bo_table=<?php echo $bo_table; ?><?php echo $write_href; ?>"><img src="<?php echo $latest_skin_path; ?>/img/none.gif" width="20" height="18" border="0" alt="글쓰기"></a></div>
<?php } ?>
<?php if ($is_admin == "super" || $is_auth) { ?>
<div class="mov_btn_admin"><a href="<?php echo $g4[path]; ?>/adm/board_form.php?w=u&bo_table=<?php echo $bo_table; ?>"><img src="<?php echo $latest_skin_path; ?>/img/none.gif" width="10" height="18" border="0" alt="게시판설정"></a></div>
<?php } ?>
</div>
</div>
<?php if (count($list) == 0) { ?>
<div class="mov_no_list">게시물이 없습니다.</div>
<?php } else { ?>
<ul class="mov_list">
<?php for ($i = 0; $i < count($list); $i++) {
$youtube_url = strstr($list[$i]['wr_link1'], '=');
$youtube_url = explode('&', $youtube_url);
$youtube_url = str_replace('=', '', $youtube_url[0]);
?>
<li>
<div class="list_thumb"><a href="#pic-<?php echo $bo_table; ?>_<?php echo $i; ?>" rel="next"><img src="http://img.youtube.com/vi/<?php echo $youtube_url; ?>/3.jpg" width="120" height="90" border="0" alt="" /></a> </div>
<div id="pic-<?php echo $bo_table; ?>_<?php echo $i; ?>" class="hide_movie">
<iframe src="http://www.youtube.com/embed/<?php echo $youtube_url; ?>?hl=ko_KR&version=3&rel=0&autoplay=<?php echo $youtube_autoplay; ?>" width="<?php echo $youtube_width; ?>" height="<?php echo $youtube_height; ?>" frameborder="0" allowfullscreen></iframe>
</div>
<div class="list_explain">
<div class="list_title_movie"><a href="<?php echo $list[$i]['href']; ?>"><?php echo $list[$i]['subject']; ?></a></div>
</div>
</li>
<?php } ?>
</ul>
<?php } ?>
</div>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1272 | ||
| 7729 | 10년 전 | 1082 | ||
| 7728 |
잘살아보자
|
10년 전 | 546 | |
| 7727 |
잘살아보자
|
10년 전 | 453 | |
| 7726 |
잘살아보자
|
10년 전 | 791 | |
| 7725 |
잘살아보자
|
10년 전 | 515 | |
| 7724 |
잘살아보자
|
10년 전 | 424 | |
| 7723 |
잘살아보자
|
10년 전 | 490 | |
| 7722 |
잘살아보자
|
10년 전 | 421 | |
| 7721 |
잘살아보자
|
10년 전 | 464 | |
| 7720 |
잘살아보자
|
10년 전 | 406 | |
| 7719 |
비긴어게인
|
10년 전 | 646 | |
| 7718 |
|
10년 전 | 2493 | |
| 7717 |
잘살아보자
|
10년 전 | 627 | |
| 7716 |
잘살아보자
|
10년 전 | 360 | |
| 7715 |
잘살아보자
|
10년 전 | 407 | |
| 7714 |
잘살아보자
|
10년 전 | 435 | |
| 7713 | 10년 전 | 1737 | ||
| 7712 | 10년 전 | 1663 | ||
| 7711 | 10년 전 | 1053 | ||
| 7710 | 10년 전 | 1340 | ||
| 7709 | 10년 전 | 1477 | ||
| 7708 | 10년 전 | 1434 | ||
| 7707 | 10년 전 | 818 | ||
| 7706 |
별지기천사
|
10년 전 | 547 | |
| 7705 | 10년 전 | 1042 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 585 | |
| 7703 | 10년 전 | 542 | ||
| 7702 |
|
10년 전 | 680 | |
| 7701 | 10년 전 | 1370 | ||
| 7700 | 10년 전 | 1073 | ||
| 7699 | 10년 전 | 557 | ||
| 7698 | 10년 전 | 1106 | ||
| 7697 | 10년 전 | 5112 | ||
| 7696 | 10년 전 | 605 | ||
| 7695 | 10년 전 | 1650 | ||
| 7694 | 10년 전 | 1015 | ||
| 7693 | 10년 전 | 1507 | ||
| 7692 | 10년 전 | 1248 | ||
| 7691 | 10년 전 | 781 | ||
| 7690 | 10년 전 | 1355 | ||
| 7689 | 10년 전 | 977 | ||
| 7688 | 10년 전 | 546 | ||
| 7687 |
파랑새1597
|
10년 전 | 551 | |
| 7686 | 10년 전 | 800 | ||
| 7685 | 10년 전 | 1316 | ||
| 7684 | 10년 전 | 767 | ||
| 7683 | 10년 전 | 1009 | ||
| 7682 | 10년 전 | 879 | ||
| 7681 | 10년 전 | 615 | ||
| 7680 | 10년 전 | 948 | ||
| 7679 | 10년 전 | 451 | ||
| 7678 | 10년 전 | 689 | ||
| 7677 | 10년 전 | 593 | ||
| 7676 |
|
10년 전 | 911 | |
| 7675 |
|
10년 전 | 1110 | |
| 7674 | 10년 전 | 1026 | ||
| 7673 | 10년 전 | 721 | ||
| 7672 | 10년 전 | 1049 | ||
| 7671 | 10년 전 | 835 | ||
| 7670 | 10년 전 | 595 | ||
| 7669 |
mashmellow
|
10년 전 | 1198 | |
| 7668 | 10년 전 | 673 | ||
| 7667 | 10년 전 | 950 | ||
| 7666 |
senseme
|
10년 전 | 619 | |
| 7665 | 10년 전 | 473 | ||
| 7664 | 10년 전 | 1859 | ||
| 7663 |
mixx애교
|
10년 전 | 952 | |
| 7662 | 10년 전 | 979 | ||
| 7661 |
hkhkah
|
10년 전 | 750 | |
| 7660 | 10년 전 | 1037 | ||
| 7659 |
커네드커네드
|
10년 전 | 901 | |
| 7658 |
바람돌이팡
|
10년 전 | 630 | |
| 7657 | 10년 전 | 1120 | ||
| 7656 | 10년 전 | 1542 | ||
| 7655 | 10년 전 | 948 | ||
| 7654 |
개발짜증나
|
10년 전 | 827 | |
| 7653 |
네이비칼라
|
10년 전 | 858 | |
| 7652 |
밥먹고합시다
|
10년 전 | 781 | |
| 7651 |
플라이SINJI
|
10년 전 | 1481 | |
| 7650 |
개발짜증나
|
10년 전 | 1375 | |
| 7649 | 10년 전 | 430 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 819 | |
| 7647 | 10년 전 | 407 | ||
| 7646 | 10년 전 | 769 | ||
| 7645 | 10년 전 | 2257 | ||
| 7644 | 10년 전 | 791 | ||
| 7643 |
|
10년 전 | 2831 | |
| 7642 | 10년 전 | 1482 | ||
| 7641 | 10년 전 | 1106 | ||
| 7640 |
개발짜증나
|
10년 전 | 447 | |
| 7639 |
|
10년 전 | 785 | |
| 7638 |
개발짜증나
|
10년 전 | 1090 | |
| 7637 | 10년 전 | 1508 | ||
| 7636 | 10년 전 | 2875 | ||
| 7635 | 10년 전 | 1654 | ||
| 7634 | 10년 전 | 1819 | ||
| 7633 | 10년 전 | 2286 | ||
| 7632 | 10년 전 | 3879 | ||
| 7631 |
|
10년 전 | 1498 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기