'+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;
}));
});
-->
林俊傑 JJ Lin / 蔡卓妍 Charlene Choi - 《小酒窩》 Dimples - JJ20 現場版 Live in Hong Kong
Follow JJ https://www.instagram.com/jjlin - Subscribe on YouTube now for upcoming releases!
林俊傑 JJ Lin《JJ20世界巡迴演唱會》 香港站
限定歌曲
林俊傑 JJ Lin/ 蔡卓妍 Charlene Choi -《小酒窩》Dimples
好久不見,睫毛妹!
這首《小酒窩》
不論怎麼唱
都不比和原唱 A-Sa 蔡卓妍一起合唱好聽!
Nothing beats performing a song with its original singer, especially this one! Dimples! Long time no see, Charlene! @choisaaaa
《小酒窩》Dimples
原唱 - JJ 林俊傑/ 蔡卓妍
詞 - 王雅君
曲 - JJ 林俊傑
原編曲 - JJ 林俊傑/ 吳劍泓
Live 編曲 - 吳慶隆
Original Singer: JJ Lin/ Charlene Choi
Lyrics: Tina Wang
Composer: JJ Lin
Original Arrangement: JJ Lin/ Zennon Goh
Live Arrangement: Goh Kheng Long
#roadtoJJ20 #JJ20WorldTour
_
■ 更多林俊傑相關資訊:
林俊傑官方 Facebook:https://www.facebook.com/JJLin
林俊傑官方 Instagram:https://www.instagram.com/jjlin
林俊傑新浪微博:http://www.weibo.com/jjlin
林俊傑Twitter:https://twitter.com/JJ_Lin
林俊...
published: 31 Mar 2023
蔡卓妍 Charlene Choi《明明》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://url.cn/8lmMts
明明
曲:Eric Kwok
詞:林若寧
編:Eric Kwok.Jun Kung
監:Eric Kwok
我記得當日 與你最低溫度下
吃博多拉麵 你愛吃蔥花
我記得當晚 四處借宿不會怕
旅舍租不了 兩個也一家
但是當關係 漸漸活得不像話
浪漫似泡沫 慢慢地變化
結尾的一幕 你送我歸家
紅了眼睛的歡送最後落霞
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 講分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
我記得生病 照顧我依偎附近
替我煲中藥 晝晚也不分
我記得經過 有過教堂的市鎮
你放輕聲線 說過了婚姻
幸運的相遇 用盡大家的幸運
日落了以後 大道便會暗
你說的珍重 語氣太窩心
承諾過終生的約卻沒下文
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 怎分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/...
published: 17 Dec 2012
JJ Lin ft. Charlene Choi - Little Dimples/Xiao Jiu Wo (Pinyin/English Subbed) MV
Third track on JJ Lin's album Sixology. Features Charlene Choi
All Credits go to DoReMii
published: 07 May 2009
蔡卓妍 Charlene Choi《二缺一》Official 官方完整版 [首播] [MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes :http://url.cn/8lmMts
二缺一 主唱:蔡卓妍
曲/詞/編/監:周博賢 前奏:14" 曲長:3'33"
每晚回到家裡 帶半殘廢身軀
入睡床沒法睡 雜念來又去
往往仍記起你 過去共你一起
所經過多得可以編寫幾次傳記
@分享我的興趣 分擔我各樣顧慮
在絕處一刻擁抱等於給我聖水
你去後令我發現
笑聲有罪 踏步也失據
*剩下自己 怎可走到尾
遇挫折孤身撐起 好東西獨自回味
最極刑是 剩下自己 彷彿單腳企
任我再努力逃避 終須一跌沒餘地
#假使我昨日單身走過去
沒有經歷和你一起的壯舉
今天要我獨居應不會
難受到想死去
慣了共你一半 吃喝共你一碗
是幕僚是友伴 幸運和自滿
這晚上再想你 記掛共你一起
所經過的多麼美多麼迴腸盪氣
Repeat @ * #
實在是世事難料 Repeat *
最絕情是 Repeat * #
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choich...
published: 12 Jan 2010
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
published: 02 Mar 2023
蔡卓妍 Charlene Choi & 周柏豪 Pakho Chau《請你愛我》[Official MV]
清新愛情小品電影《原諒他77次》將會在今年初夏上映,導演邱禮濤及編劇李敏在拍攝電影期間,就已經構思由男、女主角合唱主題曲,藉著歌曲將兩人的情感昇華。
《請你愛我》由梁秉仁作曲,同名原著小說作家兼電影編劇李敏作詞,徐浩、周鍚漢聯手監製。
Now available on:
------------------------------------------------------------------
iTunes – http://apple.co/2ouqkHF
Apple Music – http://apple.co/2qcKz9b
hmv PLAY – http://bit.ly/2pjywd5
JOOX Hong Kong – http://bit.ly/2pxEFDi
MOOV – https://s.moov.hk/r?s=fMPLPk
KKBOX – http://kkbox.fm/FSHGrz
MusicOne – http://bit.ly/2p2M101
Spotify – http://spoti.fi/2oK4L1P
3HK – http://bit.ly/2pgzdBI
myMusic 線上音樂 – http://bit.ly/2q3nsyt
------------------------------------------------------------------
作曲: 梁秉仁
作詞: 李敏
編曲: 徐浩/周錫漢
監製: 徐浩/周錫漢
OP: Emperor Film Production Company Limited admin by EEG Music Publishing Limited
男:請你愛我 請你愛我 因為 被愛的快樂更多
女:將來如何 (男:怎知道) 女:只怕錯過 (男:請相信)
男:和我去達成美麗結果
...
published: 25 Apr 2017
蔡卓妍 Charlene Choi《錯過》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://iTunes.com/CharleneChoi
錯過
主唱:蔡卓妍
作曲 : 徐浩@the Island
作詞 : C君@the Island
編曲 : Randy Chow@the Island
監製 : Randy Chow@the Island、徐浩@the Island
是某位怪你極貼身
某一位對你負了心
以前遇過某幾個人
全部叫你很傷心
甚至使你再沒法相信
能重拾愛情途中打不死的英勇
到這天你想清楚過
其實錯過方可有這一個
* 回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 結果不美
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有 *
在這天你偶遇了他
記憶跟你告別了嗎
這年份再愛一個人
能自信更珍惜嗎
沒有醜惡也沒有優雅
其實在愛情途中損傷都不可怕
有錯失過方珍惜過
然後會滿足找到這一個
Repeat *
是怨恨過分開過遺憾過
無數略過
才會能叫你
愛惜更多
回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 痛心收尾
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegm...
published: 16 May 2013
陳偉霆对阿Sa說: "我愛妳" William Chan Says To Charlene Choi "I Love You"
published: 30 Dec 2010
3:21
林俊傑 JJ Lin / 蔡卓妍 Charlene Choi - 《小酒窩》 Dimples - JJ20 現場版 Live in Hong Kong
Follow JJ https://www.instagram.com/jjlin - Subscribe on YouTube now for upcoming releases!
林俊傑 JJ Lin《JJ20世界巡迴演唱會》 香港站
限定歌曲
林俊傑 JJ Lin/ 蔡卓妍 Charlene Choi -《小...
Follow JJ https://www.instagram.com/jjlin - Subscribe on YouTube now for upcoming releases!
林俊傑 JJ Lin《JJ20世界巡迴演唱會》 香港站
限定歌曲
林俊傑 JJ Lin/ 蔡卓妍 Charlene Choi -《小酒窩》Dimples
好久不見,睫毛妹!
這首《小酒窩》
不論怎麼唱
都不比和原唱 A-Sa 蔡卓妍一起合唱好聽!
Nothing beats performing a song with its original singer, especially this one! Dimples! Long time no see, Charlene! @choisaaaa
《小酒窩》Dimples
原唱 - JJ 林俊傑/ 蔡卓妍
詞 - 王雅君
曲 - JJ 林俊傑
原編曲 - JJ 林俊傑/ 吳劍泓
Live 編曲 - 吳慶隆
Original Singer: JJ Lin/ Charlene Choi
Lyrics: Tina Wang
Composer: JJ Lin
Original Arrangement: JJ Lin/ Zennon Goh
Live Arrangement: Goh Kheng Long
#roadtoJJ20 #JJ20WorldTour
_
■ 更多林俊傑相關資訊:
林俊傑官方 Facebook:https://www.facebook.com/JJLin
林俊傑官方 Instagram:https://www.instagram.com/jjlin
林俊傑新浪微博:http://www.weibo.com/jjlin
林俊傑Twitter:https://twitter.com/JJ_Lin
林俊傑 TikTok: https://www.tiktok.com/@drifterjjlin
JFJ Productions官方Facebook:https://www.facebook.com/jforj
JFJ Productions 官方 Instagram:https://www.instagram.com/jfj_production
JFJ Productions新浪微博:https://www.weibo.com/jfjproductions
JFJ Productions TikTok: https://www.tiktok.com/@jfjproductions
https://wn.com/林俊傑_Jj_Lin_蔡卓妍_Charlene_Choi_《小酒窩》_Dimples_Jj20_現場版_Live_In_Hong_Kong
Follow JJ https://www.instagram.com/jjlin - Subscribe on YouTube now for upcoming releases!
林俊傑 JJ Lin《JJ20世界巡迴演唱會》 香港站
限定歌曲
林俊傑 JJ Lin/ 蔡卓妍 Charlene Choi -《小酒窩》Dimples
好久不見,睫毛妹!
這首《小酒窩》
不論怎麼唱
都不比和原唱 A-Sa 蔡卓妍一起合唱好聽!
Nothing beats performing a song with its original singer, especially this one! Dimples! Long time no see, Charlene! @choisaaaa
《小酒窩》Dimples
原唱 - JJ 林俊傑/ 蔡卓妍
詞 - 王雅君
曲 - JJ 林俊傑
原編曲 - JJ 林俊傑/ 吳劍泓
Live 編曲 - 吳慶隆
Original Singer: JJ Lin/ Charlene Choi
Lyrics: Tina Wang
Composer: JJ Lin
Original Arrangement: JJ Lin/ Zennon Goh
Live Arrangement: Goh Kheng Long
#roadtoJJ20 #JJ20WorldTour
_
■ 更多林俊傑相關資訊:
林俊傑官方 Facebook:https://www.facebook.com/JJLin
林俊傑官方 Instagram:https://www.instagram.com/jjlin
林俊傑新浪微博:http://www.weibo.com/jjlin
林俊傑Twitter:https://twitter.com/JJ_Lin
林俊傑 TikTok: https://www.tiktok.com/@drifterjjlin
JFJ Productions官方Facebook:https://www.facebook.com/jforj
JFJ Productions 官方 Instagram:https://www.instagram.com/jfj_production
JFJ Productions新浪微博:https://www.weibo.com/jfjproductions
JFJ Productions TikTok: https://www.tiktok.com/@jfjproductions
published: 31 Mar 2023
views: 902420
4:10
蔡卓妍 Charlene Choi《明明》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://url.cn/8lmMts
明明
曲:Eric Kwok
詞:林若寧
編:Eric Kwok.Jun Kung
監:Eric Kwok
我記得當日 與你最低溫度下
吃博多拉麵 你愛吃蔥花
我記得當晚 四處借宿不...
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://url.cn/8lmMts
明明
曲:Eric Kwok
詞:林若寧
編:Eric Kwok.Jun Kung
監:Eric Kwok
我記得當日 與你最低溫度下
吃博多拉麵 你愛吃蔥花
我記得當晚 四處借宿不會怕
旅舍租不了 兩個也一家
但是當關係 漸漸活得不像話
浪漫似泡沫 慢慢地變化
結尾的一幕 你送我歸家
紅了眼睛的歡送最後落霞
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 講分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
我記得生病 照顧我依偎附近
替我煲中藥 晝晚也不分
我記得經過 有過教堂的市鎮
你放輕聲線 說過了婚姻
幸運的相遇 用盡大家的幸運
日落了以後 大道便會暗
你說的珍重 語氣太窩心
承諾過終生的約卻沒下文
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 怎分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
https://wn.com/蔡卓妍_Charlene_Choi《明明》_Official_Mv
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://url.cn/8lmMts
明明
曲:Eric Kwok
詞:林若寧
編:Eric Kwok.Jun Kung
監:Eric Kwok
我記得當日 與你最低溫度下
吃博多拉麵 你愛吃蔥花
我記得當晚 四處借宿不會怕
旅舍租不了 兩個也一家
但是當關係 漸漸活得不像話
浪漫似泡沫 慢慢地變化
結尾的一幕 你送我歸家
紅了眼睛的歡送最後落霞
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 講分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
我記得生病 照顧我依偎附近
替我煲中藥 晝晚也不分
我記得經過 有過教堂的市鎮
你放輕聲線 說過了婚姻
幸運的相遇 用盡大家的幸運
日落了以後 大道便會暗
你說的珍重 語氣太窩心
承諾過終生的約卻沒下文
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 怎分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
published: 17 Dec 2012
views: 688073
3:36
蔡卓妍 Charlene Choi《二缺一》Official 官方完整版 [首播] [MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes :http://url.cn/8lmMts
二缺一 主唱:蔡卓妍
曲/詞/編/監:周博賢 前奏:14" 曲長:3'33"
每晚回到家裡 帶半殘廢身軀
入睡床沒法睡 雜念來又去
往往仍記起你 過去共你一起
所經過多得...
蔡卓妍 現已登陸 iTunes | NOW available on iTunes :http://url.cn/8lmMts
二缺一 主唱:蔡卓妍
曲/詞/編/監:周博賢 前奏:14" 曲長:3'33"
每晚回到家裡 帶半殘廢身軀
入睡床沒法睡 雜念來又去
往往仍記起你 過去共你一起
所經過多得可以編寫幾次傳記
@分享我的興趣 分擔我各樣顧慮
在絕處一刻擁抱等於給我聖水
你去後令我發現
笑聲有罪 踏步也失據
*剩下自己 怎可走到尾
遇挫折孤身撐起 好東西獨自回味
最極刑是 剩下自己 彷彿單腳企
任我再努力逃避 終須一跌沒餘地
#假使我昨日單身走過去
沒有經歷和你一起的壯舉
今天要我獨居應不會
難受到想死去
慣了共你一半 吃喝共你一碗
是幕僚是友伴 幸運和自滿
這晚上再想你 記掛共你一起
所經過的多麼美多麼迴腸盪氣
Repeat @ * #
實在是世事難料 Repeat *
最絕情是 Repeat * #
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
https://wn.com/蔡卓妍_Charlene_Choi《二缺一》Official_官方完整版_首播_Mv
蔡卓妍 現已登陸 iTunes | NOW available on iTunes :http://url.cn/8lmMts
二缺一 主唱:蔡卓妍
曲/詞/編/監:周博賢 前奏:14" 曲長:3'33"
每晚回到家裡 帶半殘廢身軀
入睡床沒法睡 雜念來又去
往往仍記起你 過去共你一起
所經過多得可以編寫幾次傳記
@分享我的興趣 分擔我各樣顧慮
在絕處一刻擁抱等於給我聖水
你去後令我發現
笑聲有罪 踏步也失據
*剩下自己 怎可走到尾
遇挫折孤身撐起 好東西獨自回味
最極刑是 剩下自己 彷彿單腳企
任我再努力逃避 終須一跌沒餘地
#假使我昨日單身走過去
沒有經歷和你一起的壯舉
今天要我獨居應不會
難受到想死去
慣了共你一半 吃喝共你一碗
是幕僚是友伴 幸運和自滿
這晚上再想你 記掛共你一起
所經過的多麼美多麼迴腸盪氣
Repeat @ * #
實在是世事難料 Repeat *
最絕情是 Repeat * #
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
published: 12 Jan 2010
views: 201219
3:17
蔡卓妍 Charlene Choi & 周柏豪 Pakho Chau《請你愛我》[Official MV]
清新愛情小品電影《原諒他77次》將會在今年初夏上映,導演邱禮濤及編劇李敏在拍攝電影期間,就已經構思由男、女主角合唱主題曲,藉著歌曲將兩人的情感昇華。
《請你愛我》由梁秉仁作曲,同名原著小說作家兼電影編劇李敏作詞,徐浩、周鍚漢聯手監製。
Now available on:
----------------------...
清新愛情小品電影《原諒他77次》將會在今年初夏上映,導演邱禮濤及編劇李敏在拍攝電影期間,就已經構思由男、女主角合唱主題曲,藉著歌曲將兩人的情感昇華。
《請你愛我》由梁秉仁作曲,同名原著小說作家兼電影編劇李敏作詞,徐浩、周鍚漢聯手監製。
Now available on:
------------------------------------------------------------------
iTunes – http://apple.co/2ouqkHF
Apple Music – http://apple.co/2qcKz9b
hmv PLAY – http://bit.ly/2pjywd5
JOOX Hong Kong – http://bit.ly/2pxEFDi
MOOV – https://s.moov.hk/r?s=fMPLPk
KKBOX – http://kkbox.fm/FSHGrz
MusicOne – http://bit.ly/2p2M101
Spotify – http://spoti.fi/2oK4L1P
3HK – http://bit.ly/2pgzdBI
myMusic 線上音樂 – http://bit.ly/2q3nsyt
------------------------------------------------------------------
作曲: 梁秉仁
作詞: 李敏
編曲: 徐浩/周錫漢
監製: 徐浩/周錫漢
OP: Emperor Film Production Company Limited admin by EEG Music Publishing Limited
男:請你愛我 請你愛我 因為 被愛的快樂更多
女:將來如何 (男:怎知道) 女:只怕錯過 (男:請相信)
男:和我去達成美麗結果
女:和你去達成美麗結果
男:珍惜我的 (女:my memory) 男:像光譜的記憶 (女:記憶)
男:給親愛的 (女:our history) 男:釐定愛的注釋 (女:注釋)
男:O, will you spend your life together with me?
男:來和我創造動人二人故事 女:別要停止
男:私家的戀愛 或許妒忌和在意 女:令我們真正豁達與無私
男:願我擁有你 是太自私
女:O, will you spend your life together with me?
女:情人若犯錯 終可一一寬恕
合:一次和一輩子 仍是一聲我願意
男:O, will you spend your life together with me?
男:來和我創造動人二人故事 女:別要停止
男:私家的戀愛 或許妒忌和在意 女:令我們真正豁達與無私
男:願我擁有你 是太自私
女:O, will you spend your life together with me?
女:情人若犯錯 終可一一寬恕
合:一次和一輩子 仍是一聲我願意
https://wn.com/蔡卓妍_Charlene_Choi_周柏豪_Pakho_Chau《請你愛我》_Official_Mv
清新愛情小品電影《原諒他77次》將會在今年初夏上映,導演邱禮濤及編劇李敏在拍攝電影期間,就已經構思由男、女主角合唱主題曲,藉著歌曲將兩人的情感昇華。
《請你愛我》由梁秉仁作曲,同名原著小說作家兼電影編劇李敏作詞,徐浩、周鍚漢聯手監製。
Now available on:
------------------------------------------------------------------
iTunes – http://apple.co/2ouqkHF
Apple Music – http://apple.co/2qcKz9b
hmv PLAY – http://bit.ly/2pjywd5
JOOX Hong Kong – http://bit.ly/2pxEFDi
MOOV – https://s.moov.hk/r?s=fMPLPk
KKBOX – http://kkbox.fm/FSHGrz
MusicOne – http://bit.ly/2p2M101
Spotify – http://spoti.fi/2oK4L1P
3HK – http://bit.ly/2pgzdBI
myMusic 線上音樂 – http://bit.ly/2q3nsyt
------------------------------------------------------------------
作曲: 梁秉仁
作詞: 李敏
編曲: 徐浩/周錫漢
監製: 徐浩/周錫漢
OP: Emperor Film Production Company Limited admin by EEG Music Publishing Limited
男:請你愛我 請你愛我 因為 被愛的快樂更多
女:將來如何 (男:怎知道) 女:只怕錯過 (男:請相信)
男:和我去達成美麗結果
女:和你去達成美麗結果
男:珍惜我的 (女:my memory) 男:像光譜的記憶 (女:記憶)
男:給親愛的 (女:our history) 男:釐定愛的注釋 (女:注釋)
男:O, will you spend your life together with me?
男:來和我創造動人二人故事 女:別要停止
男:私家的戀愛 或許妒忌和在意 女:令我們真正豁達與無私
男:願我擁有你 是太自私
女:O, will you spend your life together with me?
女:情人若犯錯 終可一一寬恕
合:一次和一輩子 仍是一聲我願意
男:O, will you spend your life together with me?
男:來和我創造動人二人故事 女:別要停止
男:私家的戀愛 或許妒忌和在意 女:令我們真正豁達與無私
男:願我擁有你 是太自私
女:O, will you spend your life together with me?
女:情人若犯錯 終可一一寬恕
合:一次和一輩子 仍是一聲我願意
published: 25 Apr 2017
views: 1460435
4:27
蔡卓妍 Charlene Choi《錯過》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://iTunes.com/CharleneChoi
錯過
主唱:蔡卓妍
作曲 : 徐浩@the Island
作詞 : C君@the Island
編曲 : Randy Chow@the Island
監製 :...
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://iTunes.com/CharleneChoi
錯過
主唱:蔡卓妍
作曲 : 徐浩@the Island
作詞 : C君@the Island
編曲 : Randy Chow@the Island
監製 : Randy Chow@the Island、徐浩@the Island
是某位怪你極貼身
某一位對你負了心
以前遇過某幾個人
全部叫你很傷心
甚至使你再沒法相信
能重拾愛情途中打不死的英勇
到這天你想清楚過
其實錯過方可有這一個
* 回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 結果不美
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有 *
在這天你偶遇了他
記憶跟你告別了嗎
這年份再愛一個人
能自信更珍惜嗎
沒有醜惡也沒有優雅
其實在愛情途中損傷都不可怕
有錯失過方珍惜過
然後會滿足找到這一個
Repeat *
是怨恨過分開過遺憾過
無數略過
才會能叫你
愛惜更多
回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 痛心收尾
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
https://wn.com/蔡卓妍_Charlene_Choi《錯過》_Official_Mv
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://iTunes.com/CharleneChoi
錯過
主唱:蔡卓妍
作曲 : 徐浩@the Island
作詞 : C君@the Island
編曲 : Randy Chow@the Island
監製 : Randy Chow@the Island、徐浩@the Island
是某位怪你極貼身
某一位對你負了心
以前遇過某幾個人
全部叫你很傷心
甚至使你再沒法相信
能重拾愛情途中打不死的英勇
到這天你想清楚過
其實錯過方可有這一個
* 回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 結果不美
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有 *
在這天你偶遇了他
記憶跟你告別了嗎
這年份再愛一個人
能自信更珍惜嗎
沒有醜惡也沒有優雅
其實在愛情途中損傷都不可怕
有錯失過方珍惜過
然後會滿足找到這一個
Repeat *
是怨恨過分開過遺憾過
無數略過
才會能叫你
愛惜更多
回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 痛心收尾
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
published: 16 May 2013
views: 386061
3:21
林俊傑 JJ Lin / 蔡卓妍 Charlene Choi - 《小酒窩》 Dimples - JJ20 現場版 Live in Hong Kong
Follow JJ https://www.instagram.com/jjlin - Subscribe on YouTube now for upcoming releases...
Play in Full Screen
林俊傑 JJ Lin / 蔡卓妍 Charlene Choi - 《小酒窩》 Dimples - JJ20 現場版 Live in Hong Kong
林俊傑 JJ Lin / 蔡卓妍 Charlene Choi - 《小酒窩》 Dimples - JJ20 現場版 Live in Hong Kong
Follow JJ https://www.instagram.com/jjlin - Subscribe on YouTube now for upcoming releases!
林俊傑 JJ Lin《JJ20世界巡迴演唱會》 香港站
限定歌曲
林俊傑 JJ Lin/ 蔡卓妍 Charlene Choi -《小酒窩》Dimples
好久不見,睫毛妹!
這首《小酒窩》
不論怎麼唱
都不比和原唱 A-Sa 蔡卓妍一起合唱好聽!
Nothing beats performing a song with its original singer, especially this one! Dimples! Long time no see, Charlene! @choisaaaa
《小酒窩》Dimples
原唱 - JJ 林俊傑/ 蔡卓妍
詞 - 王雅君
曲 - JJ 林俊傑
原編曲 - JJ 林俊傑/ 吳劍泓
Live 編曲 - 吳慶隆
Original Singer: JJ Lin/ Charlene Choi
Lyrics: Tina Wang
Composer: JJ Lin
Original Arrangement: JJ Lin/ Zennon Goh
Live Arrangement: Goh Kheng Long
#roadtoJJ20 #JJ20WorldTour
_
■ 更多林俊傑相關資訊:
林俊傑官方 Facebook:https://www.facebook.com/JJLin
林俊傑官方 Instagram:https://www.instagram.com/jjlin
林俊傑新浪微博:http://www.weibo.com/jjlin
林俊傑Twitter:https://twitter.com/JJ_Lin
林俊傑 TikTok: https://www.tiktok.com/@drifterjjlin
JFJ Productions官方Facebook:https://www.facebook.com/jforj
JFJ Productions 官方 Instagram:https://www.instagram.com/jfj_production
JFJ Productions新浪微博:https://www.weibo.com/jfjproductions
JFJ Productions TikTok: https://www.tiktok.com/@jfjproductions
4:10
蔡卓妍 Charlene Choi《明明》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://url.cn/8lmMts
明明
曲:Eric Kwok
詞:林若寧
編...
Play in Full Screen
蔡卓妍 Charlene Choi《明明》[Official MV]
蔡卓妍 Charlene Choi《明明》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://url.cn/8lmMts
明明
曲:Eric Kwok
詞:林若寧
編:Eric Kwok.Jun Kung
監:Eric Kwok
我記得當日 與你最低溫度下
吃博多拉麵 你愛吃蔥花
我記得當晚 四處借宿不會怕
旅舍租不了 兩個也一家
但是當關係 漸漸活得不像話
浪漫似泡沫 慢慢地變化
結尾的一幕 你送我歸家
紅了眼睛的歡送最後落霞
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 講分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
我記得生病 照顧我依偎附近
替我煲中藥 晝晚也不分
我記得經過 有過教堂的市鎮
你放輕聲線 說過了婚姻
幸運的相遇 用盡大家的幸運
日落了以後 大道便會暗
你說的珍重 語氣太窩心
承諾過終生的約卻沒下文
明明不應該牽掛你神情 明明不應該將細節辨認
明明雙方都打破約定 彼此都需要冷靜
怎麼始終我揮之不去窩心笑聲
明明不應該一再說明明 明明好應該相信這是命
明明燭光都燒化散淨 怎分開都已決定
怎麼一想你始終都會沾濕眼睛 人寧願金魚般記性
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
4:00
JJ Lin ft. Charlene Choi - Little Dimples/Xiao Jiu Wo (Pinyin/English Subbed) MV
Third track on JJ Lin's album Sixology. Features Charlene Choi
All Credits go to DoReMi...
Play in Full Screen
JJ Lin ft. Charlene Choi - Little Dimples/Xiao Jiu Wo (Pinyin/English Subbed) MV
JJ Lin ft. Charlene Choi - Little Dimples/Xiao Jiu Wo (Pinyin/English Subbed) MV
Third track on JJ Lin's album Sixology. Features Charlene Choi
All Credits go to DoReMii
3:36
蔡卓妍 Charlene Choi《二缺一》Official 官方完整版 [首播] [MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes :http://url.cn/8lmMts
二缺一 主唱:蔡卓妍
曲/詞/編/監:周博賢...
Play in Full Screen
蔡卓妍 Charlene Choi《二缺一》Official 官方完整版 [首播] [MV]
蔡卓妍 Charlene Choi《二缺一》Official 官方完整版 [首播] [MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes :http://url.cn/8lmMts
二缺一 主唱:蔡卓妍
曲/詞/編/監:周博賢 前奏:14" 曲長:3'33"
每晚回到家裡 帶半殘廢身軀
入睡床沒法睡 雜念來又去
往往仍記起你 過去共你一起
所經過多得可以編寫幾次傳記
@分享我的興趣 分擔我各樣顧慮
在絕處一刻擁抱等於給我聖水
你去後令我發現
笑聲有罪 踏步也失據
*剩下自己 怎可走到尾
遇挫折孤身撐起 好東西獨自回味
最極刑是 剩下自己 彷彿單腳企
任我再努力逃避 終須一跌沒餘地
#假使我昨日單身走過去
沒有經歷和你一起的壯舉
今天要我獨居應不會
難受到想死去
慣了共你一半 吃喝共你一碗
是幕僚是友伴 幸運和自滿
這晚上再想你 記掛共你一起
所經過的多麼美多麼迴腸盪氣
Repeat @ * #
實在是世事難料 Repeat *
最絕情是 Repeat * #
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
0:33
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
Play in Full Screen
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
Charlene Choi 蔡卓妍 @ Paris Fashion Week 2 march 2023 show Chloé
3:17
蔡卓妍 Charlene Choi & 周柏豪 Pakho Chau《請你愛我》[Official MV]
清新愛情小品電影《原諒他77次》將會在今年初夏上映,導演邱禮濤及編劇李敏在拍攝電影期間,就已經構思由男、女主角合唱主題曲,藉著歌曲將兩人的情感昇華。
《請你愛我》由梁秉仁作曲,同...
Play in Full Screen
蔡卓妍 Charlene Choi & 周柏豪 Pakho Chau《請你愛我》[Official MV]
蔡卓妍 Charlene Choi & 周柏豪 Pakho Chau《請你愛我》[Official MV]
清新愛情小品電影《原諒他77次》將會在今年初夏上映,導演邱禮濤及編劇李敏在拍攝電影期間,就已經構思由男、女主角合唱主題曲,藉著歌曲將兩人的情感昇華。
《請你愛我》由梁秉仁作曲,同名原著小說作家兼電影編劇李敏作詞,徐浩、周鍚漢聯手監製。
Now available on:
------------------------------------------------------------------
iTunes – http://apple.co/2ouqkHF
Apple Music – http://apple.co/2qcKz9b
hmv PLAY – http://bit.ly/2pjywd5
JOOX Hong Kong – http://bit.ly/2pxEFDi
MOOV – https://s.moov.hk/r?s=fMPLPk
KKBOX – http://kkbox.fm/FSHGrz
MusicOne – http://bit.ly/2p2M101
Spotify – http://spoti.fi/2oK4L1P
3HK – http://bit.ly/2pgzdBI
myMusic 線上音樂 – http://bit.ly/2q3nsyt
------------------------------------------------------------------
作曲: 梁秉仁
作詞: 李敏
編曲: 徐浩/周錫漢
監製: 徐浩/周錫漢
OP: Emperor Film Production Company Limited admin by EEG Music Publishing Limited
男:請你愛我 請你愛我 因為 被愛的快樂更多
女:將來如何 (男:怎知道) 女:只怕錯過 (男:請相信)
男:和我去達成美麗結果
女:和你去達成美麗結果
男:珍惜我的 (女:my memory) 男:像光譜的記憶 (女:記憶)
男:給親愛的 (女:our history) 男:釐定愛的注釋 (女:注釋)
男:O, will you spend your life together with me?
男:來和我創造動人二人故事 女:別要停止
男:私家的戀愛 或許妒忌和在意 女:令我們真正豁達與無私
男:願我擁有你 是太自私
女:O, will you spend your life together with me?
女:情人若犯錯 終可一一寬恕
合:一次和一輩子 仍是一聲我願意
男:O, will you spend your life together with me?
男:來和我創造動人二人故事 女:別要停止
男:私家的戀愛 或許妒忌和在意 女:令我們真正豁達與無私
男:願我擁有你 是太自私
女:O, will you spend your life together with me?
女:情人若犯錯 終可一一寬恕
合:一次和一輩子 仍是一聲我願意
4:27
蔡卓妍 Charlene Choi《錯過》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://iTunes.com/CharleneChoi
錯過
主唱:蔡卓妍
作曲...
Play in Full Screen
蔡卓妍 Charlene Choi《錯過》[Official MV]
蔡卓妍 Charlene Choi《錯過》[Official MV]
蔡卓妍 現已登陸 iTunes | NOW available on iTunes : http://iTunes.com/CharleneChoi
錯過
主唱:蔡卓妍
作曲 : 徐浩@the Island
作詞 : C君@the Island
編曲 : Randy Chow@the Island
監製 : Randy Chow@the Island、徐浩@the Island
是某位怪你極貼身
某一位對你負了心
以前遇過某幾個人
全部叫你很傷心
甚至使你再沒法相信
能重拾愛情途中打不死的英勇
到這天你想清楚過
其實錯過方可有這一個
* 回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 結果不美
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有 *
在這天你偶遇了他
記憶跟你告別了嗎
這年份再愛一個人
能自信更珍惜嗎
沒有醜惡也沒有優雅
其實在愛情途中損傷都不可怕
有錯失過方珍惜過
然後會滿足找到這一個
Repeat *
是怨恨過分開過遺憾過
無數略過
才會能叫你
愛惜更多
回望當天他敷衍你然後當天他委屈你然後到他拋低你
每段緣起 痛心收尾
往日緣份太曲折離奇
試過一再心死
其實全爲等你
能期待這日這個他將那一對手
叫你一世能佔有
其實曾愛錯 曾悔過
方知富有
關注更多蔡卓妍消息 | Get Closer to Charlene Choi
英皇娛樂Facebook: http://www.facebook.com/EEGPage
雙生兒同盟Twins International Fans Club: http://twinsfansclub.org/bbs/forum.php
蔡卓妍 @英皇娛樂Official Website: http://www.eegmusic.com/artist/index.php/index/210/%E8%94%A1%E5%8D%93%E5%A6%8D
蔡卓妍 @騰訊微博 Tencent Weibo:http://t.qq.com/zychoicharlene
蔡卓妍 @新浪微博 Sina Weibo:http://weibo.com/choicharlene
英皇娛樂 iPhone Apps:http://url.cn/7PUwlQ
0:45
陳偉霆对阿Sa說: "我愛妳" William Chan Says To Charlene Choi "I Love You"
Play in Full Screen
陳偉霆对阿Sa說: "我愛妳" William Chan Says To Charlene Choi "I Love You"
陳偉霆对阿Sa說: "我愛妳" William Chan Says To Charlene Choi "I Love You"
');
} 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('
VIDEO
');
}
}
});
}
}
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));
}
});
});
});
// -->
Simple
by:
Charlene Choi
Fill in tomorrow so the more you stop to What good Song out of today's broadcast Today, less than a fig, then open one which will eventually Result calculated to guarantee a good Who people came here last night Why hide the truth and how do I actually do not see How I was afraid it clear How to survive the fuzzy drink vomit if I have to wear Down his brow I have scratched sting Simple enough to see her too much fun without a thought, however carefully I also like too Repeat Love to here if I can not remember why the sad hard How wrong will fire at home How to survive the fuzzy drink vomit, as I have scratched his brow Would you care for me Simple enough to see her happy without too much but Be careful this one think I have Repeat Who can understand the simpler the fewer mistakes
Latest News for: Charlene Choi
Edit
Hong Kong Standard
01 Apr 2024
The young director posted their wedding photos to Instagram and reaped blessings from a host of friends, including his leading actor Lo Chun-yip from the awarded film, as well as actress Charlene Choi ...
Edit
Fort Worth Weekly
03 Jan 2024
OPENING ... Also with Erika Alexander , Sterling K ... (Opens Friday in Dallas ) ... (Opens Friday in Dallas) ... Starring Tony Leung Chiu-wai , Andy Lau , Simon Yam , Charlene Choi, Alex Fong , Carlos Chan , Catherine Chau, Philip Keung, Robert Chen , and Oliver Williams ... .
Edit
Fort Worth Weekly
27 Dec 2023
OPENING ... Also with Harsha Chemudu, Harsha Vardhan, Roshan Kanakala, and Anu Hasan ... Devil ... Starring Tony Leung Chiu-wai , Andy Lau , Simon Yam , Charlene Choi, Alex Fong , Carlos Chan , Catherine Chau, Philip Keung, Robert Chen , and Oliver Williams ... Salaar ... .
Edit
Lianhe Zaobao
02 Sep 2023
劲度达十号风球的超强台风苏拉从台湾袭向香港、澳门、广东与福建,造成狂风暴雨,学校停课,航空大乱。明星也纷纷在社媒公开家里受严重影响的狼狈情况。蔡卓妍用毛巾挡雨 ... A post shared by Charlene Choi (@choisaaaa) ... 邓紫棋哀号家无备粮 ... ....