'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • [MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네)

    [MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네) ***** Hello, this is 1theK. We are working on subtitles now! Please come back and watch it again within a few hours. Thank you for your waiting and continuing interest :) ***** ▶1theK FB : http://www.facebook.com/1theK ▶1theK TW : https://twitter.com/1theK ▶1theK G+ : https://plus.google.com/+1theK

    published: 06 May 2016
  • (Eng Sub) XMAN w/ Park Shi Yeon and Lee Jong Soo

    Video: XMan Game/Variety Show Airing: Nov. 2003-Feb. 2007 Channel: SBS Hosts: (Main) Yoo, Jae Sook, (Assistant at first) Kang Ho Dong Main Players: Park, Shi Yeon and Lee, Joong Soo I do not own any part of this video including the subtitles. I just re-uploaded everything to rekindle its fun memory. Any inaccuracies in the subtitles ain't my responsibility. I hope you'll like the video.

    published: 24 Dec 2011
  • Trailer 1 'Fantastic' Park Si-yeon, Jisoo

    published: 29 Aug 2016
  • Food fighter Park Si-yeon, "I gained 24kg after having a child" [Guesthouse Daughters / 2017.03.21]

    Click the "Caption" button to activate subtitle! ------------------------------------------------ Subscribe KBS World Official YouTube: http://www.youtube.com/kbsworld ------------------------------------------------ KBS World is a TV channel for international audiences provided by KBS, the flagship public service broadcaster in Korea. Enjoy Korea's latest and the most popular K-Drama, K-Pop, K-Entertainment & K-Documentary with multilingual subtitles by subscribing KBS World official YouTube. ------------------------------------------------ 대한민국 대표 해외채널 KBS World를 유튜브에서 만나세요. KBS World는 전세계 시청자에게 재미있고 유익한 한류 콘텐츠를 영어 자막과 함께 제공하는 No.1 한류 채널입니다. KBS World 유튜브 채널을 구독하고 최신 드라마, K-Pop, 예능, 다큐멘터리 정보를 받아보세요. ------------------------------------------------ [Visit KBS World Official Pages] Homepa...

    published: 22 Mar 2017
  • Park Si Yeon | South Korean Actress

    #model #SouthKoreanActress #worldcelebrity #actress THE WORLD CELEBRITY To be a celebrity, you must first believe you are one. We at The World Celebrity provide you the right fame and guidance which will support your dream of becoming a Celebrity. The World Celebrity brings together professionals and artists from the fashion and film industries to represent them around the world. So, Let’s begin! https://theworldcelebrity.com/

    published: 25 Dec 2021
  • Kim Hee-chul's surprise visit for Si-yeon and Da-hae! [Guesthouse Daughters / 2017.03.21]

    Click the "Caption" button to activate subtitle! ------------------------------------------------ Subscribe KBS World Official YouTube: http://www.youtube.com/kbsworld ------------------------------------------------ KBS World is a TV channel for international audiences provided by KBS, the flagship public service broadcaster in Korea. Enjoy Korea's latest and the most popular K-Drama, K-Pop, K-Entertainment & K-Documentary with multilingual subtitles by subscribing KBS World official YouTube. ------------------------------------------------ 대한민국 대표 해외채널 KBS World를 유튜브에서 만나세요. KBS World는 전세계 시청자에게 재미있고 유익한 한류 콘텐츠를 영어 자막과 함께 제공하는 No.1 한류 채널입니다. KBS World 유튜브 채널을 구독하고 최신 드라마, K-Pop, 예능, 다큐멘터리 정보를 받아보세요. ------------------------------------------------ [Visit KBS World Official Pages] Homepa...

    published: 22 Mar 2017
  • [Produce 101] 1:1 EyecontactㅣPark Si Yeon – Group 2 Apink ♬I don’t Know EP.04 20160212

    생존을 위한 그룹 배틀! [직캠] 메인보컬 박시연(플레디스) - 2조 Apink ♬ 몰라요 @그룹배틀평가 - ▶ 지금 ′프로듀스101′ 홈페이지에서 당신의 소녀에게 투표하세요! 당신의 한표가 소녀들의 운명을 결정합니다! http://www.mnet.com/produce101 - 국민 걸그룹 육성 프로젝트 [프로듀스101] 매주 금요일 밤11시

    published: 10 Feb 2016
  • No Min Woo & Park Shi Yun - The Greatest Marriage OST - Crazy Love / 노민우 & 박시연 in 최고의 결혼

    Drama name: The Greatest Marriage Info credit: https://mydramalist.com/10621-best-wedding Native Title: 최고의 결혼 Also Known As: The Greatest Wedding , The Best Wedding , Best Marriage , Love and Marriage , The Greatest Marriage , The Best Marriage , Choigoui Gyeolhon , Choigoui Gyulhon Genres: Comedy, Romance, Family, Melodrama Main Cast: Park Si-yeon as Cha Ki-young Bae Soo-bin as Jo Eun-cha No Min-woo as Park Tae-yeon Uhm Hyun-kyung as Hyun Myung-yi Synopsis: Cha Ki Young was once a successful news anchor living the good life, but everything changed when she defied expectations and became a single mother. Jo Eun Cha was also once a news anchor, but left his career to campaign unsuccessfully for office. Though nothing quite pans out as expected for either Ki Young or Eun Cha, t...

    published: 14 Jun 2022
  • Park Si Yeon(박시연) X Cosmopolitan(코스모폴리탄) 2019 October Issue

    클래식한 매력이 돋보이는 #박시연 의 우아한 모먼트. #박시연 #코스모폴리탄

    published: 08 Nov 2019
  • [Produce 101] 1:1 EyecontactㅣPark Si Yeon – GFRIEND ♬Me Gustas Tu @ P.E(RAP) EP.07 20160304

    100,000표의 주인공은 누가 될 것 인가! 각 포지션별 최고의 실력자를 가르는 포지션 평가! [Produce 101] 1:1 EyecontactㅣPark Si Yeon – GFRIEND ♬Me Gustas Tu @ Position Eval.(VOCAL) EP.07 20160304 [직캠]박시연(플레디스) - 여차친구 ♬오늘부터 우리는 @포지션 평가(VOCAL) - ▶ 지금 ′프로듀스101′ 홈페이지에서 당신의 소녀에게 투표하세요! 당신의 한표가 소녀들의 운명을 결정합니다! http://www.mnet.com/produce101 - 국민 걸그룹 육성 프로젝트 [프로듀스101] 매주 금요일 밤11시

    published: 02 Mar 2016
[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네)
2:30

[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네)

  • Order:
  • Duration: 2:30
  • Uploaded Date: 06 May 2016
  • views: 83098
[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네) ***** Hello, this is 1theK. We are working on subtitles now! Please come back and watch it again within a few hours. Thank you for your waiting and continuing interest :) ***** ▶1theK FB : http://www.facebook.com/1theK ▶1theK TW : https://twitter.com/1theK ▶1theK G+ : https://plus.google.com/+1theK
https://wn.com/Mv_Park_Si_Yeon(박시연)_Thought_Of_You(그리움만_쌓이네)
(Eng Sub) XMAN w/ Park Shi Yeon and Lee Jong Soo
5:19

(Eng Sub) XMAN w/ Park Shi Yeon and Lee Jong Soo

  • Order:
  • Duration: 5:19
  • Uploaded Date: 24 Dec 2011
  • views: 154366
Video: XMan Game/Variety Show Airing: Nov. 2003-Feb. 2007 Channel: SBS Hosts: (Main) Yoo, Jae Sook, (Assistant at first) Kang Ho Dong Main Players: Park, Shi Yeon and Lee, Joong Soo I do not own any part of this video including the subtitles. I just re-uploaded everything to rekindle its fun memory. Any inaccuracies in the subtitles ain't my responsibility. I hope you'll like the video.
https://wn.com/(Eng_Sub)_Xman_W_Park_Shi_Yeon_And_Lee_Jong_Soo
Trailer 1 'Fantastic' Park Si-yeon, Jisoo
0:46

Trailer 1 'Fantastic' Park Si-yeon, Jisoo

  • Order:
  • Duration: 0:46
  • Uploaded Date: 29 Aug 2016
  • views: 3741
https://wn.com/Trailer_1_'Fantastic'_Park_Si_Yeon,_Jisoo
Food fighter Park Si-yeon, "I gained 24kg after having a child" [Guesthouse Daughters / 2017.03.21]
12:44

Food fighter Park Si-yeon, "I gained 24kg after having a child" [Guesthouse Daughters / 2017.03.21]

  • Order:
  • Duration: 12:44
  • Uploaded Date: 22 Mar 2017
  • views: 218150
Click the "Caption" button to activate subtitle! ------------------------------------------------ Subscribe KBS World Official YouTube: http://www.youtube.com/kbsworld ------------------------------------------------ KBS World is a TV channel for international audiences provided by KBS, the flagship public service broadcaster in Korea. Enjoy Korea's latest and the most popular K-Drama, K-Pop, K-Entertainment & K-Documentary with multilingual subtitles by subscribing KBS World official YouTube. ------------------------------------------------ 대한민국 대표 해외채널 KBS World를 유튜브에서 만나세요. KBS World는 전세계 시청자에게 재미있고 유익한 한류 콘텐츠를 영어 자막과 함께 제공하는 No.1 한류 채널입니다. KBS World 유튜브 채널을 구독하고 최신 드라마, K-Pop, 예능, 다큐멘터리 정보를 받아보세요. ------------------------------------------------ [Visit KBS World Official Pages] Homepage: http://www.kbsworld.co.kr Facebook: http://www.facebook.com/kbsworld Twitter: http://twitter.com/kbsworldtv Instagram: @kbsworldtv Line: @kbsworld_asia KakaoTalk: @kbs_world (http://plus.kakao.com/friend/@kbs_world) Google+: http://plus.google.com/+kbsworldtv [Download KBS World Application] ■ IOS Download : http://apple.co/1NktctW ■ Android Download : http://bit.ly/1NOZFKr
https://wn.com/Food_Fighter_Park_Si_Yeon,_I_Gained_24Kg_After_Having_A_Child_Guesthouse_Daughters_2017.03.21
Park Si Yeon | South Korean Actress
2:39

Park Si Yeon | South Korean Actress

  • Order:
  • Duration: 2:39
  • Uploaded Date: 25 Dec 2021
  • views: 2541
#model #SouthKoreanActress #worldcelebrity #actress THE WORLD CELEBRITY To be a celebrity, you must first believe you are one. We at The World Celebrity provide you the right fame and guidance which will support your dream of becoming a Celebrity. The World Celebrity brings together professionals and artists from the fashion and film industries to represent them around the world. So, Let’s begin! https://theworldcelebrity.com/
https://wn.com/Park_Si_Yeon_|_South_Korean_Actress
Kim Hee-chul's surprise visit for Si-yeon and Da-hae! [Guesthouse Daughters / 2017.03.21]
18:36

Kim Hee-chul's surprise visit for Si-yeon and Da-hae! [Guesthouse Daughters / 2017.03.21]

  • Order:
  • Duration: 18:36
  • Uploaded Date: 22 Mar 2017
  • views: 1183190
Click the "Caption" button to activate subtitle! ------------------------------------------------ Subscribe KBS World Official YouTube: http://www.youtube.com/kbsworld ------------------------------------------------ KBS World is a TV channel for international audiences provided by KBS, the flagship public service broadcaster in Korea. Enjoy Korea's latest and the most popular K-Drama, K-Pop, K-Entertainment & K-Documentary with multilingual subtitles by subscribing KBS World official YouTube. ------------------------------------------------ 대한민국 대표 해외채널 KBS World를 유튜브에서 만나세요. KBS World는 전세계 시청자에게 재미있고 유익한 한류 콘텐츠를 영어 자막과 함께 제공하는 No.1 한류 채널입니다. KBS World 유튜브 채널을 구독하고 최신 드라마, K-Pop, 예능, 다큐멘터리 정보를 받아보세요. ------------------------------------------------ [Visit KBS World Official Pages] Homepage: http://www.kbsworld.co.kr Facebook: http://www.facebook.com/kbsworld Twitter: http://twitter.com/kbsworldtv Instagram: @kbsworldtv Line: @kbsworld_asia KakaoTalk: @kbs_world (http://plus.kakao.com/friend/@kbs_world) Google+: http://plus.google.com/+kbsworldtv [Download KBS World Application] ■ IOS Download : http://apple.co/1NktctW ■ Android Download : http://bit.ly/1NOZFKr
https://wn.com/Kim_Hee_Chul's_Surprise_Visit_For_Si_Yeon_And_Da_Hae_Guesthouse_Daughters_2017.03.21
[Produce 101] 1:1 EyecontactㅣPark Si Yeon – Group 2 Apink ♬I don’t Know EP.04 20160212
2:43

[Produce 101] 1:1 EyecontactㅣPark Si Yeon – Group 2 Apink ♬I don’t Know EP.04 20160212

  • Order:
  • Duration: 2:43
  • Uploaded Date: 10 Feb 2016
  • views: 935094
생존을 위한 그룹 배틀! [직캠] 메인보컬 박시연(플레디스) - 2조 Apink ♬ 몰라요 @그룹배틀평가 - ▶ 지금 ′프로듀스101′ 홈페이지에서 당신의 소녀에게 투표하세요! 당신의 한표가 소녀들의 운명을 결정합니다! http://www.mnet.com/produce101 - 국민 걸그룹 육성 프로젝트 [프로듀스101] 매주 금요일 밤11시
https://wn.com/Produce_101_1_1_EyecontactㅣPark_Si_Yeon_–_Group_2_Apink_♬I_Don’T_Know_Ep.04_20160212
No Min Woo & Park Shi Yun - The Greatest Marriage OST - Crazy Love / 노민우 & 박시연  in 최고의 결혼
6:06

No Min Woo & Park Shi Yun - The Greatest Marriage OST - Crazy Love / 노민우 & 박시연 in 최고의 결혼

  • Order:
  • Duration: 6:06
  • Uploaded Date: 14 Jun 2022
  • views: 1029170
Drama name: The Greatest Marriage Info credit: https://mydramalist.com/10621-best-wedding Native Title: 최고의 결혼 Also Known As: The Greatest Wedding , The Best Wedding , Best Marriage , Love and Marriage , The Greatest Marriage , The Best Marriage , Choigoui Gyeolhon , Choigoui Gyulhon Genres: Comedy, Romance, Family, Melodrama Main Cast: Park Si-yeon as Cha Ki-young Bae Soo-bin as Jo Eun-cha No Min-woo as Park Tae-yeon Uhm Hyun-kyung as Hyun Myung-yi Synopsis: Cha Ki Young was once a successful news anchor living the good life, but everything changed when she defied expectations and became a single mother. Jo Eun Cha was also once a news anchor, but left his career to campaign unsuccessfully for office. Though nothing quite pans out as expected for either Ki Young or Eun Cha, they've yet to discover what fate has in store for them. Meanwhile, four other couples grapple with whether or not they can really have it all in modern romance. Audio credit: No Min Woo - Crazy Love Video made in January 2015. This is a re-edited version. Own nothing except the editing.
https://wn.com/No_Min_Woo_Park_Shi_Yun_The_Greatest_Marriage_Ost_Crazy_Love_노민우_박시연_In_최고의_결혼
Park Si Yeon(박시연) X Cosmopolitan(코스모폴리탄) 2019 October Issue
0:40

Park Si Yeon(박시연) X Cosmopolitan(코스모폴리탄) 2019 October Issue

  • Order:
  • Duration: 0:40
  • Uploaded Date: 08 Nov 2019
  • views: 563
클래식한 매력이 돋보이는 #박시연 의 우아한 모먼트. #박시연 #코스모폴리탄
https://wn.com/Park_Si_Yeon(박시연)_X_Cosmopolitan(코스모폴리탄)_2019_October_Issue
[Produce 101] 1:1 EyecontactㅣPark Si Yeon – GFRIEND ♬Me Gustas Tu @ P.E(RAP) EP.07 20160304
3:24

[Produce 101] 1:1 EyecontactㅣPark Si Yeon – GFRIEND ♬Me Gustas Tu @ P.E(RAP) EP.07 20160304

  • Order:
  • Duration: 3:24
  • Uploaded Date: 02 Mar 2016
  • views: 191754
100,000표의 주인공은 누가 될 것 인가! 각 포지션별 최고의 실력자를 가르는 포지션 평가! [Produce 101] 1:1 EyecontactㅣPark Si Yeon – GFRIEND ♬Me Gustas Tu @ Position Eval.(VOCAL) EP.07 20160304 [직캠]박시연(플레디스) - 여차친구 ♬오늘부터 우리는 @포지션 평가(VOCAL) - ▶ 지금 ′프로듀스101′ 홈페이지에서 당신의 소녀에게 투표하세요! 당신의 한표가 소녀들의 운명을 결정합니다! http://www.mnet.com/produce101 - 국민 걸그룹 육성 프로젝트 [프로듀스101] 매주 금요일 밤11시
https://wn.com/Produce_101_1_1_EyecontactㅣPark_Si_Yeon_–_Gfriend_♬Me_Gustas_Tu_P.E(Rap)_Ep.07_20160304
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네)

[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네) ***** Hello, this is 1theK. We are working on subtitles now! Please come back and watch it again within a few hours. Thank you for your waiting and continuing interest :) ***** ▶1theK FB : http://www.facebook.com/1theK ▶1theK TW : https://twitter.com/1theK ▶1theK G+ : https://plus.google.com/+1theK
2:30
[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네)
[MV] PARK SI YEON(박시연) _ Thought of You(그리움만 쌓이네) ***** Hello, this is 1theK. We are work...
published: 06 May 2016
Play in Full Screen
5:19
(Eng Sub) XMAN w/ Park Shi Yeon and Lee Jong Soo
Video: XMan Game/Variety Show Airing: Nov. 2003-Feb. 2007 Channel: SBS Hosts: (Main) Yoo, ...
published: 24 Dec 2011
Play in Full Screen
0:46
Trailer 1 'Fantastic' Park Si-yeon, Jisoo
published: 29 Aug 2016
Play in Full Screen
12:44
Food fighter Park Si-yeon, "I gained 24kg after having a child" [Guesthouse Daughters / 2017.03.21]
Click the "Caption" button to activate subtitle! -----------------------------------------...
published: 22 Mar 2017
Play in Full Screen
2:39
Park Si Yeon | South Korean Actress
#model #SouthKoreanActress #worldcelebrity #actress THE WORLD CELEBRITY To be a celebrity...
published: 25 Dec 2021
Play in Full Screen
18:36
Kim Hee-chul's surprise visit for Si-yeon and Da-hae! [Guesthouse Daughters / 2017.03.21]
Click the "Caption" button to activate subtitle! -----------------------------------------...
published: 22 Mar 2017
Play in Full Screen
2:43
[Produce 101] 1:1 EyecontactㅣPark Si Yeon – Group 2 Apink ♬I don’t Know EP.04 20160212
생존을 위한 그룹 배틀! [직캠] 메인보컬 박시연(플레디스) - 2조 Apink ♬ 몰라요 @그룹배틀평가 - ▶ 지금 ′프로듀스101′ 홈페이지에서 당신의 소녀...
published: 10 Feb 2016
Play in Full Screen
6:06
No Min Woo & Park Shi Yun - The Greatest Marriage OST - Crazy Love / 노민우 & 박시연 in 최고의 결혼
Drama name: The Greatest Marriage Info credit: https://mydramalist.com/10621-best-weddi...
published: 14 Jun 2022
Play in Full Screen
0:40
Park Si Yeon(박시연) X Cosmopolitan(코스모폴리탄) 2019 October Issue
클래식한 매력이 돋보이는 #박시연 의 우아한 모먼트. #박시연 #코스모폴리탄
published: 08 Nov 2019
Play in Full Screen
3:24
[Produce 101] 1:1 EyecontactㅣPark Si Yeon – GFRIEND ♬Me Gustas Tu @ P.E(RAP) EP.07 20160304
100,000표의 주인공은 누가 될 것 인가! 각 포지션별 최고의 실력자를 가르는 포지션 평가! [Produce 101] 1:1 EyecontactㅣPark S...
published: 02 Mar 2016
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: park si-yeon

Edit

Weak Hero Class 2: Park Ji Hoon says 'loneliness' in childhood helped him portray Yeon Si Eun better

Pinkvilla 02 May 2025
Park Ji Hoon revealed his personal experiences helped him play the role of Yeon Si Eun realistically ... In Weak Hero Class 2, Park Ji Hoon shines as Yeon Si Eun, a ...
Edit

Weak Hero Class 2 full cast: From Park Ji-hoon to Lee Jun-young

Hindustan Times 30 Apr 2025
Park Ji-hoon as Yeon Si-eun. Park Ji-hoon returns to the series to reprise as Yeon Si-eun – the former model student who attends the troubled Eunjang High School ... Ryeoun as Park Hu-min (a.k.a ... From Park Ji-hoon to Lee Jun-young.
Edit

What Happens to Ahn Su-ho in Weak Hero Class 2?

Coming Soon 30 Apr 2025
Having premiered in November 2022, Weak Hero Class 1 follows the adventures of Park Ji-hoon’s Yeon Si-eun as he allies with Su-ho and Hong Kyung’s Oh Beom-seok to fight off the bullies in his school.
Edit

‘Weak Hero Class 2’ tops Netflix global non-English series chart in just 3 days

Korea Times 30 Apr 2025
Weak Hero Class 2” follows the evolution of Yeon Si-eun (played by Park Ji-hoon), and its emotional depth and brutal action sequences have been widely praised. Facing yet another wave of violence, Yeon fights back to .
Edit

Park Ji-hoon To Lee Jun-young, Meet The Full Cast Of Weak Hero Class 2

News18 30 Apr 2025
Park Ji-hoon returns to the series as the lead character Yeon Si-eun, a model student and class topper, who soon discovers his exceptional fighting abilities ... .
Edit

K-series ‘Weak Hero Class 2’ debuts at No. 1 on Netflix

Manila Bulletin 30 Apr 2025
Season 2 of “Weak Hero” ("약한영웅"), which delves into school violence, stars Park Ji-hoon as Yeon Si-eun, Ryeo Un as Park Hu-min, Choi Min-yeong as Seo Jun-tae, Lee Jun-young as Geum Seong-je, Yu Su-bin ...
Edit

Has Weak Hero Class 3 Been Renewed or Canceled?

Coming Soon 29 Apr 2025
The story focused on Park Ji-hoon’s character, Yeon Si-eun, and his journey at a new school after the events of Season 1.
Edit

Weak Hero Class 3 in the pipeline? Park Ji Hoon reveals thoughts with possibility of Yeon Si Eun going 'rogue'

Pinkvilla 27 Apr 2025
Park Ji Hoon teases a dark twist for Yeon Si Eun in a possible Weak Hero Class season 3, imagining the hero turning rogue after losing his friends! Know everything here! By.
Edit

Did you catch Twinkling Watermelon easter eggs in Weak Hero Class 2? Fans are convinced Ryeoun dropped references about Choi Hyun Wook

Pinkvilla 27 Apr 2025
Picking up right where the intense first season ended, Weak Hero Class 2 continues to follow top student Yeon Si Eun (Park Ji Hoon) as he transfers into the brutal and lawless ...
Edit

Weak Hero Class 2 review: Is it worth watching?

Gulf News 26 Apr 2025
The script was good, the character development was good, the action was good, and the acting by the characters, especially by Park Ji-hoon who plays Yeon Si-eun was brilliant.
Edit

How Many Episodes Are in Weak Hero Class 2 & When Do They Come Out?

Coming Soon 25 Apr 2025
In the second season, Yeon Si Eun is trying to start fresh at a new school, where he meets Park Hu Min, Seo Jun Tae, and Ko Hyeon Tak ... Park Ji Hoon takes on the lead role of Yeon Si Eun in Weak Hero Class 2.
Edit

Is There a Weak Hero Class 2 Episode 9 Release Date or Part 2?

Coming Soon 25 Apr 2025
In the new season, Yeon Si Eun begins a fresh chapter at Eunjang High School ... Weak Hero Class 2 follows Yeon Si Eun as he starts at a new school, hoping for a fresh start ... Park Ji Hoon stars in the lead role of Yeon Si Eun.
Edit

Netflix K-drama Weak Hero Class 2: Park Ji-hoon back for beefed-up school fight drama

South China Morning Post 25 Apr 2025
Reluctant fighter Yeon Si-eun (Park Ji-hoon) is in another new school, where he tries in vain to avoid trouble, in this Netflix drama ... .
Edit

Weak Hero Class 2: All you need to know about Park Ji Hoon-led season 1 ahead of return with Lee Jun Young, Ryeoun and more

Pinkvilla 24 Apr 2025
It’s D-Day for Weak Hero Class 2, and we’re taking a look back at the events of the first season, which introduced us to the world of Yeon Si Eun (Park Ji ...
Edit

Netflix revives hit school action 'Weak Hero' with Season 2

Korea Times 21 Apr 2025
Actor Park Ji-hoon, who takes on the lead role Yeon Si-eun, introduced the "Weak Hero" series as "the coming-of-age story of a boy who stands up to even greater violence."
×