'+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;
}));
});
-->
【古琴GuqinX昆曲Kunqu Opera】《牡丹亭·皂罗袍》The Peony Pavilion ——Tang Xianzu, known as Oriental Shakespeare
作曲:曲牌
作词: [明]汤显祖
演唱:钱瑜婷【微博@钱瑜婷sunshine】
古琴演奏:白无瑕【微博@古琴白无瑕】
古琴移植:唐彬 【微博@超级唐葫芦】
摄影/录音/混音/后期:唐彬
出品:自得琴社 【微信公众平台Zideqinshe】 【微博@自得琴社&@古琴诊所】
published: 07 Jun 2019
Ancient Chinese Kunqu-Opera --- "The Dream in Visiting the Garden"
A ancient works of a form of ancient Chinese art.
Composed around 1600 AD by poet,Tang,Xianzu (1550-1616).
A maiden died and revived for love.
published: 12 Jan 2012
【古琴GuqinX昆曲Kunqu】高燃應戰【原神】《神女劈觀》國家隊真·武旦再劈一刀!GENSHIN IMPACT "The Divine Damsel of Devastation"
最近群玉閣上《神女劈觀》的故事演的火熱,從二次元到三次元,竟逐漸演繹成了各劇種八仙過海各顯神通的名場面。粵劇改編後,詞更貼曲,唱來尤顯韻味。昆曲是百戲之祖,綿延存續已六百年,中途歷經魏良輔改良,花雅之爭,曾經唱過村社俚曲,曾經登過大雅之堂。不幸衰落,復又興起,幽蘭雅韻,芬芳獨具。既然百戲盡出,昆腔自不能落後,昆曲是詞曲舞三位一體,原曲尤佳,只惜昆腔難謳原詞,故新翻韻腳,重填新詞以諧律。詞曲已備,舞亦不可缺,有幸邀上海昆劇團青年武旦演員錢瑜婷出演,用《扈家莊》劇中扈三娘的服飾盔帽,借武旦刀重演劈觀故事。武旦亦稱刀馬旦,昆劇行當家門中本無此家,後衍出,專司翻騰打鬥、武藝高強的女性角色。武旦的功夫,可見於耍翎舞刃,英姿颯爽,較溫婉的閨門旦大有不同。
原曲:原神《神女劈觀·喚情》
原唱:楊揚
昆劇演唱/身段:錢瑜婷
古琴:白無瑕
改編填詞:方圳海
化妝:林月媛 盔帽:包驍
錄音/混音/拍攝/後期:唐彬
出品:自得琴社
特別鳴謝:上海昆劇團
《神女劈觀》昆腔重填詞版:
唱:可嘆
秋鴻塞雁恨孤鳶
幾番離恨並仇怨
哀眾生,獻邪祭-招-禍罹難
麗影遽現,仗劍,掃盡——狼煙
紅塵一夢仙緣渺
來世絳府玉名標
紅絲難縛爛柯樵
雲鶴沖天霄
旋鳴百轉意難消
魂幡飄飄天際遙
振羽臨風長嗥
聲悄
(白)往事新曲,唱與諸位聽!
唱:白雪陽春知音識
琴簫翻作訴衷詞
紅纓亂點流星矢
劃盡蒼穹作青史
(白)昔日鶴歸身無匹,今日高朋會滿堂
#自得琴社 #Zideguqinstudio #Guqin #Kunqu #ChineseOpera
published: 25 Jan 2022
KUNQU OPERA崑曲電影《牡丹亭》張繼青
published: 30 Jan 2012
Beauty of Kunqu Opera
Her elegance, grace and poise spanned six centuries, but she was once almost lost to the annals of time. She is Kunqu, and she is "the mother of all operas."
published: 01 Jan 2020
Enjoying the classic Peking Opera 'Drunken Concubine' at Mid Autumn Festival
The Mid-Autumn Festival falls on October 1 this year, marking one of the most important and poetic Chinese festivals. People across the country reunite with family and friends, and enjoy the charm of moon together.
Some people will choose to watch Peking Opera during the festivities, classic opera "Drunken Concubine" is one of the most widely circulated ones. It is also a must-see Chinese opera for die-hard opera fans around the world.
For more:
https://www.cgtn.com/video
Subscribe to us on YouTube: https://goo.gl/lP12gA
Download our APP on Apple Store (iOS): https://itunes.apple.com/us/app/cctvnews-app/id922456579?l=zh&ls=1&mt=8
Download our APP on Google Play (Android): https://play.google.com/store/apps/details?id=com.imib.cctv
published: 02 Oct 2020
【古琴Guqin&昆曲Kunqu Opera】《一拜天地》Worship heaven and earth marriage
原曲: 一拜天地
作曲:黄师傅HBY
作词:火火
原唱:不是Av的Ay君/畅畅酱
古琴移植/演奏:白无瑕【微博@玉涧清泉】
昆曲:钱瑜婷【微博@钱瑜婷sunshine】
摄影/录音/混音/后期:唐彬@超级唐葫芦
出品:自得琴社 【微信公众平台Zideqinshe】 【微博http://weibo.com/zideqinshe】
published: 01 Jul 2018
Chinese Kunqu Opera - The Peony Pavilion - Portraying 昆曲《牡丹亭 . 写真》朱璎媛演唱 中国音乐地图 听见江苏 瑞鸣音乐 Rhymoi
#ChineseFolkMusic#ChineseFolkSongs#ChineseTraditionalMusic#MusicalMapofChina
#中国传统音乐 #中国民间音乐 #中国民歌#中国古典音乐#中国音乐地图
戏曲 昆曲 民族:汉族 地区:江苏
Traditional Chinese Opera Kunqu Opera Ethnicity: The Han Ethnic Group in China Region: Jiangsu Province, China
演唱:朱璎媛
司鼓:辛仕林
司笛:邹钟潮
二胡:姚慎行、赵建安
中胡:杨磊
琵琶:朱磊磊
扬琴:韦秀子
笙:周明军
小锣:程相龙
Vocal: Yingyuan Zhu
Drum: Shilin Xin
Bamboo Flute: Zhongchao Zou
Erhu: Shenxing Yao, Jian’an Zhao
Zhonghu: Lei Yang
Pipa: Leilei Zhu
Dulcimer: Xiuzi Wei
Sheng: Mingjun Zhou
Small Gong: Xianglong Cheng
欢迎订阅:中国音乐地图 瑞鸣音乐频道
Subscribe to the Musical Map of China channel
https://www.youtube.com/channel/UCN19...
Web:www.rhymoi.com Email: [email protected]
© Rhymoi Music.All Rights Reserved.
MUSICAL MAP OF CHINA
Retrieve National Memories through Music;
Trace the Origin of Life fro...
published: 12 Nov 2021
【古琴Guqin x昆曲Kunqu】《牡丹亭·驚夢》表白名段|看古人如何優雅地戀愛
昆曲,百戲之祖,優美的歌舞傳承百年風華。古琴,「四藝」之首,清雅的樂聲浸潤著千年文化;古琴與昆曲的融合,是傳統文化兩大瑰寶齊放異彩,也是兩項聯合國教科文組織「人類口述和非物質文化遺產代表作」的雙輝合璧。這一支古琴伴奏的《牡丹亭·驚夢·山桃紅》,是明代湯顯祖撰寫的昆曲《牡丹亭》裏的經典唱段。女主杜麗娘春遊小憩,夢中見到了一位風度翩翩的書生柳夢梅,綠竹猗猗,他款款走來,吟唱著一支《山桃紅》向心愛的姑娘表達愛意。絲桐清音襯托著水磨清謳,如風過竹林,似石上鳴泉,可以領略到古琴與昆曲兩大非遺藝術的魅力。
作詞:湯顯祖
昆曲/錄音:施夏明 古琴/錄音/混音:唐彬
妝造:王海恵、周姣姣
攝影:豐收 剪輯/後期:林澤欽 視頻包裝/平面設計:魏薇
出品:自得琴社x人民日報
#自得琴社 #昆曲 #非物質文化遺產 #古琴 #中國樂器 #東方音樂 #中國傳統樂器
published: 11 Jun 2022
Kunqu Opera, one of Chinese traditional operas
Kunqu Opera, one of Chinese traditional operas, originated in Kunshan of Jiangsu Province as the ancestor of the hundred plays in China. In 2001, it was listed as UNESCO Intangible Cultural Heritage. Click to enjoy Kunqu Opera Peony Pavilion (Mudan Ting) performed by Kunqu performers at Sinopec Jiangsu Oil Products Marketing Company.
published: 15 Sep 2022
3:58
【古琴GuqinX昆曲Kunqu Opera】《牡丹亭·皂罗袍》The Peony Pavilion ——Tang Xianzu, known as Oriental Shakespeare
作曲:曲牌
作词: [明]汤显祖
演唱:钱瑜婷【微博@钱瑜婷sunshine】
古琴演奏:白无瑕【微博@古琴白无瑕】
古琴移植:唐彬 【微博@超级唐葫芦】
摄影/录音/混音/后期:唐彬
出品:自得琴社 【微信公众平台Zideqinshe】 【微博@自得琴社&@古琴诊所】
作曲:曲牌
作词: [明]汤显祖
演唱:钱瑜婷【微博@钱瑜婷sunshine】
古琴演奏:白无瑕【微博@古琴白无瑕】
古琴移植:唐彬 【微博@超级唐葫芦】
摄影/录音/混音/后期:唐彬
出品:自得琴社 【微信公众平台Zideqinshe】 【微博@自得琴社&@古琴诊所】
https://wn.com/【古琴Guqinx昆曲Kunqu_Opera】《牡丹亭·皂罗袍》The_Peony_Pavilion_——Tang_Xianzu,_Known_As_Oriental_Shakespeare
作曲:曲牌
作词: [明]汤显祖
演唱:钱瑜婷【微博@钱瑜婷sunshine】
古琴演奏:白无瑕【微博@古琴白无瑕】
古琴移植:唐彬 【微博@超级唐葫芦】
摄影/录音/混音/后期:唐彬
出品:自得琴社 【微信公众平台Zideqinshe】 【微博@自得琴社&@古琴诊所】
published: 07 Jun 2019
views: 1053838
5:12
Ancient Chinese Kunqu-Opera --- "The Dream in Visiting the Garden"
A ancient works of a form of ancient Chinese art.
Composed around 1600 AD by poet,Tang,Xianzu (1550-1616).
A maiden died and revived for love.
A ancient works of a form of ancient Chinese art.
Composed around 1600 AD by poet,Tang,Xianzu (1550-1616).
A maiden died and revived for love.
https://wn.com/Ancient_Chinese_Kunqu_Opera_The_Dream_In_Visiting_The_Garden
A ancient works of a form of ancient Chinese art.
Composed around 1600 AD by poet,Tang,Xianzu (1550-1616).
A maiden died and revived for love.
published: 12 Jan 2012
views: 250859
2:38
【古琴GuqinX昆曲Kunqu】高燃應戰【原神】《神女劈觀》國家隊真·武旦再劈一刀!GENSHIN IMPACT "The Divine Damsel of Devastation"
最近群玉閣上《神女劈觀》的故事演的火熱,從二次元到三次元,竟逐漸演繹成了各劇種八仙過海各顯神通的名場面。粵劇改編後,詞更貼曲,唱來尤顯韻味。昆曲是百戲之祖,綿延存續已六百年,中途歷經魏良輔改良,花雅之爭,曾經唱過村社俚曲,曾經登過大雅之堂。不幸衰落,復又興起,幽蘭雅韻,芬芳獨具。既然百戲盡出,昆腔自不能落後,昆曲是詞曲...
最近群玉閣上《神女劈觀》的故事演的火熱,從二次元到三次元,竟逐漸演繹成了各劇種八仙過海各顯神通的名場面。粵劇改編後,詞更貼曲,唱來尤顯韻味。昆曲是百戲之祖,綿延存續已六百年,中途歷經魏良輔改良,花雅之爭,曾經唱過村社俚曲,曾經登過大雅之堂。不幸衰落,復又興起,幽蘭雅韻,芬芳獨具。既然百戲盡出,昆腔自不能落後,昆曲是詞曲舞三位一體,原曲尤佳,只惜昆腔難謳原詞,故新翻韻腳,重填新詞以諧律。詞曲已備,舞亦不可缺,有幸邀上海昆劇團青年武旦演員錢瑜婷出演,用《扈家莊》劇中扈三娘的服飾盔帽,借武旦刀重演劈觀故事。武旦亦稱刀馬旦,昆劇行當家門中本無此家,後衍出,專司翻騰打鬥、武藝高強的女性角色。武旦的功夫,可見於耍翎舞刃,英姿颯爽,較溫婉的閨門旦大有不同。
原曲:原神《神女劈觀·喚情》
原唱:楊揚
昆劇演唱/身段:錢瑜婷
古琴:白無瑕
改編填詞:方圳海
化妝:林月媛 盔帽:包驍
錄音/混音/拍攝/後期:唐彬
出品:自得琴社
特別鳴謝:上海昆劇團
《神女劈觀》昆腔重填詞版:
唱:可嘆
秋鴻塞雁恨孤鳶
幾番離恨並仇怨
哀眾生,獻邪祭-招-禍罹難
麗影遽現,仗劍,掃盡——狼煙
紅塵一夢仙緣渺
來世絳府玉名標
紅絲難縛爛柯樵
雲鶴沖天霄
旋鳴百轉意難消
魂幡飄飄天際遙
振羽臨風長嗥
聲悄
(白)往事新曲,唱與諸位聽!
唱:白雪陽春知音識
琴簫翻作訴衷詞
紅纓亂點流星矢
劃盡蒼穹作青史
(白)昔日鶴歸身無匹,今日高朋會滿堂
#自得琴社 #Zideguqinstudio #Guqin #Kunqu #ChineseOpera
https://wn.com/【古琴Guqinx昆曲Kunqu】高燃應戰【原神】《神女劈觀》國家隊真·武旦再劈一刀!Genshin_Impact_The_Divine_Damsel_Of_Devastation
最近群玉閣上《神女劈觀》的故事演的火熱,從二次元到三次元,竟逐漸演繹成了各劇種八仙過海各顯神通的名場面。粵劇改編後,詞更貼曲,唱來尤顯韻味。昆曲是百戲之祖,綿延存續已六百年,中途歷經魏良輔改良,花雅之爭,曾經唱過村社俚曲,曾經登過大雅之堂。不幸衰落,復又興起,幽蘭雅韻,芬芳獨具。既然百戲盡出,昆腔自不能落後,昆曲是詞曲舞三位一體,原曲尤佳,只惜昆腔難謳原詞,故新翻韻腳,重填新詞以諧律。詞曲已備,舞亦不可缺,有幸邀上海昆劇團青年武旦演員錢瑜婷出演,用《扈家莊》劇中扈三娘的服飾盔帽,借武旦刀重演劈觀故事。武旦亦稱刀馬旦,昆劇行當家門中本無此家,後衍出,專司翻騰打鬥、武藝高強的女性角色。武旦的功夫,可見於耍翎舞刃,英姿颯爽,較溫婉的閨門旦大有不同。
原曲:原神《神女劈觀·喚情》
原唱:楊揚
昆劇演唱/身段:錢瑜婷
古琴:白無瑕
改編填詞:方圳海
化妝:林月媛 盔帽:包驍
錄音/混音/拍攝/後期:唐彬
出品:自得琴社
特別鳴謝:上海昆劇團
《神女劈觀》昆腔重填詞版:
唱:可嘆
秋鴻塞雁恨孤鳶
幾番離恨並仇怨
哀眾生,獻邪祭-招-禍罹難
麗影遽現,仗劍,掃盡——狼煙
紅塵一夢仙緣渺
來世絳府玉名標
紅絲難縛爛柯樵
雲鶴沖天霄
旋鳴百轉意難消
魂幡飄飄天際遙
振羽臨風長嗥
聲悄
(白)往事新曲,唱與諸位聽!
唱:白雪陽春知音識
琴簫翻作訴衷詞
紅纓亂點流星矢
劃盡蒼穹作青史
(白)昔日鶴歸身無匹,今日高朋會滿堂
#自得琴社 #Zideguqinstudio #Guqin #Kunqu #ChineseOpera
published: 25 Jan 2022
views: 673504
3:31
Beauty of Kunqu Opera
Her elegance, grace and poise spanned six centuries, but she was once almost lost to the annals of time. She is Kunqu, and she is "the mother of all operas."
Her elegance, grace and poise spanned six centuries, but she was once almost lost to the annals of time. She is Kunqu, and she is "the mother of all operas."
https://wn.com/Beauty_Of_Kunqu_Opera
Her elegance, grace and poise spanned six centuries, but she was once almost lost to the annals of time. She is Kunqu, and she is "the mother of all operas."
published: 01 Jan 2020
views: 6641
2:39
Enjoying the classic Peking Opera 'Drunken Concubine' at Mid Autumn Festival
The Mid-Autumn Festival falls on October 1 this year, marking one of the most important and poetic Chinese festivals. People across the country reunite with fam...
The Mid-Autumn Festival falls on October 1 this year, marking one of the most important and poetic Chinese festivals. People across the country reunite with family and friends, and enjoy the charm of moon together.
Some people will choose to watch Peking Opera during the festivities, classic opera "Drunken Concubine" is one of the most widely circulated ones. It is also a must-see Chinese opera for die-hard opera fans around the world.
For more:
https://www.cgtn.com/video
Subscribe to us on YouTube: https://goo.gl/lP12gA
Download our APP on Apple Store (iOS): https://itunes.apple.com/us/app/cctvnews-app/id922456579?l=zh&ls=1&mt=8
Download our APP on Google Play (Android): https://play.google.com/store/apps/details?id=com.imib.cctv
https://wn.com/Enjoying_The_Classic_Peking_Opera_'Drunken_Concubine'_At_Mid_Autumn_Festival
The Mid-Autumn Festival falls on October 1 this year, marking one of the most important and poetic Chinese festivals. People across the country reunite with family and friends, and enjoy the charm of moon together.
Some people will choose to watch Peking Opera during the festivities, classic opera "Drunken Concubine" is one of the most widely circulated ones. It is also a must-see Chinese opera for die-hard opera fans around the world.
For more:
https://www.cgtn.com/video
Subscribe to us on YouTube: https://goo.gl/lP12gA
Download our APP on Apple Store (iOS): https://itunes.apple.com/us/app/cctvnews-app/id922456579?l=zh&ls=1&mt=8
Download our APP on Google Play (Android): https://play.google.com/store/apps/details?id=com.imib.cctv
published: 02 Oct 2020
views: 1310841
4:35
【古琴Guqin&昆曲Kunqu Opera】《一拜天地》Worship heaven and earth marriage
原曲: 一拜天地
作曲:黄师傅HBY
作词:火火
原唱:不是Av的Ay君/畅畅酱
古琴移植/演奏:白无瑕【微博@玉涧清泉】
昆曲:钱瑜婷【微博@钱瑜婷sunshine】
摄影/录音/混音/后期:唐彬@超级唐葫芦
出品:自得琴社 【微信公众平台Zideqinshe】 【微博http://weibo.com/zide...
原曲: 一拜天地
作曲:黄师傅HBY
作词:火火
原唱:不是Av的Ay君/畅畅酱
古琴移植/演奏:白无瑕【微博@玉涧清泉】
昆曲:钱瑜婷【微博@钱瑜婷sunshine】
摄影/录音/混音/后期:唐彬@超级唐葫芦
出品:自得琴社 【微信公众平台Zideqinshe】 【微博http://weibo.com/zideqinshe】
https://wn.com/【古琴Guqin_昆曲Kunqu_Opera】《一拜天地》Worship_Heaven_And_Earth_Marriage
原曲: 一拜天地
作曲:黄师傅HBY
作词:火火
原唱:不是Av的Ay君/畅畅酱
古琴移植/演奏:白无瑕【微博@玉涧清泉】
昆曲:钱瑜婷【微博@钱瑜婷sunshine】
摄影/录音/混音/后期:唐彬@超级唐葫芦
出品:自得琴社 【微信公众平台Zideqinshe】 【微博http://weibo.com/zideqinshe】
published: 01 Jul 2018
views: 172932
5:34
Chinese Kunqu Opera - The Peony Pavilion - Portraying 昆曲《牡丹亭 . 写真》朱璎媛演唱 中国音乐地图 听见江苏 瑞鸣音乐 Rhymoi
#ChineseFolkMusic#ChineseFolkSongs#ChineseTraditionalMusic#MusicalMapofChina
#中国传统音乐 #中国民间音乐 #中国民歌#中国古典音乐#中国音乐地图
戏曲 昆曲 民族:汉族 地区:江苏
Traditional Chinese Ope...
#ChineseFolkMusic#ChineseFolkSongs#ChineseTraditionalMusic#MusicalMapofChina
#中国传统音乐 #中国民间音乐 #中国民歌#中国古典音乐#中国音乐地图
戏曲 昆曲 民族:汉族 地区:江苏
Traditional Chinese Opera Kunqu Opera Ethnicity: The Han Ethnic Group in China Region: Jiangsu Province, China
演唱:朱璎媛
司鼓:辛仕林
司笛:邹钟潮
二胡:姚慎行、赵建安
中胡:杨磊
琵琶:朱磊磊
扬琴:韦秀子
笙:周明军
小锣:程相龙
Vocal: Yingyuan Zhu
Drum: Shilin Xin
Bamboo Flute: Zhongchao Zou
Erhu: Shenxing Yao, Jian’an Zhao
Zhonghu: Lei Yang
Pipa: Leilei Zhu
Dulcimer: Xiuzi Wei
Sheng: Mingjun Zhou
Small Gong: Xianglong Cheng
欢迎订阅:中国音乐地图 瑞鸣音乐频道
Subscribe to the Musical Map of China channel
https://www.youtube.com/channel/UCN19...
Web:www.rhymoi.com Email:
[email protected]
© Rhymoi Music.All Rights Reserved.
MUSICAL MAP OF CHINA
Retrieve National Memories through Music;
Trace the Origin of Life from the Mother Tongue.
Retrieve National Memories through Music; Trace the Origin of Life from the Mother Tongue. More than 40 ethnic groups in China, 680 folk musicians, 230 folk instruments, 1300 folk music songs, 20,000 pictures, and 1 million Chinese and English words, build the framework of the "Musical Map of China" and draw the blueprint of folk music. Please subscribe this channel, and start the exploration of Chinese folk music with the Rhymoi Music producer, Yunchuan Ye.
”用音乐找回民族的记忆,从母语中寻找生命的缘起“
40余个民族,680位民间音乐人,230种民间乐器,1300首民间音乐,2万张图片,100万中英文文字,搭建起“中国音乐地图”框架,绘就多民族传统音乐蓝图。
欢迎订阅频道,跟随“瑞鸣音乐”制作人叶云川,开启中国民族音乐探索之旅。
https://wn.com/Chinese_Kunqu_Opera_The_Peony_Pavilion_Portraying_昆曲《牡丹亭_._写真》朱璎媛演唱_中国音乐地图_听见江苏_瑞鸣音乐_Rhymoi
#ChineseFolkMusic#ChineseFolkSongs#ChineseTraditionalMusic#MusicalMapofChina
#中国传统音乐 #中国民间音乐 #中国民歌#中国古典音乐#中国音乐地图
戏曲 昆曲 民族:汉族 地区:江苏
Traditional Chinese Opera Kunqu Opera Ethnicity: The Han Ethnic Group in China Region: Jiangsu Province, China
演唱:朱璎媛
司鼓:辛仕林
司笛:邹钟潮
二胡:姚慎行、赵建安
中胡:杨磊
琵琶:朱磊磊
扬琴:韦秀子
笙:周明军
小锣:程相龙
Vocal: Yingyuan Zhu
Drum: Shilin Xin
Bamboo Flute: Zhongchao Zou
Erhu: Shenxing Yao, Jian’an Zhao
Zhonghu: Lei Yang
Pipa: Leilei Zhu
Dulcimer: Xiuzi Wei
Sheng: Mingjun Zhou
Small Gong: Xianglong Cheng
欢迎订阅:中国音乐地图 瑞鸣音乐频道
Subscribe to the Musical Map of China channel
https://www.youtube.com/channel/UCN19...
Web:www.rhymoi.com Email:
[email protected]
© Rhymoi Music.All Rights Reserved.
MUSICAL MAP OF CHINA
Retrieve National Memories through Music;
Trace the Origin of Life from the Mother Tongue.
Retrieve National Memories through Music; Trace the Origin of Life from the Mother Tongue. More than 40 ethnic groups in China, 680 folk musicians, 230 folk instruments, 1300 folk music songs, 20,000 pictures, and 1 million Chinese and English words, build the framework of the "Musical Map of China" and draw the blueprint of folk music. Please subscribe this channel, and start the exploration of Chinese folk music with the Rhymoi Music producer, Yunchuan Ye.
”用音乐找回民族的记忆,从母语中寻找生命的缘起“
40余个民族,680位民间音乐人,230种民间乐器,1300首民间音乐,2万张图片,100万中英文文字,搭建起“中国音乐地图”框架,绘就多民族传统音乐蓝图。
欢迎订阅频道,跟随“瑞鸣音乐”制作人叶云川,开启中国民族音乐探索之旅。
published: 12 Nov 2021
views: 1534
2:30
【古琴Guqin x昆曲Kunqu】《牡丹亭·驚夢》表白名段|看古人如何優雅地戀愛
昆曲,百戲之祖,優美的歌舞傳承百年風華。古琴,「四藝」之首,清雅的樂聲浸潤著千年文化;古琴與昆曲的融合,是傳統文化兩大瑰寶齊放異彩,也是兩項聯合國教科文組織「人類口述和非物質文化遺產代表作」的雙輝合璧。這一支古琴伴奏的《牡丹亭·驚夢·山桃紅》,是明代湯顯祖撰寫的昆曲《牡丹亭》裏的經典唱段。女主杜麗娘春遊小憩,夢中見到了...
昆曲,百戲之祖,優美的歌舞傳承百年風華。古琴,「四藝」之首,清雅的樂聲浸潤著千年文化;古琴與昆曲的融合,是傳統文化兩大瑰寶齊放異彩,也是兩項聯合國教科文組織「人類口述和非物質文化遺產代表作」的雙輝合璧。這一支古琴伴奏的《牡丹亭·驚夢·山桃紅》,是明代湯顯祖撰寫的昆曲《牡丹亭》裏的經典唱段。女主杜麗娘春遊小憩,夢中見到了一位風度翩翩的書生柳夢梅,綠竹猗猗,他款款走來,吟唱著一支《山桃紅》向心愛的姑娘表達愛意。絲桐清音襯托著水磨清謳,如風過竹林,似石上鳴泉,可以領略到古琴與昆曲兩大非遺藝術的魅力。
作詞:湯顯祖
昆曲/錄音:施夏明 古琴/錄音/混音:唐彬
妝造:王海恵、周姣姣
攝影:豐收 剪輯/後期:林澤欽 視頻包裝/平面設計:魏薇
出品:自得琴社x人民日報
#自得琴社 #昆曲 #非物質文化遺產 #古琴 #中國樂器 #東方音樂 #中國傳統樂器
https://wn.com/【古琴Guqin_X昆曲Kunqu】《牡丹亭·驚夢》表白名段|看古人如何優雅地戀愛
昆曲,百戲之祖,優美的歌舞傳承百年風華。古琴,「四藝」之首,清雅的樂聲浸潤著千年文化;古琴與昆曲的融合,是傳統文化兩大瑰寶齊放異彩,也是兩項聯合國教科文組織「人類口述和非物質文化遺產代表作」的雙輝合璧。這一支古琴伴奏的《牡丹亭·驚夢·山桃紅》,是明代湯顯祖撰寫的昆曲《牡丹亭》裏的經典唱段。女主杜麗娘春遊小憩,夢中見到了一位風度翩翩的書生柳夢梅,綠竹猗猗,他款款走來,吟唱著一支《山桃紅》向心愛的姑娘表達愛意。絲桐清音襯托著水磨清謳,如風過竹林,似石上鳴泉,可以領略到古琴與昆曲兩大非遺藝術的魅力。
作詞:湯顯祖
昆曲/錄音:施夏明 古琴/錄音/混音:唐彬
妝造:王海恵、周姣姣
攝影:豐收 剪輯/後期:林澤欽 視頻包裝/平面設計:魏薇
出品:自得琴社x人民日報
#自得琴社 #昆曲 #非物質文化遺產 #古琴 #中國樂器 #東方音樂 #中國傳統樂器
published: 11 Jun 2022
views: 41550
2:16
Kunqu Opera, one of Chinese traditional operas
Kunqu Opera, one of Chinese traditional operas, originated in Kunshan of Jiangsu Province as the ancestor of the hundred plays in China. In 2001, it was listed ...
Kunqu Opera, one of Chinese traditional operas, originated in Kunshan of Jiangsu Province as the ancestor of the hundred plays in China. In 2001, it was listed as UNESCO Intangible Cultural Heritage. Click to enjoy Kunqu Opera Peony Pavilion (Mudan Ting) performed by Kunqu performers at Sinopec Jiangsu Oil Products Marketing Company.
https://wn.com/Kunqu_Opera,_One_Of_Chinese_Traditional_Operas
Kunqu Opera, one of Chinese traditional operas, originated in Kunshan of Jiangsu Province as the ancestor of the hundred plays in China. In 2001, it was listed as UNESCO Intangible Cultural Heritage. Click to enjoy Kunqu Opera Peony Pavilion (Mudan Ting) performed by Kunqu performers at Sinopec Jiangsu Oil Products Marketing Company.
published: 15 Sep 2022
views: 6601
3:58
【古琴GuqinX昆曲Kunqu Opera】《牡丹亭·皂罗袍》The Peony Pavilion ——Tang Xianzu, known as Oriental Shakespeare
作曲:曲牌
作词: [明]汤显祖
演唱:钱瑜婷【微博@钱瑜婷sunshine】
古琴演奏:白无瑕【微博@古琴白无瑕】
古琴移植:唐彬 【微博@超级唐葫芦】
摄影/录音/混音/后期...
Play in Full Screen
【古琴GuqinX昆曲Kunqu Opera】《牡丹亭·皂罗袍》The Peony Pavilion ——Tang Xianzu, known as Oriental Shakespeare
【古琴GuqinX昆曲Kunqu Opera】《牡丹亭·皂罗袍》The Peony Pavilion ——Tang Xianzu, known as Oriental Shakespeare
作曲:曲牌
作词: [明]汤显祖
演唱:钱瑜婷【微博@钱瑜婷sunshine】
古琴演奏:白无瑕【微博@古琴白无瑕】
古琴移植:唐彬 【微博@超级唐葫芦】
摄影/录音/混音/后期:唐彬
出品:自得琴社 【微信公众平台Zideqinshe】 【微博@自得琴社&@古琴诊所】
5:12
Ancient Chinese Kunqu-Opera --- "The Dream in Visiting the Garden"
A ancient works of a form of ancient Chinese art.
Composed around 1600 AD by poet,Tang,X...
Play in Full Screen
Ancient Chinese Kunqu-Opera --- "The Dream in Visiting the Garden"
Ancient Chinese Kunqu-Opera --- "The Dream in Visiting the Garden"
A ancient works of a form of ancient Chinese art.
Composed around 1600 AD by poet,Tang,Xianzu (1550-1616).
A maiden died and revived for love.
2:38
【古琴GuqinX昆曲Kunqu】高燃應戰【原神】《神女劈觀》國家隊真·武旦再劈一刀!GENSHIN IMPACT "The Divine Damsel of Devastation"
最近群玉閣上《神女劈觀》的故事演的火熱,從二次元到三次元,竟逐漸演繹成了各劇種八仙過海各顯神通的名場面。粵劇改編後,詞更貼曲,唱來尤顯韻味。昆曲是百戲之祖,綿延存續已六百年,中途歷...
Play in Full Screen
【古琴GuqinX昆曲Kunqu】高燃應戰【原神】《神女劈觀》國家隊真·武旦再劈一刀!GENSHIN IMPACT "The Divine Damsel of Devastation"
【古琴GuqinX昆曲Kunqu】高燃應戰【原神】《神女劈觀》國家隊真·武旦再劈一刀!GENSHIN IMPACT "The Divine Damsel of Devastation"
最近群玉閣上《神女劈觀》的故事演的火熱,從二次元到三次元,竟逐漸演繹成了各劇種八仙過海各顯神通的名場面。粵劇改編後,詞更貼曲,唱來尤顯韻味。昆曲是百戲之祖,綿延存續已六百年,中途歷經魏良輔改良,花雅之爭,曾經唱過村社俚曲,曾經登過大雅之堂。不幸衰落,復又興起,幽蘭雅韻,芬芳獨具。既然百戲盡出,昆腔自不能落後,昆曲是詞曲舞三位一體,原曲尤佳,只惜昆腔難謳原詞,故新翻韻腳,重填新詞以諧律。詞曲已備,舞亦不可缺,有幸邀上海昆劇團青年武旦演員錢瑜婷出演,用《扈家莊》劇中扈三娘的服飾盔帽,借武旦刀重演劈觀故事。武旦亦稱刀馬旦,昆劇行當家門中本無此家,後衍出,專司翻騰打鬥、武藝高強的女性角色。武旦的功夫,可見於耍翎舞刃,英姿颯爽,較溫婉的閨門旦大有不同。
原曲:原神《神女劈觀·喚情》
原唱:楊揚
昆劇演唱/身段:錢瑜婷
古琴:白無瑕
改編填詞:方圳海
化妝:林月媛 盔帽:包驍
錄音/混音/拍攝/後期:唐彬
出品:自得琴社
特別鳴謝:上海昆劇團
《神女劈觀》昆腔重填詞版:
唱:可嘆
秋鴻塞雁恨孤鳶
幾番離恨並仇怨
哀眾生,獻邪祭-招-禍罹難
麗影遽現,仗劍,掃盡——狼煙
紅塵一夢仙緣渺
來世絳府玉名標
紅絲難縛爛柯樵
雲鶴沖天霄
旋鳴百轉意難消
魂幡飄飄天際遙
振羽臨風長嗥
聲悄
(白)往事新曲,唱與諸位聽!
唱:白雪陽春知音識
琴簫翻作訴衷詞
紅纓亂點流星矢
劃盡蒼穹作青史
(白)昔日鶴歸身無匹,今日高朋會滿堂
#自得琴社 #Zideguqinstudio #Guqin #Kunqu #ChineseOpera
3:31
Beauty of Kunqu Opera
Her elegance, grace and poise spanned six centuries, but she was once almost lost to the a...
Play in Full Screen
Beauty of Kunqu Opera
Beauty of Kunqu Opera
Her elegance, grace and poise spanned six centuries, but she was once almost lost to the annals of time. She is Kunqu, and she is "the mother of all operas."
2:39
Enjoying the classic Peking Opera 'Drunken Concubine' at Mid Autumn Festival
The Mid-Autumn Festival falls on October 1 this year, marking one of the most important an...
Play in Full Screen
Enjoying the classic Peking Opera 'Drunken Concubine' at Mid Autumn Festival
Enjoying the classic Peking Opera 'Drunken Concubine' at Mid Autumn Festival
The Mid-Autumn Festival falls on October 1 this year, marking one of the most important and poetic Chinese festivals. People across the country reunite with family and friends, and enjoy the charm of moon together.
Some people will choose to watch Peking Opera during the festivities, classic opera "Drunken Concubine" is one of the most widely circulated ones. It is also a must-see Chinese opera for die-hard opera fans around the world.
For more:
https://www.cgtn.com/video
Subscribe to us on YouTube: https://goo.gl/lP12gA
Download our APP on Apple Store (iOS): https://itunes.apple.com/us/app/cctvnews-app/id922456579?l=zh&ls=1&mt=8
Download our APP on Google Play (Android): https://play.google.com/store/apps/details?id=com.imib.cctv
4:35
【古琴Guqin&昆曲Kunqu Opera】《一拜天地》Worship heaven and earth marriage
原曲: 一拜天地
作曲:黄师傅HBY
作词:火火
原唱:不是Av的Ay君/畅畅酱
古琴移植/演奏:白无瑕【微博@玉涧清泉】
昆曲:钱瑜婷【微博@钱瑜婷sunshine】
摄影/录...
Play in Full Screen
【古琴Guqin&昆曲Kunqu Opera】《一拜天地》Worship heaven and earth marriage
【古琴Guqin&昆曲Kunqu Opera】《一拜天地》Worship heaven and earth marriage
原曲: 一拜天地
作曲:黄师傅HBY
作词:火火
原唱:不是Av的Ay君/畅畅酱
古琴移植/演奏:白无瑕【微博@玉涧清泉】
昆曲:钱瑜婷【微博@钱瑜婷sunshine】
摄影/录音/混音/后期:唐彬@超级唐葫芦
出品:自得琴社 【微信公众平台Zideqinshe】 【微博http://weibo.com/zideqinshe】
5:34
Chinese Kunqu Opera - The Peony Pavilion - Portraying 昆曲《牡丹亭 . 写真》朱璎媛演唱 中国音乐地图 听见江苏 瑞鸣音乐 Rhymoi
#ChineseFolkMusic#ChineseFolkSongs#ChineseTraditionalMusic#MusicalMapofChina
#中国传统音乐 #中国民...
Play in Full Screen
Chinese Kunqu Opera - The Peony Pavilion - Portraying 昆曲《牡丹亭 . 写真》朱璎媛演唱 中国音乐地图 听见江苏 瑞鸣音乐 Rhymoi
Chinese Kunqu Opera - The Peony Pavilion - Portraying 昆曲《牡丹亭 . 写真》朱璎媛演唱 中国音乐地图 听见江苏 瑞鸣音乐 Rhymoi
#ChineseFolkMusic#ChineseFolkSongs#ChineseTraditionalMusic#MusicalMapofChina
#中国传统音乐 #中国民间音乐 #中国民歌#中国古典音乐#中国音乐地图
戏曲 昆曲 民族:汉族 地区:江苏
Traditional Chinese Opera Kunqu Opera Ethnicity: The Han Ethnic Group in China Region: Jiangsu Province, China
演唱:朱璎媛
司鼓:辛仕林
司笛:邹钟潮
二胡:姚慎行、赵建安
中胡:杨磊
琵琶:朱磊磊
扬琴:韦秀子
笙:周明军
小锣:程相龙
Vocal: Yingyuan Zhu
Drum: Shilin Xin
Bamboo Flute: Zhongchao Zou
Erhu: Shenxing Yao, Jian’an Zhao
Zhonghu: Lei Yang
Pipa: Leilei Zhu
Dulcimer: Xiuzi Wei
Sheng: Mingjun Zhou
Small Gong: Xianglong Cheng
欢迎订阅:中国音乐地图 瑞鸣音乐频道
Subscribe to the Musical Map of China channel
https://www.youtube.com/channel/UCN19...
Web:www.rhymoi.com Email:
[email protected]
© Rhymoi Music.All Rights Reserved.
MUSICAL MAP OF CHINA
Retrieve National Memories through Music;
Trace the Origin of Life from the Mother Tongue.
Retrieve National Memories through Music; Trace the Origin of Life from the Mother Tongue. More than 40 ethnic groups in China, 680 folk musicians, 230 folk instruments, 1300 folk music songs, 20,000 pictures, and 1 million Chinese and English words, build the framework of the "Musical Map of China" and draw the blueprint of folk music. Please subscribe this channel, and start the exploration of Chinese folk music with the Rhymoi Music producer, Yunchuan Ye.
”用音乐找回民族的记忆,从母语中寻找生命的缘起“
40余个民族,680位民间音乐人,230种民间乐器,1300首民间音乐,2万张图片,100万中英文文字,搭建起“中国音乐地图”框架,绘就多民族传统音乐蓝图。
欢迎订阅频道,跟随“瑞鸣音乐”制作人叶云川,开启中国民族音乐探索之旅。
2:30
【古琴Guqin x昆曲Kunqu】《牡丹亭·驚夢》表白名段|看古人如何優雅地戀愛
昆曲,百戲之祖,優美的歌舞傳承百年風華。古琴,「四藝」之首,清雅的樂聲浸潤著千年文化;古琴與昆曲的融合,是傳統文化兩大瑰寶齊放異彩,也是兩項聯合國教科文組織「人類口述和非物質文化遺...
Play in Full Screen
【古琴Guqin x昆曲Kunqu】《牡丹亭·驚夢》表白名段|看古人如何優雅地戀愛
【古琴Guqin x昆曲Kunqu】《牡丹亭·驚夢》表白名段|看古人如何優雅地戀愛
昆曲,百戲之祖,優美的歌舞傳承百年風華。古琴,「四藝」之首,清雅的樂聲浸潤著千年文化;古琴與昆曲的融合,是傳統文化兩大瑰寶齊放異彩,也是兩項聯合國教科文組織「人類口述和非物質文化遺產代表作」的雙輝合璧。這一支古琴伴奏的《牡丹亭·驚夢·山桃紅》,是明代湯顯祖撰寫的昆曲《牡丹亭》裏的經典唱段。女主杜麗娘春遊小憩,夢中見到了一位風度翩翩的書生柳夢梅,綠竹猗猗,他款款走來,吟唱著一支《山桃紅》向心愛的姑娘表達愛意。絲桐清音襯托著水磨清謳,如風過竹林,似石上鳴泉,可以領略到古琴與昆曲兩大非遺藝術的魅力。
作詞:湯顯祖
昆曲/錄音:施夏明 古琴/錄音/混音:唐彬
妝造:王海恵、周姣姣
攝影:豐收 剪輯/後期:林澤欽 視頻包裝/平面設計:魏薇
出品:自得琴社x人民日報
#自得琴社 #昆曲 #非物質文化遺產 #古琴 #中國樂器 #東方音樂 #中國傳統樂器
2:16
Kunqu Opera, one of Chinese traditional operas
Kunqu Opera, one of Chinese traditional operas, originated in Kunshan of Jiangsu Province ...
Play in Full Screen
Kunqu Opera, one of Chinese traditional operas
Kunqu Opera, one of Chinese traditional operas
Kunqu Opera, one of Chinese traditional operas, originated in Kunshan of Jiangsu Province as the ancestor of the hundred plays in China. In 2001, it was listed as UNESCO Intangible Cultural Heritage. Click to enjoy Kunqu Opera Peony Pavilion (Mudan Ting) performed by Kunqu performers at Sinopec Jiangsu Oil Products Marketing Company.
');
} 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));
}
});
});
});
// -->
Latest News for: kunqu opera
Edit
People Daily
12 Nov 2024
... Dunedin respectively from Saturday to Monday, showcased a variety of Chinese artistry, including acrobatics, magic shows, Beijing Opera and Kunqu Opera, songs and dances, and folk music performance.
Edit
Beijing News
06 Nov 2024
6 (Xinhua ) -- The ongoing 7th CIIE held diverse cultural activities to promote people-to-people exchange.© Provided by Xinhua Artists perform Kunqu Opera at the central square of the National ...