'+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;
}));
});
-->
Please tell us which country and city you'd like to see the weather in.
'
}else{
weather_info += '
'+tempC+' °C
'
}
weather_info += '
Pressure: '+weather_data.main.pressure+' hPa '
if (weather_data.main.humidity) { weather_info += 'Humidity: '+weather_data.main.humidity+' % '; }
if (clouds) {
weather_info += 'Clounds: '+clouds.all+'% '
}
if (weather) {
weather_info += ''+weather.description+' '
}
weather_info += ' '
}
}
global_geo_obj.html(weather_info);
var global_geo = jQuery('#forecast');
get_forecast_details(city, 4, global_geo, country);
})
});
});
function forecast_status(msg) {
jQuery('#forecast-header').html(msg);
}
function get_forecast_details(city, days_count, global_geo, country) {
global_geo.html('Loading forecast ...');
jQuery.ajax({
data: {
city: city,
report: 'daily'
},
dataType: 'jsonp',
url: 'https://upge.wn.com/api/upge/cheetah-photo-search/weather_forecast_4days',
success: function(data) {
if(!data) { text = ('weater data temporarily not available'); }
// loop through the list of weather info
weather_info = '';
var weather_day_loop = 0;
jQuery.each(data.list, function(idx, value) {
if (idx < 1) {
return;
}
if (weather_day_loop >= days_count) {
return false;
}
weather = value.weather.shift()
clouds = value.clouds
d = new Date(value.dt*1000)
t = d.getMonth()+1 + '-' + d.getDate() + '-' + d.getFullYear()
moment.lang('en', {
calendar : {
lastDay : '[Yesterday]',
sameDay : '[Today]',
nextDay : '[Tomorrow]',
lastWeek : '[last] dddd',
nextWeek : 'dddd',
sameElse : 'L'
}
});
mobj = moment(value.dt*1000)
// skip today
if (t == today) {
return;
}
tempC = parseInt(parseFloat(value.temp.day)-273.15)
tempF = parseInt(tempC*1.8+32)
today = t;
weather_day_loop += 1;
weather_info += '
'+mobj.calendar()+'
';
weather_info += '
'
weather_info += '
'
if (country == 'United States'){
weather_info += '
'+tempF+' °F
'
}else{
weather_info += '
'+tempC+' °C
'
}
weather_info += '
'+value.pressure+' hPa '
if (value.humidity) { weather_info += 'Humidity: '+value.humidity+' % '; }
if (clouds) {
weather_info += 'Clouds: '+clouds+'% '
}
if (weather) {
weather_info += '' +weather.description+' '
}
weather_info += ''
});
global_geo.html(weather_info);
}
});
}
//-->
Sulu and Excelsior "AntiMatter" Official Music Video
Slow Jam King Productions presents the official music video for "AntiMatter", from Sulu and Excelsior's new album, "The AntiMatter Suite." Available for streaming and download on all digital platforms. Also available in physical formats at: https://suluandexcelsior.com/album/the-antimatter-suite
Directed and edited by Steven E. Mallorca aka Sulu, and photgraphed by Jean Baptiste Sankara.
Written, Produced and Mixed by Steven E. Mallorca aka Sulu
All instruments and vocals performed by Sulu with scratches by DJ Mas
Mastering Engineer: Steve Berson at Total Sonic Media
Album artwork: John Wong at Kinsego
©2019 Slow Jam King Productions LLC
Lyrics:
Your man couldn’t look at my face
He feels that a man like me
couldn’t stay in my place
I see why he’s acting like this,
Why’d he say what he...
published: 26 Nov 2019
Braided Bread Remix Extended Cut (UNRELEASED)
published: 09 Sep 2016
Total Touch - Somebody Else's Lover
Music video by Total Touch performing Somebody Else's Lover. (C) 1998
published: 03 Oct 2009
Emanuele Congeddu - Rapa Nui Bay (Original Mix) [HD]
OUT NOW!! at Beatport Buy Link, in the description of video! :)
Release Details: Emanuele Congeddu born in 1995 is a young upliftingtrance producer from Sardinia (Italy).He heard Trance music for the first time at the end of 2011 on youtube and fell in love with it instantly.After a few months he discovered that Uplifting Melodic Trance is his real love.Starting to mess around with FLStudio 10 at the beginning of 2012 quickly showed the talent this young artist has. His music is an experiment, a fusion with the classical Uplifting Melodic Trance with his sweet melodies and the pure energy, that he called "Energetic Emotional Trance". His tracks, like "Letter To Anya" on AEZ Recordings, are currently supported by important names of the trance scene like Aly & Fila on FSOE - Pedro del Mar on...
published: 21 Oct 2013
3:33
Sulu and Excelsior "AntiMatter" Official Music Video
Slow Jam King Productions presents the official music video for "AntiMatter", from Sulu and Excelsior's new album, "The AntiMatter Suite." Available for streami...
Slow Jam King Productions presents the official music video for "AntiMatter", from Sulu and Excelsior's new album, "The AntiMatter Suite." Available for streaming and download on all digital platforms. Also available in physical formats at: https://suluandexcelsior.com/album/the-antimatter-suite
Directed and edited by Steven E. Mallorca aka Sulu, and photgraphed by Jean Baptiste Sankara.
Written, Produced and Mixed by Steven E. Mallorca aka Sulu
All instruments and vocals performed by Sulu with scratches by DJ Mas
Mastering Engineer: Steve Berson at Total Sonic Media
Album artwork: John Wong at Kinsego
©2019 Slow Jam King Productions LLC
Lyrics:
Your man couldn’t look at my face
He feels that a man like me
couldn’t stay in my place
I see why he’s acting like this,
Why’d he say what he say?
He can’t deal
Cuz I’m seizing my time
So he gets in my way
And he feels
We don’t matter
Anti-matter to him
So fragile
glass gon’ shatter on him
Your man gonna smile at your face
He feels that a woman like you
Is gonna stay in your place
You don’t kneel.
You can make your own world
Do your thing you got faith
And you deal with a whole lot more
It ain’t shown in your pay.
And you feel
anti-matter
We should matter more
He’s so fragile
glass could shatter for years
Hey- I’m not being dramatic
They rigged the democratic
Voicing of the people
getting drowned and lost in all the static
Your man is autocratic
My dissent is automatic
My rhymes are all emphatic
Break the glass and call the medic
He’s in a greenhouse so we douse that lawn with gasoline
Not too long That glass’ll gleam
Right the wrongs Collapse the seams
Swing down, sweet back on that chariot
Gon ’ carry it like a picket sign
Don’t think it’s time?
But hell yeah we’re gonna bury it
What? the nature of the beast
I’d never hate you like you preach
And I can empathize and emphasize
That time has ceased
I’m anti matter to you
She’s anti matter to you
I’ll take that batter to your
Glass no match I’ll shatter through you..
We don’t matter
Anti-matter to him
So fragile
glass gon’ shatter for years to come.
https://wn.com/Sulu_And_Excelsior_Antimatter_Official_Music_Video
Slow Jam King Productions presents the official music video for "AntiMatter", from Sulu and Excelsior's new album, "The AntiMatter Suite." Available for streaming and download on all digital platforms. Also available in physical formats at: https://suluandexcelsior.com/album/the-antimatter-suite
Directed and edited by Steven E. Mallorca aka Sulu, and photgraphed by Jean Baptiste Sankara.
Written, Produced and Mixed by Steven E. Mallorca aka Sulu
All instruments and vocals performed by Sulu with scratches by DJ Mas
Mastering Engineer: Steve Berson at Total Sonic Media
Album artwork: John Wong at Kinsego
©2019 Slow Jam King Productions LLC
Lyrics:
Your man couldn’t look at my face
He feels that a man like me
couldn’t stay in my place
I see why he’s acting like this,
Why’d he say what he say?
He can’t deal
Cuz I’m seizing my time
So he gets in my way
And he feels
We don’t matter
Anti-matter to him
So fragile
glass gon’ shatter on him
Your man gonna smile at your face
He feels that a woman like you
Is gonna stay in your place
You don’t kneel.
You can make your own world
Do your thing you got faith
And you deal with a whole lot more
It ain’t shown in your pay.
And you feel
anti-matter
We should matter more
He’s so fragile
glass could shatter for years
Hey- I’m not being dramatic
They rigged the democratic
Voicing of the people
getting drowned and lost in all the static
Your man is autocratic
My dissent is automatic
My rhymes are all emphatic
Break the glass and call the medic
He’s in a greenhouse so we douse that lawn with gasoline
Not too long That glass’ll gleam
Right the wrongs Collapse the seams
Swing down, sweet back on that chariot
Gon ’ carry it like a picket sign
Don’t think it’s time?
But hell yeah we’re gonna bury it
What? the nature of the beast
I’d never hate you like you preach
And I can empathize and emphasize
That time has ceased
I’m anti matter to you
She’s anti matter to you
I’ll take that batter to your
Glass no match I’ll shatter through you..
We don’t matter
Anti-matter to him
So fragile
glass gon’ shatter for years to come.
published: 26 Nov 2019
views: 2427
3:57
Total Touch - Somebody Else's Lover
Music video by Total Touch performing Somebody Else's Lover. (C) 1998
Music video by Total Touch performing Somebody Else's Lover. (C) 1998
https://wn.com/Total_Touch_Somebody_Else's_Lover
Music video by Total Touch performing Somebody Else's Lover. (C) 1998
published: 03 Oct 2009
views: 6982590
5:36
Emanuele Congeddu - Rapa Nui Bay (Original Mix) [HD]
OUT NOW!! at Beatport Buy Link, in the description of video! :)
Release Details: Emanuele Congeddu born in 1995 is a young upliftingtrance producer from Sardini...
OUT NOW!! at Beatport Buy Link, in the description of video! :)
Release Details: Emanuele Congeddu born in 1995 is a young upliftingtrance producer from Sardinia (Italy).He heard Trance music for the first time at the end of 2011 on youtube and fell in love with it instantly.After a few months he discovered that Uplifting Melodic Trance is his real love.Starting to mess around with FLStudio 10 at the beginning of 2012 quickly showed the talent this young artist has. His music is an experiment, a fusion with the classical Uplifting Melodic Trance with his sweet melodies and the pure energy, that he called "Energetic Emotional Trance". His tracks, like "Letter To Anya" on AEZ Recordings, are currently supported by important names of the trance scene like Aly & Fila on FSOE - Pedro del Mar on Mellomania Deluxe - Roger Shah on Music for Balearic People and many others!! Rapa Nui Bay Another talented young gun hailing to outr label and showing his passion love and skills for melodic euphoric driven trance like these oriignal tracks here on this ep. He will catch you right from the start and wont let you go until the last sounds have ended and been muted. Melodic right from the beginning without stopping and no big breaks to keep the atmosphere high here on this lovely production.
Amitacek Remix Already no stranger to our label by delivering some catchy remixes and also own tracks on release later on our mainimprint he is now back to show you his latest remixproduction for the first track of this two tracker ep. Grabbing the signature melodic parts from the original and putting some more edge and strength to the whole production to deliver this filthy uplifting sound.
Souls Of Moai This is the second production here on this two tracker debut release by this young gun from italy. This one brings you a very interesting combination of driving pumping uplifting trancesounds and on the other side you will get some really catchy melancholic sounds where you have to sit back think about things in life. Remember his name we are sure that there will be much more to check out in the future from him.
Please Rate, Comment And Share it with your friends in Facebook & enjoy the ride.. d(^_^)b
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
You can buy it here:
Beatport: http://www.beatport.com/release/souls-of-moai-ep/1170952
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Picture link: http://wallpapersus.com/wallpapers/2012/11/Lake-HDR-800x1280.jpg
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Emanuele Congeddu's Facebook Fan Page:
https://www.facebook.com/EmanueleCongeddu?fref=ts
Emanuele Congeddu's Soundcloud:
https://soundcloud.com/emanuele-congeddu
Emanuele Congeddu's YT channel:
http://www.youtube.com/user/UPLTrance4Energy
D.MAX Recordings Website:
http://www.dmax-recordings.de/
D.MAX Recordings Facebook Fan Page:
http://www.facebook.com/D.MAXRecordings
D.MAX Recordings YT channel:
http://www.youtube.com/user/DMAXrecordings
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Release Date: [14/ October /2013]
Sello: D.Max Recordings
Artist: Emanuele Congeddu
Title: Rapa Nui Bay (Original Mix)
Album: Souls Of Moai EP
Catalogo: DMAX128
Release's Tracklist:
Emanuele Congeddu - Rapa Nui Bay (Original Mix) 7:20
Emanuele Congeddu - Rapa Nui Bay (Amitacek Remix) 8:03
Emanuele Congeddu - Souls Of Moai (Original Mix) 6:48
Genero: Uplifting Trance
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
NOTE: Please watch In [HD 720p] To Have A Better Quality Of [Image] and [Sound]
This upload is for promotional purposes only. If the artist or label behind this song and do not want it on YouTube, please send me a PM instead of contacting Youtube, and I will remove this video as soon as possible thanks. All rights reserved to.
Emanuele Congeddu & D.Max Recordings! ©
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
https://wn.com/Emanuele_Congeddu_Rapa_Nui_Bay_(Original_Mix)_Hd
OUT NOW!! at Beatport Buy Link, in the description of video! :)
Release Details: Emanuele Congeddu born in 1995 is a young upliftingtrance producer from Sardinia (Italy).He heard Trance music for the first time at the end of 2011 on youtube and fell in love with it instantly.After a few months he discovered that Uplifting Melodic Trance is his real love.Starting to mess around with FLStudio 10 at the beginning of 2012 quickly showed the talent this young artist has. His music is an experiment, a fusion with the classical Uplifting Melodic Trance with his sweet melodies and the pure energy, that he called "Energetic Emotional Trance". His tracks, like "Letter To Anya" on AEZ Recordings, are currently supported by important names of the trance scene like Aly & Fila on FSOE - Pedro del Mar on Mellomania Deluxe - Roger Shah on Music for Balearic People and many others!! Rapa Nui Bay Another talented young gun hailing to outr label and showing his passion love and skills for melodic euphoric driven trance like these oriignal tracks here on this ep. He will catch you right from the start and wont let you go until the last sounds have ended and been muted. Melodic right from the beginning without stopping and no big breaks to keep the atmosphere high here on this lovely production.
Amitacek Remix Already no stranger to our label by delivering some catchy remixes and also own tracks on release later on our mainimprint he is now back to show you his latest remixproduction for the first track of this two tracker ep. Grabbing the signature melodic parts from the original and putting some more edge and strength to the whole production to deliver this filthy uplifting sound.
Souls Of Moai This is the second production here on this two tracker debut release by this young gun from italy. This one brings you a very interesting combination of driving pumping uplifting trancesounds and on the other side you will get some really catchy melancholic sounds where you have to sit back think about things in life. Remember his name we are sure that there will be much more to check out in the future from him.
Please Rate, Comment And Share it with your friends in Facebook & enjoy the ride.. d(^_^)b
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
You can buy it here:
Beatport: http://www.beatport.com/release/souls-of-moai-ep/1170952
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Picture link: http://wallpapersus.com/wallpapers/2012/11/Lake-HDR-800x1280.jpg
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Emanuele Congeddu's Facebook Fan Page:
https://www.facebook.com/EmanueleCongeddu?fref=ts
Emanuele Congeddu's Soundcloud:
https://soundcloud.com/emanuele-congeddu
Emanuele Congeddu's YT channel:
http://www.youtube.com/user/UPLTrance4Energy
D.MAX Recordings Website:
http://www.dmax-recordings.de/
D.MAX Recordings Facebook Fan Page:
http://www.facebook.com/D.MAXRecordings
D.MAX Recordings YT channel:
http://www.youtube.com/user/DMAXrecordings
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Release Date: [14/ October /2013]
Sello: D.Max Recordings
Artist: Emanuele Congeddu
Title: Rapa Nui Bay (Original Mix)
Album: Souls Of Moai EP
Catalogo: DMAX128
Release's Tracklist:
Emanuele Congeddu - Rapa Nui Bay (Original Mix) 7:20
Emanuele Congeddu - Rapa Nui Bay (Amitacek Remix) 8:03
Emanuele Congeddu - Souls Of Moai (Original Mix) 6:48
Genero: Uplifting Trance
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
NOTE: Please watch In [HD 720p] To Have A Better Quality Of [Image] and [Sound]
This upload is for promotional purposes only. If the artist or label behind this song and do not want it on YouTube, please send me a PM instead of contacting Youtube, and I will remove this video as soon as possible thanks. All rights reserved to.
Emanuele Congeddu & D.Max Recordings! ©
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
published: 21 Oct 2013
views: 1764
3:33
Sulu and Excelsior "AntiMatter" Official Music Video
Slow Jam King Productions presents the official music video for "AntiMatter", from Sulu an...
Play in Full Screen
Sulu and Excelsior "AntiMatter" Official Music Video
Sulu and Excelsior "AntiMatter" Official Music Video
Slow Jam King Productions presents the official music video for "AntiMatter", from Sulu and Excelsior's new album, "The AntiMatter Suite." Available for streaming and download on all digital platforms. Also available in physical formats at: https://suluandexcelsior.com/album/the-antimatter-suite
Directed and edited by Steven E. Mallorca aka Sulu, and photgraphed by Jean Baptiste Sankara.
Written, Produced and Mixed by Steven E. Mallorca aka Sulu
All instruments and vocals performed by Sulu with scratches by DJ Mas
Mastering Engineer: Steve Berson at Total Sonic Media
Album artwork: John Wong at Kinsego
©2019 Slow Jam King Productions LLC
Lyrics:
Your man couldn’t look at my face
He feels that a man like me
couldn’t stay in my place
I see why he’s acting like this,
Why’d he say what he say?
He can’t deal
Cuz I’m seizing my time
So he gets in my way
And he feels
We don’t matter
Anti-matter to him
So fragile
glass gon’ shatter on him
Your man gonna smile at your face
He feels that a woman like you
Is gonna stay in your place
You don’t kneel.
You can make your own world
Do your thing you got faith
And you deal with a whole lot more
It ain’t shown in your pay.
And you feel
anti-matter
We should matter more
He’s so fragile
glass could shatter for years
Hey- I’m not being dramatic
They rigged the democratic
Voicing of the people
getting drowned and lost in all the static
Your man is autocratic
My dissent is automatic
My rhymes are all emphatic
Break the glass and call the medic
He’s in a greenhouse so we douse that lawn with gasoline
Not too long That glass’ll gleam
Right the wrongs Collapse the seams
Swing down, sweet back on that chariot
Gon ’ carry it like a picket sign
Don’t think it’s time?
But hell yeah we’re gonna bury it
What? the nature of the beast
I’d never hate you like you preach
And I can empathize and emphasize
That time has ceased
I’m anti matter to you
She’s anti matter to you
I’ll take that batter to your
Glass no match I’ll shatter through you..
We don’t matter
Anti-matter to him
So fragile
glass gon’ shatter for years to come.
2:50
Braided Bread Remix Extended Cut (UNRELEASED)
Play in Full Screen
Braided Bread Remix Extended Cut (UNRELEASED)
Braided Bread Remix Extended Cut (UNRELEASED)
3:57
Total Touch - Somebody Else's Lover
Music video by Total Touch performing Somebody Else's Lover. (C) 1998
Play in Full Screen
Total Touch - Somebody Else's Lover
Total Touch - Somebody Else's Lover
Music video by Total Touch performing Somebody Else's Lover. (C) 1998
5:36
Emanuele Congeddu - Rapa Nui Bay (Original Mix) [HD]
OUT NOW!! at Beatport Buy Link, in the description of video! :)
Release Details: Emanuele ...
Play in Full Screen
Emanuele Congeddu - Rapa Nui Bay (Original Mix) [HD]
Emanuele Congeddu - Rapa Nui Bay (Original Mix) [HD]
OUT NOW!! at Beatport Buy Link, in the description of video! :)
Release Details: Emanuele Congeddu born in 1995 is a young upliftingtrance producer from Sardinia (Italy).He heard Trance music for the first time at the end of 2011 on youtube and fell in love with it instantly.After a few months he discovered that Uplifting Melodic Trance is his real love.Starting to mess around with FLStudio 10 at the beginning of 2012 quickly showed the talent this young artist has. His music is an experiment, a fusion with the classical Uplifting Melodic Trance with his sweet melodies and the pure energy, that he called "Energetic Emotional Trance". His tracks, like "Letter To Anya" on AEZ Recordings, are currently supported by important names of the trance scene like Aly & Fila on FSOE - Pedro del Mar on Mellomania Deluxe - Roger Shah on Music for Balearic People and many others!! Rapa Nui Bay Another talented young gun hailing to outr label and showing his passion love and skills for melodic euphoric driven trance like these oriignal tracks here on this ep. He will catch you right from the start and wont let you go until the last sounds have ended and been muted. Melodic right from the beginning without stopping and no big breaks to keep the atmosphere high here on this lovely production.
Amitacek Remix Already no stranger to our label by delivering some catchy remixes and also own tracks on release later on our mainimprint he is now back to show you his latest remixproduction for the first track of this two tracker ep. Grabbing the signature melodic parts from the original and putting some more edge and strength to the whole production to deliver this filthy uplifting sound.
Souls Of Moai This is the second production here on this two tracker debut release by this young gun from italy. This one brings you a very interesting combination of driving pumping uplifting trancesounds and on the other side you will get some really catchy melancholic sounds where you have to sit back think about things in life. Remember his name we are sure that there will be much more to check out in the future from him.
Please Rate, Comment And Share it with your friends in Facebook & enjoy the ride.. d(^_^)b
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
You can buy it here:
Beatport: http://www.beatport.com/release/souls-of-moai-ep/1170952
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Picture link: http://wallpapersus.com/wallpapers/2012/11/Lake-HDR-800x1280.jpg
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Emanuele Congeddu's Facebook Fan Page:
https://www.facebook.com/EmanueleCongeddu?fref=ts
Emanuele Congeddu's Soundcloud:
https://soundcloud.com/emanuele-congeddu
Emanuele Congeddu's YT channel:
http://www.youtube.com/user/UPLTrance4Energy
D.MAX Recordings Website:
http://www.dmax-recordings.de/
D.MAX Recordings Facebook Fan Page:
http://www.facebook.com/D.MAXRecordings
D.MAX Recordings YT channel:
http://www.youtube.com/user/DMAXrecordings
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Release Date: [14/ October /2013]
Sello: D.Max Recordings
Artist: Emanuele Congeddu
Title: Rapa Nui Bay (Original Mix)
Album: Souls Of Moai EP
Catalogo: DMAX128
Release's Tracklist:
Emanuele Congeddu - Rapa Nui Bay (Original Mix) 7:20
Emanuele Congeddu - Rapa Nui Bay (Amitacek Remix) 8:03
Emanuele Congeddu - Souls Of Moai (Original Mix) 6:48
Genero: Uplifting Trance
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
NOTE: Please watch In [HD 720p] To Have A Better Quality Of [Image] and [Sound]
This upload is for promotional purposes only. If the artist or label behind this song and do not want it on YouTube, please send me a PM instead of contacting Youtube, and I will remove this video as soon as possible thanks. All rights reserved to.
Emanuele Congeddu & D.Max Recordings! ©
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
');
} 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));
}
});
});
});
// -->