'+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);
}
});
}
//-->
Elgit Doda - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗘𝗹𝗴𝗶𝘁 𝗗𝗼𝗱𝗮 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔's Official channel? 👇🏼
► http://smarturl.it/SubscribeELGITDODA
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ElgitDodaKuJe
____________________________
🎵 Produced by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔
🎵 Lyrics by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔, 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨, 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔
🎵 Mix/Master by: 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔
🎥 Video by: 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡
🎥 Directed by: 𝗧𝗛𝗘 𝗖𝗟𝗔𝗨𝗗𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔 :
Instagram ► https://www.instagram.com/elgitdoda/
🎵 Connect with 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔 :
Instagram ► https://www.instag...
published: 16 Dec 2021
Artur - Ku je
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗔𝗿𝘁𝘂𝗿 - 𝗞𝘂 𝗷𝗲
____________________________
✔️ Did you subscribe to 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 𝗔𝗟𝗕𝗔𝗡𝗜𝗔's Official channel? 👇🏼
► https://smarturl.it/GMRecordsAlbania
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ArturKuje
____________________________
🎵 Produced by: 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 & 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦
🎵 Mix/Master by: 𝗫𝗛𝗘𝗡𝗧𝗬
🎵 Lyrics by: 𝗔𝗥𝗧𝗨𝗥
🎵 Beat by: 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚, 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣
🎥 Video by: 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗔𝗥𝗧𝗨𝗥 :
Instagram ► https://www.instagram.com/artur__db
🎵 Connect with 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/gm_records_ent
🎵 Connect with 𝗫𝗛𝗘𝗡𝗧𝗬 :
Instagram...
published: 14 May 2024
KUJE ABUJA-NIGERIA
Kuje is a suburb of Abuja, positioned inside the Federal Capital Territory (FCT). It is about 40 km southwest of Abuja.
#kujeabuja #kuje #abuja #nigeria #fctabuja #abujasuburb
published: 02 Feb 2022
BELAH - KUJE (Official Video)
KUJE jetzt streamen ▶ https://one.lnk.to/KUJE
BELAH Social Media ▶ http://belah.fty.li/social
YOT jetzt abonnieren ▶ http://ytb.li/YOT
Youngontop Social Media: http://youngontop.fty.li/social
Management: [email protected]
Produziert von
sqp_avo: https://www.instagram.com/sqp_avo/
perinomusic: https://www.instagram.com/perinomusic/
BTM-Soundz: https://www.instagram.com/btmsoundz/
Mixing von BTM-Soundz
https://www.instagram.com/btmsoundz/?...
Master von Lex Barkey
https://www.instagram.com/lexbarkey/
Video von Leonard Ludwig
https://www.instagram.com/leonardludw...
published: 13 May 2021
FINEM ft. LIGHT - KU JE TI (prod. BO BEATZ x ARLENN)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗙𝗜𝗡𝗘𝗠 𝗳𝘁. 𝗟𝗜𝗚𝗛𝗧 - 𝗞𝗨 𝗝𝗘 𝗧𝗜 (𝗽𝗿𝗼𝗱. 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 𝘅 𝗔𝗥𝗟𝗘𝗡𝗡)
____________________________
✔️ Did you subscribe to 𝗙𝗜𝗡𝗘𝗠's Official channel? 👇🏼
► http://smarturl.it/SubscribeFINEM
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fole.fanlink.to/FinemLightKuJeTi
____________________________
🎵 Produced by: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 & 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Beat: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭
🎵 Mix/Master by: 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Lyrics by: 𝗙𝗜𝗡𝗘𝗠 & 𝗟𝗜𝗚𝗛𝗧
🎥 Video by: 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗙𝗜𝗡𝗘𝗠 :
Instagram ► https://www.instagram.com/itsfinem/
🎤 Connect with 𝗟𝗜𝗚𝗛𝗧 :
Instagram ► https://www.instagram.com/nerogreco/
🎵 Connect with 𝗕𝗢 𝗕𝗘𝗔...
published: 17 Sep 2021
Don Phenom - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗗𝗼𝗻 𝗣𝗵𝗲𝗻𝗼𝗺 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to DON PHENOMS's Official channel? 👇🏼
► http://smarturl.it/SubscribeDONPHENOM
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fanlink.to/DonPhenomKuJe
____________________________
🎵 Produced by: 𝗧𝗢𝗥𝗖𝗛
🎵 Lyrics by: 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠
🎵 Beat by: 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦
🎵 Recorded by: 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬
🎥 Video by: 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠 :
Instagram ► https://instagram.com/donphenomofficialpage
🎵 Connect with 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦 :
Instagram ► https://www.instagram.com/zinbeats/
🎵 Connect with 𝗧𝗢𝗥𝗖𝗛 :
Instagram ► https://www.instagram.com/torchmuzika/
🎵 Connect with...
published: 15 Feb 2020
DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)
إشترك في قناتنا
إستمع إلي "DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)" من خلال هذه القنوات
Subscribe to our channel!
Listen to ‘DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)' in the link below.
★ http://AvalonMusic.lnk.to/KuJeTi
★ DYSTINCT
• https://www.instagram.com/dystinct1
• https://www.tiktok.com/@dystinctofficial
★ Ricky Rich
• https://www.instagram.com/rickyyrich
★ Dafina Zeqiri
• https://www.instagram.com/dafina.zeqiri
★ YAM
• https://www.instagram.com/yammusic
★ Unleaded
• https://www.instagram.com/unleadedofficial
Latest Releases: https://bit.ly/avalonmusicplaylist
Lyrics: Iliass Mansouri, Mbarek Nouali, Ricky Haydary Akdogan, Dafina Zeqiri & Granit Bajraktari
Music: Yassine Alaoui Mdaghri, ...
published: 26 May 2023
ZVE - KUJE (Lyrics Video)
Tekst: Dušan Zavišić
Beat: BOGER
Mix / Master: Talk-Ink Kid
Prateći vokali: Dušan Zavišić
Video: Bogdan Dimitrijević
Millers Street Studio,Chicago
Social media IG
ZVE (https://www.instagram.com/zve_d013)
Talk-Ink-Kid (https://www.instagram.com/talkinkkid)
Blogdan (https://www.instagram.com/bloo.je)
published: 15 Jul 2024
Worship Without Boundaries
Rugged Praise II
published: 26 Aug 2024
Kuje
Provided to YouTube by IDJDigital Limited
Kuje · Djexon
Traume II
℗ 2017 Malahit Digital
Released on: 2018-02-09
Main Artist: Djexon
Author: Nemanja Djeric
Composer: Nemanja Djeric
Auto-generated by YouTube.
published: 17 Jan 2018
3:10
Elgit Doda - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗘𝗹𝗴𝗶𝘁 𝗗𝗼𝗱𝗮 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ D...
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗘𝗹𝗴𝗶𝘁 𝗗𝗼𝗱𝗮 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔's Official channel? 👇🏼
► http://smarturl.it/SubscribeELGITDODA
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ElgitDodaKuJe
____________________________
🎵 Produced by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔
🎵 Lyrics by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔, 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨, 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔
🎵 Mix/Master by: 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔
🎥 Video by: 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡
🎥 Directed by: 𝗧𝗛𝗘 𝗖𝗟𝗔𝗨𝗗𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔 :
Instagram ► https://www.instagram.com/elgitdoda/
🎵 Connect with 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔 :
Instagram ► https://www.instagram.com/marenglen_boja/
🎵 Connect with 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨 :
Instagram ► https://www.instagram.com/olsibylyku1/
🎵 Connect with 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔 :
Instagram ► https://www.instagram.com/albatrosrexhaj/
🎥 Connect with 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡 :
Instagram ► https://www.instagram.com/fullmoon_production/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
℗ & © ELGIT DODA & FOLE PUBLISHING. All Rights Reserved.
#ElgitDoda #KuJe #Folé
https://wn.com/Elgit_Doda_Ku_Je_(Official_Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗘𝗹𝗴𝗶𝘁 𝗗𝗼𝗱𝗮 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔's Official channel? 👇🏼
► http://smarturl.it/SubscribeELGITDODA
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ElgitDodaKuJe
____________________________
🎵 Produced by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔
🎵 Lyrics by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔, 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨, 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔
🎵 Mix/Master by: 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔
🎥 Video by: 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡
🎥 Directed by: 𝗧𝗛𝗘 𝗖𝗟𝗔𝗨𝗗𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔 :
Instagram ► https://www.instagram.com/elgitdoda/
🎵 Connect with 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔 :
Instagram ► https://www.instagram.com/marenglen_boja/
🎵 Connect with 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨 :
Instagram ► https://www.instagram.com/olsibylyku1/
🎵 Connect with 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔 :
Instagram ► https://www.instagram.com/albatrosrexhaj/
🎥 Connect with 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡 :
Instagram ► https://www.instagram.com/fullmoon_production/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
℗ & © ELGIT DODA & FOLE PUBLISHING. All Rights Reserved.
#ElgitDoda #KuJe #Folé
published: 16 Dec 2021
views: 41233136
2:28
Artur - Ku je
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗔𝗿𝘁𝘂𝗿 - 𝗞𝘂 𝗷𝗲
____________________________
✔️ Did you subscribe to 𝗚𝗠...
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗔𝗿𝘁𝘂𝗿 - 𝗞𝘂 𝗷𝗲
____________________________
✔️ Did you subscribe to 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 𝗔𝗟𝗕𝗔𝗡𝗜𝗔's Official channel? 👇🏼
► https://smarturl.it/GMRecordsAlbania
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ArturKuje
____________________________
🎵 Produced by: 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 & 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦
🎵 Mix/Master by: 𝗫𝗛𝗘𝗡𝗧𝗬
🎵 Lyrics by: 𝗔𝗥𝗧𝗨𝗥
🎵 Beat by: 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚, 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣
🎥 Video by: 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗔𝗥𝗧𝗨𝗥 :
Instagram ► https://www.instagram.com/artur__db
🎵 Connect with 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/gm_records_ent
🎵 Connect with 𝗫𝗛𝗘𝗡𝗧𝗬 :
Instagram ► https://www.instagram.com/xhenty
🎵 Connect with 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/radical_records
🎵 Connect with 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚 :
Instagram ► https://www.instagram.com/achillegx
🎵 Connect with 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣 :
Instagram ► https://www.instagram.com/higashi.lp
🎥 Connect with 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦 :
Instagram ► https://www.instagram.com/eridonhoxha
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
🎧 Listen to "𝗔𝗹𝗯𝗮𝗻𝗶𝗮𝗻 𝗛𝗶𝘁𝘀" playlists on Spotify
► https://spoti.fi/2S0JJwF
► https://spoti.fi/350PuQo
____________________________
℗ & © GM RECORDS ALBANIA & FOLE PUBLISHING. All Rights Reserved.
#Artur #Kuje #Folé
https://wn.com/Artur_Ku_Je
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗔𝗿𝘁𝘂𝗿 - 𝗞𝘂 𝗷𝗲
____________________________
✔️ Did you subscribe to 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 𝗔𝗟𝗕𝗔𝗡𝗜𝗔's Official channel? 👇🏼
► https://smarturl.it/GMRecordsAlbania
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ArturKuje
____________________________
🎵 Produced by: 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 & 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦
🎵 Mix/Master by: 𝗫𝗛𝗘𝗡𝗧𝗬
🎵 Lyrics by: 𝗔𝗥𝗧𝗨𝗥
🎵 Beat by: 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚, 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣
🎥 Video by: 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗔𝗥𝗧𝗨𝗥 :
Instagram ► https://www.instagram.com/artur__db
🎵 Connect with 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/gm_records_ent
🎵 Connect with 𝗫𝗛𝗘𝗡𝗧𝗬 :
Instagram ► https://www.instagram.com/xhenty
🎵 Connect with 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/radical_records
🎵 Connect with 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚 :
Instagram ► https://www.instagram.com/achillegx
🎵 Connect with 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣 :
Instagram ► https://www.instagram.com/higashi.lp
🎥 Connect with 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦 :
Instagram ► https://www.instagram.com/eridonhoxha
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
🎧 Listen to "𝗔𝗹𝗯𝗮𝗻𝗶𝗮𝗻 𝗛𝗶𝘁𝘀" playlists on Spotify
► https://spoti.fi/2S0JJwF
► https://spoti.fi/350PuQo
____________________________
℗ & © GM RECORDS ALBANIA & FOLE PUBLISHING. All Rights Reserved.
#Artur #Kuje #Folé
published: 14 May 2024
views: 2121115
0:31
KUJE ABUJA-NIGERIA
Kuje is a suburb of Abuja, positioned inside the Federal Capital Territory (FCT). It is about 40 km southwest of Abuja.
#kujeabuja #kuje #abuja #nigeria #fcta...
Kuje is a suburb of Abuja, positioned inside the Federal Capital Territory (FCT). It is about 40 km southwest of Abuja.
#kujeabuja #kuje #abuja #nigeria #fctabuja #abujasuburb
https://wn.com/Kuje_Abuja_Nigeria
Kuje is a suburb of Abuja, positioned inside the Federal Capital Territory (FCT). It is about 40 km southwest of Abuja.
#kujeabuja #kuje #abuja #nigeria #fctabuja #abujasuburb
published: 02 Feb 2022
views: 2397
2:51
BELAH - KUJE (Official Video)
KUJE jetzt streamen ▶ https://one.lnk.to/KUJE
BELAH Social Media ▶ http://belah.fty.li/social
YOT jetzt abonnieren ▶ http://ytb.li/YOT
Youngontop Social Media:...
KUJE jetzt streamen ▶ https://one.lnk.to/KUJE
BELAH Social Media ▶ http://belah.fty.li/social
YOT jetzt abonnieren ▶ http://ytb.li/YOT
Youngontop Social Media: http://youngontop.fty.li/social
Management:
[email protected]
Produziert von
sqp_avo: https://www.instagram.com/sqp_avo/
perinomusic: https://www.instagram.com/perinomusic/
BTM-Soundz: https://www.instagram.com/btmsoundz/
Mixing von BTM-Soundz
https://www.instagram.com/btmsoundz/?...
Master von Lex Barkey
https://www.instagram.com/lexbarkey/
Video von Leonard Ludwig
https://www.instagram.com/leonardludw...
https://wn.com/Belah_Kuje_(Official_Video)
KUJE jetzt streamen ▶ https://one.lnk.to/KUJE
BELAH Social Media ▶ http://belah.fty.li/social
YOT jetzt abonnieren ▶ http://ytb.li/YOT
Youngontop Social Media: http://youngontop.fty.li/social
Management:
[email protected]
Produziert von
sqp_avo: https://www.instagram.com/sqp_avo/
perinomusic: https://www.instagram.com/perinomusic/
BTM-Soundz: https://www.instagram.com/btmsoundz/
Mixing von BTM-Soundz
https://www.instagram.com/btmsoundz/?...
Master von Lex Barkey
https://www.instagram.com/lexbarkey/
Video von Leonard Ludwig
https://www.instagram.com/leonardludw...
published: 13 May 2021
views: 976017
2:43
FINEM ft. LIGHT - KU JE TI (prod. BO BEATZ x ARLENN)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗙𝗜𝗡𝗘𝗠 𝗳𝘁. 𝗟𝗜𝗚𝗛𝗧 - 𝗞𝗨 𝗝𝗘 𝗧𝗜 (𝗽𝗿𝗼𝗱. 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 𝘅 𝗔𝗥𝗟𝗘𝗡𝗡)
_________________...
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗙𝗜𝗡𝗘𝗠 𝗳𝘁. 𝗟𝗜𝗚𝗛𝗧 - 𝗞𝗨 𝗝𝗘 𝗧𝗜 (𝗽𝗿𝗼𝗱. 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 𝘅 𝗔𝗥𝗟𝗘𝗡𝗡)
____________________________
✔️ Did you subscribe to 𝗙𝗜𝗡𝗘𝗠's Official channel? 👇🏼
► http://smarturl.it/SubscribeFINEM
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fole.fanlink.to/FinemLightKuJeTi
____________________________
🎵 Produced by: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 & 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Beat: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭
🎵 Mix/Master by: 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Lyrics by: 𝗙𝗜𝗡𝗘𝗠 & 𝗟𝗜𝗚𝗛𝗧
🎥 Video by: 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗙𝗜𝗡𝗘𝗠 :
Instagram ► https://www.instagram.com/itsfinem/
🎤 Connect with 𝗟𝗜𝗚𝗛𝗧 :
Instagram ► https://www.instagram.com/nerogreco/
🎵 Connect with 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 :
Instagram ► https://www.instagram.com/bo_beatz/
🎵 Connect with 𝗔𝗥𝗟𝗘𝗡𝗡 :
Instagram ► https://www.instagram.com/arlennmusic/
🎥 Connect with 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔 :
Instagram ► https://www.instagram.com/cinematic.albania/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
🎧 Listen to "𝗔𝗹𝗯𝗮𝗻𝗶𝗮𝗻 𝗛𝗶𝘁𝘀" playlists on Spotify
► https://spoti.fi/2XWZybl
► https://spoti.fi/3avpzBs
____________________________
℗ & © FINEM & FOLE PUBLISHING. All Rights Reserved.
#FinemLight #KuJeTi #Folé
https://wn.com/Finem_Ft._Light_Ku_Je_Ti_(Prod._Bo_Beatz_X_Arlenn)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗙𝗜𝗡𝗘𝗠 𝗳𝘁. 𝗟𝗜𝗚𝗛𝗧 - 𝗞𝗨 𝗝𝗘 𝗧𝗜 (𝗽𝗿𝗼𝗱. 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 𝘅 𝗔𝗥𝗟𝗘𝗡𝗡)
____________________________
✔️ Did you subscribe to 𝗙𝗜𝗡𝗘𝗠's Official channel? 👇🏼
► http://smarturl.it/SubscribeFINEM
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fole.fanlink.to/FinemLightKuJeTi
____________________________
🎵 Produced by: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 & 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Beat: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭
🎵 Mix/Master by: 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Lyrics by: 𝗙𝗜𝗡𝗘𝗠 & 𝗟𝗜𝗚𝗛𝗧
🎥 Video by: 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗙𝗜𝗡𝗘𝗠 :
Instagram ► https://www.instagram.com/itsfinem/
🎤 Connect with 𝗟𝗜𝗚𝗛𝗧 :
Instagram ► https://www.instagram.com/nerogreco/
🎵 Connect with 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 :
Instagram ► https://www.instagram.com/bo_beatz/
🎵 Connect with 𝗔𝗥𝗟𝗘𝗡𝗡 :
Instagram ► https://www.instagram.com/arlennmusic/
🎥 Connect with 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔 :
Instagram ► https://www.instagram.com/cinematic.albania/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
🎧 Listen to "𝗔𝗹𝗯𝗮𝗻𝗶𝗮𝗻 𝗛𝗶𝘁𝘀" playlists on Spotify
► https://spoti.fi/2XWZybl
► https://spoti.fi/3avpzBs
____________________________
℗ & © FINEM & FOLE PUBLISHING. All Rights Reserved.
#FinemLight #KuJeTi #Folé
published: 17 Sep 2021
views: 44064012
3:11
Don Phenom - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗗𝗼𝗻 𝗣𝗵𝗲𝗻𝗼𝗺 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ D...
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗗𝗼𝗻 𝗣𝗵𝗲𝗻𝗼𝗺 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to DON PHENOMS's Official channel? 👇🏼
► http://smarturl.it/SubscribeDONPHENOM
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fanlink.to/DonPhenomKuJe
____________________________
🎵 Produced by: 𝗧𝗢𝗥𝗖𝗛
🎵 Lyrics by: 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠
🎵 Beat by: 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦
🎵 Recorded by: 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬
🎥 Video by: 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠 :
Instagram ► https://instagram.com/donphenomofficialpage
🎵 Connect with 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦 :
Instagram ► https://www.instagram.com/zinbeats/
🎵 Connect with 𝗧𝗢𝗥𝗖𝗛 :
Instagram ► https://www.instagram.com/torchmuzika/
🎵 Connect with 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬 :
Instagram ► https://www.instagram.com/stay.bizzy/
🎥 Connect with 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢 :
Instagram ► https://www.instagram.com/selimramadani/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
℗ & © DON PHENOM & FOLE PUBLISHING. All Rights Reserved.
#DonPhenom #KuJe #Folé
https://wn.com/Don_Phenom_Ku_Je_(Official_Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗗𝗼𝗻 𝗣𝗵𝗲𝗻𝗼𝗺 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to DON PHENOMS's Official channel? 👇🏼
► http://smarturl.it/SubscribeDONPHENOM
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fanlink.to/DonPhenomKuJe
____________________________
🎵 Produced by: 𝗧𝗢𝗥𝗖𝗛
🎵 Lyrics by: 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠
🎵 Beat by: 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦
🎵 Recorded by: 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬
🎥 Video by: 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠 :
Instagram ► https://instagram.com/donphenomofficialpage
🎵 Connect with 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦 :
Instagram ► https://www.instagram.com/zinbeats/
🎵 Connect with 𝗧𝗢𝗥𝗖𝗛 :
Instagram ► https://www.instagram.com/torchmuzika/
🎵 Connect with 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬 :
Instagram ► https://www.instagram.com/stay.bizzy/
🎥 Connect with 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢 :
Instagram ► https://www.instagram.com/selimramadani/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
℗ & © DON PHENOM & FOLE PUBLISHING. All Rights Reserved.
#DonPhenom #KuJe #Folé
published: 15 Feb 2020
views: 5644979
3:39
DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)
إشترك في قناتنا
إستمع إلي "DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)" من خلال هذه القنوات
Subscribe to our channel!
...
إشترك في قناتنا
إستمع إلي "DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)" من خلال هذه القنوات
Subscribe to our channel!
Listen to ‘DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)' in the link below.
★ http://AvalonMusic.lnk.to/KuJeTi
★ DYSTINCT
• https://www.instagram.com/dystinct1
• https://www.tiktok.com/@dystinctofficial
★ Ricky Rich
• https://www.instagram.com/rickyyrich
★ Dafina Zeqiri
• https://www.instagram.com/dafina.zeqiri
★ YAM
• https://www.instagram.com/yammusic
★ Unleaded
• https://www.instagram.com/unleadedofficial
Latest Releases: https://bit.ly/avalonmusicplaylist
Lyrics: Iliass Mansouri, Mbarek Nouali, Ricky Haydary Akdogan, Dafina Zeqiri & Granit Bajraktari
Music: Yassine Alaoui Mdaghri, Joao Lima Pinto & Iliass Mansouri
❑ Avalon
• http://www.avalonmusic.nl
• https://instagram.com/avalonmusic
• https://www.tiktok.com/@avalonmusic
• https://twitter.com/avalonmusicnl
[LYRICS]:
Daret khir fiya
Jabtek liyam liya
B7al b7al niya niya
Ana wiyak aahh
Ana wiyak
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Du gör mig dum, du yaniyor
Om du e min, då vem e dom
Ya, mi amor
Hayati låt alla dom brinna de vårat år
Du min trophy du min skinande ballon d’or
För du e min habibi
Lo marftat idi
Min donnatella
Du e så fin fin
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Po jetoj
Per to jetoj
Qashtu u kon lately
Une ja kuptoj
Me to jetoj
Pergjithmon o my baby
Oh Ku do
Un kom me kon
Ku je ti je ti je ti
Ma mir o
Me ta thon
Duhesh me dit te duaa
Dehet shpirtio
Kur em thirr ti o
Ma dridh zemren
Ti o
Veq ngo
Edhe mu djeeeg
Hallall
Edhe mu djeg
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
#dystinct #kujeti #avalonmusic
© 2023 Avalon Music
https://wn.com/Dystinct_Ku_Je_Ti_Ft._Ricky_Rich_Dafina_Zeqiri_(Prod._Yam,_Unleaded_Dystinct)
إشترك في قناتنا
إستمع إلي "DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)" من خلال هذه القنوات
Subscribe to our channel!
Listen to ‘DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)' in the link below.
★ http://AvalonMusic.lnk.to/KuJeTi
★ DYSTINCT
• https://www.instagram.com/dystinct1
• https://www.tiktok.com/@dystinctofficial
★ Ricky Rich
• https://www.instagram.com/rickyyrich
★ Dafina Zeqiri
• https://www.instagram.com/dafina.zeqiri
★ YAM
• https://www.instagram.com/yammusic
★ Unleaded
• https://www.instagram.com/unleadedofficial
Latest Releases: https://bit.ly/avalonmusicplaylist
Lyrics: Iliass Mansouri, Mbarek Nouali, Ricky Haydary Akdogan, Dafina Zeqiri & Granit Bajraktari
Music: Yassine Alaoui Mdaghri, Joao Lima Pinto & Iliass Mansouri
❑ Avalon
• http://www.avalonmusic.nl
• https://instagram.com/avalonmusic
• https://www.tiktok.com/@avalonmusic
• https://twitter.com/avalonmusicnl
[LYRICS]:
Daret khir fiya
Jabtek liyam liya
B7al b7al niya niya
Ana wiyak aahh
Ana wiyak
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Du gör mig dum, du yaniyor
Om du e min, då vem e dom
Ya, mi amor
Hayati låt alla dom brinna de vårat år
Du min trophy du min skinande ballon d’or
För du e min habibi
Lo marftat idi
Min donnatella
Du e så fin fin
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Po jetoj
Per to jetoj
Qashtu u kon lately
Une ja kuptoj
Me to jetoj
Pergjithmon o my baby
Oh Ku do
Un kom me kon
Ku je ti je ti je ti
Ma mir o
Me ta thon
Duhesh me dit te duaa
Dehet shpirtio
Kur em thirr ti o
Ma dridh zemren
Ti o
Veq ngo
Edhe mu djeeeg
Hallall
Edhe mu djeg
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
#dystinct #kujeti #avalonmusic
© 2023 Avalon Music
published: 26 May 2023
views: 39989939
3:27
ZVE - KUJE (Lyrics Video)
Tekst: Dušan Zavišić
Beat: BOGER
Mix / Master: Talk-Ink Kid
Prateći vokali: Dušan Zavišić
Video: Bogdan Dimitrijević
Millers Street Studio,Chicago
Social medi...
Tekst: Dušan Zavišić
Beat: BOGER
Mix / Master: Talk-Ink Kid
Prateći vokali: Dušan Zavišić
Video: Bogdan Dimitrijević
Millers Street Studio,Chicago
Social media IG
ZVE (https://www.instagram.com/zve_d013)
Talk-Ink-Kid (https://www.instagram.com/talkinkkid)
Blogdan (https://www.instagram.com/bloo.je)
https://wn.com/Zve_Kuje_(Lyrics_Video)
Tekst: Dušan Zavišić
Beat: BOGER
Mix / Master: Talk-Ink Kid
Prateći vokali: Dušan Zavišić
Video: Bogdan Dimitrijević
Millers Street Studio,Chicago
Social media IG
ZVE (https://www.instagram.com/zve_d013)
Talk-Ink-Kid (https://www.instagram.com/talkinkkid)
Blogdan (https://www.instagram.com/bloo.je)
published: 15 Jul 2024
views: 739
3:12
Kuje
Provided to YouTube by IDJDigital Limited
Kuje · Djexon
Traume II
℗ 2017 Malahit Digital
Released on: 2018-02-09
Main Artist: Djexon
Author: Nemanja Djeri...
Provided to YouTube by IDJDigital Limited
Kuje · Djexon
Traume II
℗ 2017 Malahit Digital
Released on: 2018-02-09
Main Artist: Djexon
Author: Nemanja Djeric
Composer: Nemanja Djeric
Auto-generated by YouTube.
https://wn.com/Kuje
Provided to YouTube by IDJDigital Limited
Kuje · Djexon
Traume II
℗ 2017 Malahit Digital
Released on: 2018-02-09
Main Artist: Djexon
Author: Nemanja Djeric
Composer: Nemanja Djeric
Auto-generated by YouTube.
published: 17 Jan 2018
views: 13373
3:10
Elgit Doda - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗘...
Play in Full Screen
Elgit Doda - Ku Je (Official Video)
Elgit Doda - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗘𝗹𝗴𝗶𝘁 𝗗𝗼𝗱𝗮 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔's Official channel? 👇🏼
► http://smarturl.it/SubscribeELGITDODA
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ElgitDodaKuJe
____________________________
🎵 Produced by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔
🎵 Lyrics by: 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔, 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨, 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔
🎵 Mix/Master by: 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔
🎥 Video by: 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡
🎥 Directed by: 𝗧𝗛𝗘 𝗖𝗟𝗔𝗨𝗗𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗘𝗟𝗚𝗜𝗧 𝗗𝗢𝗗𝗔 :
Instagram ► https://www.instagram.com/elgitdoda/
🎵 Connect with 𝗠𝗔𝗥𝗘𝗡𝗚𝗟𝗘𝗡 𝗕𝗢𝗝𝗔 :
Instagram ► https://www.instagram.com/marenglen_boja/
🎵 Connect with 𝗢𝗟𝗦𝗜 𝗕𝗬𝗟𝗬𝗞𝗨 :
Instagram ► https://www.instagram.com/olsibylyku1/
🎵 Connect with 𝗔𝗟𝗕𝗔𝗧𝗥𝗢𝗦 𝗥𝗘𝗫𝗛𝗔 :
Instagram ► https://www.instagram.com/albatrosrexhaj/
🎥 Connect with 𝗙𝗨𝗟𝗟𝗠𝗢𝗢𝗡 𝗣𝗥𝗢𝗗𝗨𝗖𝗧𝗜𝗢𝗡 :
Instagram ► https://www.instagram.com/fullmoon_production/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
℗ & © ELGIT DODA & FOLE PUBLISHING. All Rights Reserved.
#ElgitDoda #KuJe #Folé
2:28
Artur - Ku je
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗔...
Play in Full Screen
Artur - Ku je
Artur - Ku je
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗔𝗿𝘁𝘂𝗿 - 𝗞𝘂 𝗷𝗲
____________________________
✔️ Did you subscribe to 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 𝗔𝗟𝗕𝗔𝗡𝗜𝗔's Official channel? 👇🏼
► https://smarturl.it/GMRecordsAlbania
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://music.fole.to/ArturKuje
____________________________
🎵 Produced by: 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 & 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦
🎵 Mix/Master by: 𝗫𝗛𝗘𝗡𝗧𝗬
🎵 Lyrics by: 𝗔𝗥𝗧𝗨𝗥
🎵 Beat by: 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚, 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣
🎥 Video by: 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗔𝗥𝗧𝗨𝗥 :
Instagram ► https://www.instagram.com/artur__db
🎵 Connect with 𝗚𝗠 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/gm_records_ent
🎵 Connect with 𝗫𝗛𝗘𝗡𝗧𝗬 :
Instagram ► https://www.instagram.com/xhenty
🎵 Connect with 𝗥𝗔𝗗𝗜𝗖𝗔𝗟 𝗥𝗘𝗖𝗢𝗥𝗗𝗦 :
Instagram ► https://www.instagram.com/radical_records
🎵 Connect with 𝗔𝗖𝗛𝗜𝗟𝗟𝗘 𝗚 :
Instagram ► https://www.instagram.com/achillegx
🎵 Connect with 𝗛𝗜𝗚𝗔𝗦𝗛𝗜.𝗟𝗣 :
Instagram ► https://www.instagram.com/higashi.lp
🎥 Connect with 𝗘𝗚𝗢 𝗙𝗜𝗟𝗠𝗦 :
Instagram ► https://www.instagram.com/eridonhoxha
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
🎧 Listen to "𝗔𝗹𝗯𝗮𝗻𝗶𝗮𝗻 𝗛𝗶𝘁𝘀" playlists on Spotify
► https://spoti.fi/2S0JJwF
► https://spoti.fi/350PuQo
____________________________
℗ & © GM RECORDS ALBANIA & FOLE PUBLISHING. All Rights Reserved.
#Artur #Kuje #Folé
0:31
KUJE ABUJA-NIGERIA
Kuje is a suburb of Abuja, positioned inside the Federal Capital Territory (FCT). It is a...
Play in Full Screen
KUJE ABUJA-NIGERIA
KUJE ABUJA-NIGERIA
Kuje is a suburb of Abuja, positioned inside the Federal Capital Territory (FCT). It is about 40 km southwest of Abuja.
#kujeabuja #kuje #abuja #nigeria #fctabuja #abujasuburb
2:51
BELAH - KUJE (Official Video)
KUJE jetzt streamen ▶ https://one.lnk.to/KUJE
BELAH Social Media ▶ http://belah.fty.li/soc...
Play in Full Screen
BELAH - KUJE (Official Video)
BELAH - KUJE (Official Video)
KUJE jetzt streamen ▶ https://one.lnk.to/KUJE
BELAH Social Media ▶ http://belah.fty.li/social
YOT jetzt abonnieren ▶ http://ytb.li/YOT
Youngontop Social Media: http://youngontop.fty.li/social
Management:
[email protected]
Produziert von
sqp_avo: https://www.instagram.com/sqp_avo/
perinomusic: https://www.instagram.com/perinomusic/
BTM-Soundz: https://www.instagram.com/btmsoundz/
Mixing von BTM-Soundz
https://www.instagram.com/btmsoundz/?...
Master von Lex Barkey
https://www.instagram.com/lexbarkey/
Video von Leonard Ludwig
https://www.instagram.com/leonardludw...
2:43
FINEM ft. LIGHT - KU JE TI (prod. BO BEATZ x ARLENN)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗙...
Play in Full Screen
FINEM ft. LIGHT - KU JE TI (prod. BO BEATZ x ARLENN)
FINEM ft. LIGHT - KU JE TI (prod. BO BEATZ x ARLENN)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗙𝗜𝗡𝗘𝗠 𝗳𝘁. 𝗟𝗜𝗚𝗛𝗧 - 𝗞𝗨 𝗝𝗘 𝗧𝗜 (𝗽𝗿𝗼𝗱. 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 𝘅 𝗔𝗥𝗟𝗘𝗡𝗡)
____________________________
✔️ Did you subscribe to 𝗙𝗜𝗡𝗘𝗠's Official channel? 👇🏼
► http://smarturl.it/SubscribeFINEM
👉🏼 Turn on the 🔔 to be notified for all the new songs.
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fole.fanlink.to/FinemLightKuJeTi
____________________________
🎵 Produced by: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 & 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Beat: 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭
🎵 Mix/Master by: 𝗔𝗥𝗟𝗘𝗡𝗡
🎵 Lyrics by: 𝗙𝗜𝗡𝗘𝗠 & 𝗟𝗜𝗚𝗛𝗧
🎥 Video by: 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗙𝗜𝗡𝗘𝗠 :
Instagram ► https://www.instagram.com/itsfinem/
🎤 Connect with 𝗟𝗜𝗚𝗛𝗧 :
Instagram ► https://www.instagram.com/nerogreco/
🎵 Connect with 𝗕𝗢 𝗕𝗘𝗔𝗧𝗭 :
Instagram ► https://www.instagram.com/bo_beatz/
🎵 Connect with 𝗔𝗥𝗟𝗘𝗡𝗡 :
Instagram ► https://www.instagram.com/arlennmusic/
🎥 Connect with 𝗖𝗜𝗡𝗘𝗠𝗔𝗧𝗜𝗖 𝗔𝗟𝗕𝗔𝗡𝗜𝗔 :
Instagram ► https://www.instagram.com/cinematic.albania/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
🎧 Listen to "𝗔𝗹𝗯𝗮𝗻𝗶𝗮𝗻 𝗛𝗶𝘁𝘀" playlists on Spotify
► https://spoti.fi/2XWZybl
► https://spoti.fi/3avpzBs
____________________________
℗ & © FINEM & FOLE PUBLISHING. All Rights Reserved.
#FinemLight #KuJeTi #Folé
3:11
Don Phenom - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗗...
Play in Full Screen
Don Phenom - Ku Je (Official Video)
Don Phenom - Ku Je (Official Video)
𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 - https://www.smarturl.it/FolePublishing
____________________________
𝗗𝗼𝗻 𝗣𝗵𝗲𝗻𝗼𝗺 - 𝗞𝘂 𝗝𝗲 (𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗩𝗶𝗱𝗲𝗼)
____________________________
✔️ Did you subscribe to DON PHENOMS's Official channel? 👇🏼
► http://smarturl.it/SubscribeDONPHENOM
🎧 Listen on Spotify / Download on iTunes 👇🏼
► https://fanlink.to/DonPhenomKuJe
____________________________
🎵 Produced by: 𝗧𝗢𝗥𝗖𝗛
🎵 Lyrics by: 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠
🎵 Beat by: 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦
🎵 Recorded by: 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬
🎥 Video by: 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢
✔️ Published by : 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚
____________________________
🎤 Connect with 𝗗𝗢𝗡 𝗣𝗛𝗘𝗡𝗢𝗠 :
Instagram ► https://instagram.com/donphenomofficialpage
🎵 Connect with 𝗭𝗜𝗡 𝗕𝗘𝗔𝗧𝗦 :
Instagram ► https://www.instagram.com/zinbeats/
🎵 Connect with 𝗧𝗢𝗥𝗖𝗛 :
Instagram ► https://www.instagram.com/torchmuzika/
🎵 Connect with 𝗦𝗧𝗔𝗬 𝗕𝗜𝗭𝗭𝗬 :
Instagram ► https://www.instagram.com/stay.bizzy/
🎥 Connect with 𝗠𝗜𝗟𝗘𝗦 𝗩𝗜𝗗𝗘𝗢 :
Instagram ► https://www.instagram.com/selimramadani/
✔️ Connect with 𝗙𝗢𝗟𝗘 𝗣𝗨𝗕𝗟𝗜𝗦𝗛𝗜𝗡𝗚 :
Instagram ► https://www.smarturl.it/FolePublishing
____________________________
℗ & © DON PHENOM & FOLE PUBLISHING. All Rights Reserved.
#DonPhenom #KuJe #Folé
3:39
DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)
إشترك في قناتنا
إستمع إلي "DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM,...
Play in Full Screen
DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)
DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)
إشترك في قناتنا
إستمع إلي "DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)" من خلال هذه القنوات
Subscribe to our channel!
Listen to ‘DYSTINCT - Ku Je Ti ft. Ricky Rich & Dafina Zeqiri (prod. YAM, Unleaded & DYSTINCT)' in the link below.
★ http://AvalonMusic.lnk.to/KuJeTi
★ DYSTINCT
• https://www.instagram.com/dystinct1
• https://www.tiktok.com/@dystinctofficial
★ Ricky Rich
• https://www.instagram.com/rickyyrich
★ Dafina Zeqiri
• https://www.instagram.com/dafina.zeqiri
★ YAM
• https://www.instagram.com/yammusic
★ Unleaded
• https://www.instagram.com/unleadedofficial
Latest Releases: https://bit.ly/avalonmusicplaylist
Lyrics: Iliass Mansouri, Mbarek Nouali, Ricky Haydary Akdogan, Dafina Zeqiri & Granit Bajraktari
Music: Yassine Alaoui Mdaghri, Joao Lima Pinto & Iliass Mansouri
❑ Avalon
• http://www.avalonmusic.nl
• https://instagram.com/avalonmusic
• https://www.tiktok.com/@avalonmusic
• https://twitter.com/avalonmusicnl
[LYRICS]:
Daret khir fiya
Jabtek liyam liya
B7al b7al niya niya
Ana wiyak aahh
Ana wiyak
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Du gör mig dum, du yaniyor
Om du e min, då vem e dom
Ya, mi amor
Hayati låt alla dom brinna de vårat år
Du min trophy du min skinande ballon d’or
För du e min habibi
Lo marftat idi
Min donnatella
Du e så fin fin
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Po jetoj
Per to jetoj
Qashtu u kon lately
Une ja kuptoj
Me to jetoj
Pergjithmon o my baby
Oh Ku do
Un kom me kon
Ku je ti je ti je ti
Ma mir o
Me ta thon
Duhesh me dit te duaa
Dehet shpirtio
Kur em thirr ti o
Ma dridh zemren
Ti o
Veq ngo
Edhe mu djeeeg
Hallall
Edhe mu djeg
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
Leli leli leli leyli ya leyli
Ya habibi
Une skoy ku jet ti
#dystinct #kujeti #avalonmusic
© 2023 Avalon Music
3:27
ZVE - KUJE (Lyrics Video)
Tekst: Dušan Zavišić
Beat: BOGER
Mix / Master: Talk-Ink Kid
Prateći vokali: Dušan Zavišić
...
Play in Full Screen
ZVE - KUJE (Lyrics Video)
ZVE - KUJE (Lyrics Video)
Tekst: Dušan Zavišić
Beat: BOGER
Mix / Master: Talk-Ink Kid
Prateći vokali: Dušan Zavišić
Video: Bogdan Dimitrijević
Millers Street Studio,Chicago
Social media IG
ZVE (https://www.instagram.com/zve_d013)
Talk-Ink-Kid (https://www.instagram.com/talkinkkid)
Blogdan (https://www.instagram.com/bloo.je)
21:18
Worship Without Boundaries
Rugged Praise II
Play in Full Screen
Worship Without Boundaries
Worship Without Boundaries
Rugged Praise II
3:12
Kuje
Provided to YouTube by IDJDigital Limited
Kuje · Djexon
Traume II
℗ 2017 Malahit Digita...
Play in Full Screen
Kuje
Kuje
Provided to YouTube by IDJDigital Limited
Kuje · Djexon
Traume II
℗ 2017 Malahit Digital
Released on: 2018-02-09
Main Artist: Djexon
Author: Nemanja Djeric
Composer: Nemanja Djeric
Auto-generated by YouTube.
');
} 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));
}
});
});
});
// -->