'+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);
}
});
}
//-->
Radio Stations
- Kamini
RADIO STATION
GENRE
LOCATION
MyOpusRadio Platform 1
Varied ,Indian
India
Shizoid
Ambient
India
Radio Madhuban 90.4
Public
India
MyOpusRadio Full Throttle
Rock
India
Radio Heartbeats Abishekagni
Christian
India
TORI: Ilaiyaraaja - SPB ERA, TeluguOne Radio On Internet
90s ,Varied ,80s ,70s ,Bollywood
India
Radio Sai Asia Stream
Indian
India
MyOpusRadio Big Fish
Varied
India
PlanetRadioCity IndiePop
Bollywood
India
TORI: IST, TeluguOne Radio On Internet
World Asia
India
MyOpusRadio Blackjack! 24x7
Classic Rock ,Blues
India
MyOpusRadio Confluence Radio
Varied
India
MyOpusRadio Radio 1889
Indie ,Indie Rock
India
TORI: AR Rahman ERA, TeluguOne Radio On Internet
Indian ,Bollywood
India
Radio Sharda 90.4 FM
World ,Indian
India
MyOpusRadio C Train
Rock ,Jazz ,Blues ,R&B
India
MyOpusRadio 'Selectro
Electronica
India
MyOpusRadio Sax and Violins
Jazz ,Blues
India
MyOpusRadio Cassette Player
80s ,Oldies ,70s ,60s
India
MyOpusRadio Chilis
Varied
India
WFEN-FM 88.3 (The Lighthouse) Rockford, IL
Christian
India
Gurbani Radio
Indian ,Bollywood
India
Radio KBJB Kirtan
Religious
India
MyOpusRadio Easy
Easy
India
TORI: All Time Hits, TeluguOne Radio On Internet
Indian ,Bollywood
India
SikhNet Ch. 27 El Sobrante
Religious
India
PlanetRadioCity Hindi
Indian
India
Radio KBJB Sikh Talk
Religious
India
MyOpusRadio
Varied
India
Radio City Freedom
Varied
India
The Movement
Electronica
India
A.R.Rahman Radio
Indian
India
Keertan
Religious
India
Radio Schizoid
Electronica
India
MyOpusRadio Papa Johns
Varied
India
Radio KBJB Simran
Religious
India
PiRocks
Oldies ,70s ,60s
India
Ilayaraja Radio
Indian
India
Chennai FM Rainbow
Indian
India
Pulse Mirchi
Indian ,Bollywood
India
Aahaa FM Chennai
Indian ,World Asia
India
Radio Goa
Indian
India
Radio Islam
Religious
India
Bhajans 1
Religious
India
Psalms Radio
Religious ,Christian
India
Bhakti Radio
Religious
India
MyOpusRadio Platform 2
Varied ,Indian
India
MyOpusRadio Club Rulz!
Dance
India
Sai GH Discourse Stream
Varied
India
Radio KBJB Sant Singh Maskken
Religious
India
TORI: Latest Hits, TeluguOne Radio On Internet
Bollywood
India
SEARCH FOR RADIOS
Smokio Ft. Reezy & Tee Cee - Kamini (කාමිණී) Lyrics
#kamini #lyrics #astrofy
Donate me Here😍🫶: https://www.buymeacoffee.com/astrofy
like the video and subscribe astrofy for more.
-කාමිණී (Kamini)-
Lyrics
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හඳ නෑ, කළුවරයි රාත්රිය
ඈ මගේ ළඟින් ඉඳන් නිවනවා මගෙ කාන්සිය
ගෙවෙනවා විනාඩියෙන් විනාඩිය
කතාවේ තව කොටසක් නිමා විය
දෙවියෝ ඇති තරම් කල් අරන් අඹන්න ඇගේ රූපේ
ඇඳුනොත් හිතේ එක් වරක් මැකෙන්නෑ පින්තූරේ
කවදාවත් අහන්නෑ මගෙන් "ඇයි පමා වූයේ?"
මං පමා කල තරම...
published: 26 May 2022
Smokio - Kamini (කාමිණී) Ft.@ramessesreezy & @thuggahchainmusic [Prod.Zane98] [Official Music Video]
Smokio - Kamini (කාමිණී) Ft. Reezy & Tee Cee (Dope Gang) [Official Music Video]
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Ramesses Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
Make Up - Rish
Video Director - Wagmee
Edit - Wagmee
DOP - Wagmee
Colorist - Wagmee
Production Manager - Wagmee
Special Thanks - Hashini Guruge, Anu Gunathunga, Madhushi Ranasinghe, Asanka Liyanarachchi, Viraj Chiranjitha, Nikesh Dananjaya, Dilushka Hewamadduma, Disitha Sidunuwan, Sanka Maduranga.
✔ like 🖤 share ❤ subscribe 🔔 click the bell
(Smokio)
https://www.facebook.com/smokathareal
https://www.instagram.com/kev...
published: 03 Mar 2021
Anugraheethan Antony|Kamini Song|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|PrinceJoy
Presenting the much awaited official video of #Kamini song from #AnugraheethanAntony, an upcoming Malayalam movie starring Sunny Wayne and Gouri G Kishan along with Sidhique, Indrans, Suraj Venjaramoodu, among others. Directed by Prince Joy, Written by Naveen T Manilal, Story by Jishnu S Ramesh & Aswin Prakash, Music by Arun Muraleedharan, Lyrics by Manu Manjith, Produced by M Shijith under the banner of Lekhsya Entertainments. Muzik247 is the music partner.
Stream and Listen to this song on your favourite platforms - https://muzik247.lnk.to/Kamini
Song Credits
Song: Kamini
Music Composed and Arranged by: Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Programmed: Jonathan Joseph
Additional Rhythm: Gopu Krishnan
Electric Guitars, Bass and Acoustic: Sumesh Parameshwar
Viol...
published: 22 Dec 2019
Kamini - Marly-Gomont
Music video for Marly-Gomont performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2007 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1AU9060013
#Kamini #MarlyGomont #Vevo #HipHop #VevoOfficial
published: 12 May 2015
Green Tara(綠度母心咒)
Provided to YouTube by linfair_records
Green Tara(綠度母心咒) · Kamini
Mantra梵唱聽出好心情-愛的滋養
℗ Kamini Studio
Released on: 2020-12-24
Auto-generated by YouTube.
published: 28 Mar 2022
Kamini Live (කාමිණී) Smokio Ft. Reezy
Videography - Virash Production
☎️ | 070 - 7000087 |
✘ Follow VIRASH on Social Media
🔵 Like on Facebook : https://www.facebook.com/virashproduction.1
🟠 Follow on Instagram : https://www.instagram.com/_virash_/
🔴 Subscribe on YouTube : @VIRASH
[email protected]
All Rights Reserved VIRASH©
published: 07 Mar 2022
Kamini-LyricalAnugraheethan Antony|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|
Film : Anugraheethan Antony
Music : Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Language : Malayalam
CHANNEL NAME : Lyrical
Kamini.. roopini..
Kamini.. roopini… sheelavathi..
Penne kannin thumbathenthe
Entho thedi pokunnenthe
Ullam thaane paadunenthe
Melle melle moolunnenthe
Mridulamaam adharavum
Mathukanam karuthiyo
Chirakilaai uyarumen
Pranyamaam shalabhavum
Manimukilu varayana maarivil
Niram pakarum ninavukalil
Mazha viralu thazhukiya veenayil
Unarum eenam nee
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Maranju ninne nizhalin athirilai
Mozhiyaale ninne ariyave
Paranjathellam nilavin lipikalaal
Uyirinte thaalil ezhuthi njaan
Minna minni kannale
Minnum minnal pennale
Karalil ozhukumoraruvi alayude
Kuli...
published: 16 Sep 2021
Kamini - Parce Qu'on Est Cons
Music video for Parce Qu'on Est Cons performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2009 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1A90900135
#Kamini #ParceQuonEstCons #Vevo #HipHop #VevoOfficial
published: 08 May 2015
EL KAMINIO - Loca
Titre extrait du premier One Man Show de Kamini
Réalisation: Sélim Saïfi et Kamini
Montage: Antoine Smith
Production Clip: Miles Prod
Texte et personnages: Kamini
Prod: Tim Gun
Achetez/streamez le nouvel album en digital
https://kamini.lnk.to/album3emeacte
Facebook: https://www.facebook.com/Kaminilevrai/
Instagram: https://www.instagram.com/kaminilevrai/
Kamini sur VEVO: https://www.youtube.com/user/kaminiVEVO/videos
BoombieMusicPublishing 2013
#elkaminio #kamini #loca
published: 21 Jun 2013
कमीने चल मेरा गेहूं कटा | Sonu Rajbhar | Comedy Music |#video #vines #comedy #funny #viral #trending
कमीने चल मेरा गेहूं कटा | #sonurajbhar | #firangi budhwa |#video #vines #comedy #funny #viral #trending
अगर आप ये Bhojpuri Video को पसंद करते हैं तो Please हमारे चैनल को #subscribe करें
@grapescomedy @grapespurvi @grapesmusicindia
Instagram पर Reel बनाने के लिए click करें
https://www.instagram.com/reels/audio/974452774202738?igsh=NG9jeWo1cGYxcW55
_______
♪Audio Credits♪
►Album: Kamine Chal Mera Gehu Kata
►Song: Kamine Chal Mera Gehu Kata
►Singer: Sonu Rajbhar(Firingi Budhwa), Archana Raaj
►Lyrics: Devanand Rajbhar
►Music : Dileep Prajapati
_______
📽️Video Credits📽️
►Featuring: Sonu Rajbhar(Firingi Budhwa), Sapna Arjun
►Video Director: Aashish Gautam
►Choreographer: Uday Team
►Editor:Anand Gautam
_______
►Company / Brand: Grapes Comedy
►Production House: Sajid Entertainment
_______
E...
published: 05 Apr 2024
4:21
Smokio Ft. Reezy & Tee Cee - Kamini (කාමිණී) Lyrics
#kamini #lyrics #astrofy
Donate me Here😍🫶: https://www.buymeacoffee.com/astrofy
like the video and subscribe astrofy for more.
-කාමිණී (Kamini)-
Lyrics
සරා...
#kamini #lyrics #astrofy
Donate me Here😍🫶: https://www.buymeacoffee.com/astrofy
like the video and subscribe astrofy for more.
-කාමිණී (Kamini)-
Lyrics
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හඳ නෑ, කළුවරයි රාත්රිය
ඈ මගේ ළඟින් ඉඳන් නිවනවා මගෙ කාන්සිය
ගෙවෙනවා විනාඩියෙන් විනාඩිය
කතාවේ තව කොටසක් නිමා විය
දෙවියෝ ඇති තරම් කල් අරන් අඹන්න ඇගේ රූපේ
ඇඳුනොත් හිතේ එක් වරක් මැකෙන්නෑ පින්තූරේ
කවදාවත් අහන්නෑ මගෙන් "ඇයි පමා වූයේ?"
මං පමා කල තරමට ආසාව වැඩියි මූණේ
ඈ මන්දෝදරී, මං රාවණා
ඈ කාමිණී, මමයි වත්ස්යායණ
වෙනසක් නෑ මධ්යම රාත්රී, මධ්යහන
මේ හෝරාවයි සංවාස අධ්යාපන
කාලගුණේ සීතලයි, අපි දෙන්නයි මීදුමයි
එක පාර ඇවිත් ගිම්හානෙයි ශීත සෘතුවයි
උෂ්ණත්වමාපකේ අංශක බිංදුවයි
රතු වෙලා වගෙයි ඈ පුපුරන්න මිනිත්තුවයි
තව මදියි ඇගේ කාමුක දෑස් අයදී
ඈ ළඟදි රති මාර දූත් පරදියි
ඈ කොඳුරයි මගේ කණට, උරහිසට බර වී
"මා සනසන්න හැකි නුඹට ප.ම.ණී."
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
ඈ හිස් අවකාශයක් වූ නිසල රැයකි
දිව්යාංගනාවක් ඈ සුරලොවින් පැමිණි
මා ලෝ අන්ධකාරේ, ඒ ආලෝකෙන් යයි නැතිවී
මන් මත් කරයි ඈ මා තුරුලට දැවටී
අවුලයි මා සිත ඇගෙ කොඳුරන මුවඟින්
ආශා දහසක් වපුරයි ඇගේ සුවඳින්
සම කරන්නද නුඹේ දෙනෙත් මම කුමකින්?
එනු මැන තුරුලට, ඉන්න එපා දුරකින්
පුරඟනී, ඈ මා ගාව දැවටී
මා යහනේ වැතිරී, නිරුවතින් හැඩ වී
මුමුණාවී මතකින්, "මමයි නුඹේ රැජිණී"
"රජුනී, නුඹ කැමති දේ කළ මැනවී"
තෙත් කරන්නම් මං නුඹ වැස්සක් වගේ
මතු කරයි නුඹ නොදැකපු පැත්තක් මගේ
රාගය ඇත ආලය නැතත් හදේ
ආත්මයන් ගැටී නොතේරෙයි ඇත්තක්ද මේ
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හිස් අවකාශයෙන් මතුවෙන්න සැණින්
ඇස්බැන්දුමක් වගේ මට හිතාගන්න බැරි
ඒ කාමිණී මං ළඟ වැටී දණින්
එළිවෙනකන් යාඥා කරලා රතු වෙලා ඇගේ දණිස්
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
🎵 Stream/Download:
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Fllow KEVIN SMOKIO
https://www.facebook.com/smokathareal
https://www.instagram.com/kevinsmokioo
https://www.youtube.com/c/Smokio
Follow REEZY
https://www.facebook.com/raemesiz
https://www.instagram.com/raemesiz
https://www.youtube.com/channel/UCDV1...
Fllow TEE CEE
https://www.facebook.com/nimesh.chain
https://www.instagram.com/teeseesever...
©️If any producer or label has an issue with this song or picture please contact us.
#astrofy.
[email protected]
https://wn.com/Smokio_Ft._Reezy_Tee_Cee_Kamini_(කාමිණී)_Lyrics
#kamini #lyrics #astrofy
Donate me Here😍🫶: https://www.buymeacoffee.com/astrofy
like the video and subscribe astrofy for more.
-කාමිණී (Kamini)-
Lyrics
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හඳ නෑ, කළුවරයි රාත්රිය
ඈ මගේ ළඟින් ඉඳන් නිවනවා මගෙ කාන්සිය
ගෙවෙනවා විනාඩියෙන් විනාඩිය
කතාවේ තව කොටසක් නිමා විය
දෙවියෝ ඇති තරම් කල් අරන් අඹන්න ඇගේ රූපේ
ඇඳුනොත් හිතේ එක් වරක් මැකෙන්නෑ පින්තූරේ
කවදාවත් අහන්නෑ මගෙන් "ඇයි පමා වූයේ?"
මං පමා කල තරමට ආසාව වැඩියි මූණේ
ඈ මන්දෝදරී, මං රාවණා
ඈ කාමිණී, මමයි වත්ස්යායණ
වෙනසක් නෑ මධ්යම රාත්රී, මධ්යහන
මේ හෝරාවයි සංවාස අධ්යාපන
කාලගුණේ සීතලයි, අපි දෙන්නයි මීදුමයි
එක පාර ඇවිත් ගිම්හානෙයි ශීත සෘතුවයි
උෂ්ණත්වමාපකේ අංශක බිංදුවයි
රතු වෙලා වගෙයි ඈ පුපුරන්න මිනිත්තුවයි
තව මදියි ඇගේ කාමුක දෑස් අයදී
ඈ ළඟදි රති මාර දූත් පරදියි
ඈ කොඳුරයි මගේ කණට, උරහිසට බර වී
"මා සනසන්න හැකි නුඹට ප.ම.ණී."
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
ඈ හිස් අවකාශයක් වූ නිසල රැයකි
දිව්යාංගනාවක් ඈ සුරලොවින් පැමිණි
මා ලෝ අන්ධකාරේ, ඒ ආලෝකෙන් යයි නැතිවී
මන් මත් කරයි ඈ මා තුරුලට දැවටී
අවුලයි මා සිත ඇගෙ කොඳුරන මුවඟින්
ආශා දහසක් වපුරයි ඇගේ සුවඳින්
සම කරන්නද නුඹේ දෙනෙත් මම කුමකින්?
එනු මැන තුරුලට, ඉන්න එපා දුරකින්
පුරඟනී, ඈ මා ගාව දැවටී
මා යහනේ වැතිරී, නිරුවතින් හැඩ වී
මුමුණාවී මතකින්, "මමයි නුඹේ රැජිණී"
"රජුනී, නුඹ කැමති දේ කළ මැනවී"
තෙත් කරන්නම් මං නුඹ වැස්සක් වගේ
මතු කරයි නුඹ නොදැකපු පැත්තක් මගේ
රාගය ඇත ආලය නැතත් හදේ
ආත්මයන් ගැටී නොතේරෙයි ඇත්තක්ද මේ
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හිස් අවකාශයෙන් මතුවෙන්න සැණින්
ඇස්බැන්දුමක් වගේ මට හිතාගන්න බැරි
ඒ කාමිණී මං ළඟ වැටී දණින්
එළිවෙනකන් යාඥා කරලා රතු වෙලා ඇගේ දණිස්
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
🎵 Stream/Download:
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Fllow KEVIN SMOKIO
https://www.facebook.com/smokathareal
https://www.instagram.com/kevinsmokioo
https://www.youtube.com/c/Smokio
Follow REEZY
https://www.facebook.com/raemesiz
https://www.instagram.com/raemesiz
https://www.youtube.com/channel/UCDV1...
Fllow TEE CEE
https://www.facebook.com/nimesh.chain
https://www.instagram.com/teeseesever...
©️If any producer or label has an issue with this song or picture please contact us.
#astrofy.
[email protected]
published: 26 May 2022
views: 360037
4:40
Smokio - Kamini (කාමිණී) Ft.@ramessesreezy & @thuggahchainmusic [Prod.Zane98] [Official Music Video]
Smokio - Kamini (කාමිණී) Ft. Reezy & Tee Cee (Dope Gang) [Official Music Video]
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kami...
Smokio - Kamini (කාමිණී) Ft. Reezy & Tee Cee (Dope Gang) [Official Music Video]
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Ramesses Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
Make Up - Rish
Video Director - Wagmee
Edit - Wagmee
DOP - Wagmee
Colorist - Wagmee
Production Manager - Wagmee
Special Thanks - Hashini Guruge, Anu Gunathunga, Madhushi Ranasinghe, Asanka Liyanarachchi, Viraj Chiranjitha, Nikesh Dananjaya, Dilushka Hewamadduma, Disitha Sidunuwan, Sanka Maduranga.
✔ like 🖤 share ❤ subscribe 🔔 click the bell
(Smokio)
https://www.facebook.com/smokathareal
https://www.instagram.com/kevinsmokioo
https://www.youtube.com/c/Smokio
(Reezy)
https://www.facebook.com/raemesiz
https://www.instagram.com/raemesiz
https://www.youtube.com/channel/UCDV1MaVP0PIN2qwtse3sjAA
( Tee Cee )
https://www.facebook.com/nimesh.chain
https://www.instagram.com/teeseeseverything
(Dope Gang)
https://www.facebook.com/realDGcmb
https://www.youtube.com/channel/UCitWVOykNv8nTQ5gq_4FnAA
(Wagmee)
https://www.facebook.com/dasithawagmeee
https://www.instagram.com/wagmeee
https://www.youtube.com/c/dasithawagmee2
Kevin Smokio - Kamini (Official Music Video)
℗ 2021 Dope And Fresh Empire, a division of Dope And Fresh Empire.
© 2021 Copyrights are owned by under Dope And Fresh Empire.
Music video by Kevin Smokio performing Kamini. ℗ 2021 Dope And Fresh Records, Licensed by Dope And Fresh Empire Record (on behalf of Dope And Fresh Empire Publishing) under exclusive license to Kevin Smokio.
#Smokio #Kamini #Lanka
https://wn.com/Smokio_Kamini_(කාමිණී)_Ft._Ramessesreezy_Thuggahchainmusic_Prod.Zane98_Official_Music_Video
Smokio - Kamini (කාමිණී) Ft. Reezy & Tee Cee (Dope Gang) [Official Music Video]
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Ramesses Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
Make Up - Rish
Video Director - Wagmee
Edit - Wagmee
DOP - Wagmee
Colorist - Wagmee
Production Manager - Wagmee
Special Thanks - Hashini Guruge, Anu Gunathunga, Madhushi Ranasinghe, Asanka Liyanarachchi, Viraj Chiranjitha, Nikesh Dananjaya, Dilushka Hewamadduma, Disitha Sidunuwan, Sanka Maduranga.
✔ like 🖤 share ❤ subscribe 🔔 click the bell
(Smokio)
https://www.facebook.com/smokathareal
https://www.instagram.com/kevinsmokioo
https://www.youtube.com/c/Smokio
(Reezy)
https://www.facebook.com/raemesiz
https://www.instagram.com/raemesiz
https://www.youtube.com/channel/UCDV1MaVP0PIN2qwtse3sjAA
( Tee Cee )
https://www.facebook.com/nimesh.chain
https://www.instagram.com/teeseeseverything
(Dope Gang)
https://www.facebook.com/realDGcmb
https://www.youtube.com/channel/UCitWVOykNv8nTQ5gq_4FnAA
(Wagmee)
https://www.facebook.com/dasithawagmeee
https://www.instagram.com/wagmeee
https://www.youtube.com/c/dasithawagmee2
Kevin Smokio - Kamini (Official Music Video)
℗ 2021 Dope And Fresh Empire, a division of Dope And Fresh Empire.
© 2021 Copyrights are owned by under Dope And Fresh Empire.
Music video by Kevin Smokio performing Kamini. ℗ 2021 Dope And Fresh Records, Licensed by Dope And Fresh Empire Record (on behalf of Dope And Fresh Empire Publishing) under exclusive license to Kevin Smokio.
#Smokio #Kamini #Lanka
published: 03 Mar 2021
views: 17314864
4:15
Anugraheethan Antony|Kamini Song|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|PrinceJoy
Presenting the much awaited official video of #Kamini song from #AnugraheethanAntony, an upcoming Malayalam movie starring Sunny Wayne and Gouri G Kishan along ...
Presenting the much awaited official video of #Kamini song from #AnugraheethanAntony, an upcoming Malayalam movie starring Sunny Wayne and Gouri G Kishan along with Sidhique, Indrans, Suraj Venjaramoodu, among others. Directed by Prince Joy, Written by Naveen T Manilal, Story by Jishnu S Ramesh & Aswin Prakash, Music by Arun Muraleedharan, Lyrics by Manu Manjith, Produced by M Shijith under the banner of Lekhsya Entertainments. Muzik247 is the music partner.
Stream and Listen to this song on your favourite platforms - https://muzik247.lnk.to/Kamini
Song Credits
Song: Kamini
Music Composed and Arranged by: Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Programmed: Jonathan Joseph
Additional Rhythm: Gopu Krishnan
Electric Guitars, Bass and Acoustic: Sumesh Parameshwar
Violin Solo & String Arrangements: Rithu Vysakh
Vocal Engineered: Avinash Satish
Recorded at Pop Media House by Jisto George
Mixed and Mastered at 20db Studios by Balu Thankachan
Mixing Assistant: Elwin Joseph
Manager (Arun Muraleedharan Musical): Athul Chalichan
Special Thanks: Sethu Thankachan
Label: Muzik247
Set this song as your Caller Ring Back Tone
Kamini
Vodafone: Dial 53711798135
Idea: Dial 53711798135
BSNL: SMS BT 11798135 to 56700
Airtel: Activate Hello Tune on Wynk App
Penne Kannin Thumbathenthe
Vodafone: Dial 53711798136
Idea: Dial 53711798136
BSNL: SMS BT 11798136 to 56700
Airtel: Activate Hello Tune on Wynk App
Mani Mukilu Varayanam
Vodafone: Dial 53711798137
Idea: Dial 53711798137
BSNL: SMS BT 11798137 to 56700
Airtel: Activate Hello Tune on Wynk App
Mulle Mulle
Vodafone: Dial 53711798138
Idea: Dial 53711798138
BSNL: SMS BT 11798138 to 56700
Airtel: Activate Hello Tune on Wynk App
Maranju Ninne
Vodafone: Dial 53711798139
Idea: Dial 53711798139
BSNL: SMS BT 11798139 to 56700
Airtel: Activate Hello Tune on Wynk App
Movie Credits
Directed by: Prince Joy
Produced by: M Shijith
Written by: Naveen T Manilal
DOP: Selvakumar S
Editor: Appu Bhattathiri
Music: Arun Muraleedharan
Project Designer: Badusha
Executive Producer: Bijubernad
Lyrics: Manu Manjith
Art: Arun Venjaramood
Story: Jishnu S Ramesh & Aswin Prakash
Production Controller: Anil Mathew
Make Up: Pradeep Gopalakrishan
Costume: Bhakthan Mangad
Chief Asso Director: Sudheesh Gopinath
Sound Design: Sankaran AS & Sidharthan KC
Choreography: Jobin
Action: Rajashekharan & Mafia Sasi
Stills: Richard Antony
Design: Shambhu Vijayakumar
🔔 Get alerts when we release any new video. TURN ON THE BELL ICON on the channel! 🔔
SUBSCRIBE for more such Videos: http://bit.ly/2sw1fP6
© 2019 Muzik247
* ANTI-PIRACY WARNING *
This content is Copyrighted to Muzik247. Any unauthorized reproduction, redistribution or re-upload is strictly prohibited of this material. Legal action will be taken against those who violate the copyright of the following material presented!
Kamini song, Kaamini Song, Kamini Full Song, Mulle Mulle song, Mulle Mulle Full Song, Kamini song video, Anugraheethan Antony, Anugraheethan Antony songs, KS Harisankar, KS Harisankar songs, KS Harisankar hits, KS Harishankar new songs, KS Harisankar Latest Song, Sunny Wayne songs, Sunny Wayne movies, Gouri G Kishan songs, Gouri G Kishan movies, Arun Muraleedharan songs, Arun Muraleedharan Hits, Love songs, Malayalam Love Songs, Malayalam Romantic songs
Malayalam Film songs, Malayalam Movie songs, Malayalam songs, Malayalam music, Malayalam Cinema, Malayalam Latest songs, Malayalam latest hits, Malayalam Latest songs, Malayalam latest music
#MulleMulle #SunnyWayne #GouriGKishan
https://wn.com/Anugraheethan_Antony|Kamini_Song|Sunny_Wayne,Gouri_Kishan|Ks_Harisankar|Arun_Muraleedharan|Princejoy
Presenting the much awaited official video of #Kamini song from #AnugraheethanAntony, an upcoming Malayalam movie starring Sunny Wayne and Gouri G Kishan along with Sidhique, Indrans, Suraj Venjaramoodu, among others. Directed by Prince Joy, Written by Naveen T Manilal, Story by Jishnu S Ramesh & Aswin Prakash, Music by Arun Muraleedharan, Lyrics by Manu Manjith, Produced by M Shijith under the banner of Lekhsya Entertainments. Muzik247 is the music partner.
Stream and Listen to this song on your favourite platforms - https://muzik247.lnk.to/Kamini
Song Credits
Song: Kamini
Music Composed and Arranged by: Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Programmed: Jonathan Joseph
Additional Rhythm: Gopu Krishnan
Electric Guitars, Bass and Acoustic: Sumesh Parameshwar
Violin Solo & String Arrangements: Rithu Vysakh
Vocal Engineered: Avinash Satish
Recorded at Pop Media House by Jisto George
Mixed and Mastered at 20db Studios by Balu Thankachan
Mixing Assistant: Elwin Joseph
Manager (Arun Muraleedharan Musical): Athul Chalichan
Special Thanks: Sethu Thankachan
Label: Muzik247
Set this song as your Caller Ring Back Tone
Kamini
Vodafone: Dial 53711798135
Idea: Dial 53711798135
BSNL: SMS BT 11798135 to 56700
Airtel: Activate Hello Tune on Wynk App
Penne Kannin Thumbathenthe
Vodafone: Dial 53711798136
Idea: Dial 53711798136
BSNL: SMS BT 11798136 to 56700
Airtel: Activate Hello Tune on Wynk App
Mani Mukilu Varayanam
Vodafone: Dial 53711798137
Idea: Dial 53711798137
BSNL: SMS BT 11798137 to 56700
Airtel: Activate Hello Tune on Wynk App
Mulle Mulle
Vodafone: Dial 53711798138
Idea: Dial 53711798138
BSNL: SMS BT 11798138 to 56700
Airtel: Activate Hello Tune on Wynk App
Maranju Ninne
Vodafone: Dial 53711798139
Idea: Dial 53711798139
BSNL: SMS BT 11798139 to 56700
Airtel: Activate Hello Tune on Wynk App
Movie Credits
Directed by: Prince Joy
Produced by: M Shijith
Written by: Naveen T Manilal
DOP: Selvakumar S
Editor: Appu Bhattathiri
Music: Arun Muraleedharan
Project Designer: Badusha
Executive Producer: Bijubernad
Lyrics: Manu Manjith
Art: Arun Venjaramood
Story: Jishnu S Ramesh & Aswin Prakash
Production Controller: Anil Mathew
Make Up: Pradeep Gopalakrishan
Costume: Bhakthan Mangad
Chief Asso Director: Sudheesh Gopinath
Sound Design: Sankaran AS & Sidharthan KC
Choreography: Jobin
Action: Rajashekharan & Mafia Sasi
Stills: Richard Antony
Design: Shambhu Vijayakumar
🔔 Get alerts when we release any new video. TURN ON THE BELL ICON on the channel! 🔔
SUBSCRIBE for more such Videos: http://bit.ly/2sw1fP6
© 2019 Muzik247
* ANTI-PIRACY WARNING *
This content is Copyrighted to Muzik247. Any unauthorized reproduction, redistribution or re-upload is strictly prohibited of this material. Legal action will be taken against those who violate the copyright of the following material presented!
Kamini song, Kaamini Song, Kamini Full Song, Mulle Mulle song, Mulle Mulle Full Song, Kamini song video, Anugraheethan Antony, Anugraheethan Antony songs, KS Harisankar, KS Harisankar songs, KS Harisankar hits, KS Harishankar new songs, KS Harisankar Latest Song, Sunny Wayne songs, Sunny Wayne movies, Gouri G Kishan songs, Gouri G Kishan movies, Arun Muraleedharan songs, Arun Muraleedharan Hits, Love songs, Malayalam Love Songs, Malayalam Romantic songs
Malayalam Film songs, Malayalam Movie songs, Malayalam songs, Malayalam music, Malayalam Cinema, Malayalam Latest songs, Malayalam latest hits, Malayalam Latest songs, Malayalam latest music
#MulleMulle #SunnyWayne #GouriGKishan
published: 22 Dec 2019
views: 47308295
5:09
Kamini - Marly-Gomont
Music video for Marly-Gomont performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEV...
Music video for Marly-Gomont performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2007 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1AU9060013
#Kamini #MarlyGomont #Vevo #HipHop #VevoOfficial
https://wn.com/Kamini_Marly_Gomont
Music video for Marly-Gomont performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2007 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1AU9060013
#Kamini #MarlyGomont #Vevo #HipHop #VevoOfficial
published: 12 May 2015
views: 25011579
7:46
Green Tara(綠度母心咒)
Provided to YouTube by linfair_records
Green Tara(綠度母心咒) · Kamini
Mantra梵唱聽出好心情-愛的滋養
℗ Kamini Studio
Released on: 2020-12-24
Auto-generated by YouTube.
Provided to YouTube by linfair_records
Green Tara(綠度母心咒) · Kamini
Mantra梵唱聽出好心情-愛的滋養
℗ Kamini Studio
Released on: 2020-12-24
Auto-generated by YouTube.
https://wn.com/Green_Tara(綠度母心咒)
Provided to YouTube by linfair_records
Green Tara(綠度母心咒) · Kamini
Mantra梵唱聽出好心情-愛的滋養
℗ Kamini Studio
Released on: 2020-12-24
Auto-generated by YouTube.
published: 28 Mar 2022
views: 19238
4:09
Kamini Live (කාමිණී) Smokio Ft. Reezy
Videography - Virash Production
☎️ | 070 - 7000087 |
✘ Follow VIRASH on Social Media
🔵 Like on Facebook : https://www.facebook.com/virashproduction.1
🟠 Follow ...
Videography - Virash Production
☎️ | 070 - 7000087 |
✘ Follow VIRASH on Social Media
🔵 Like on Facebook : https://www.facebook.com/virashproduction.1
🟠 Follow on Instagram : https://www.instagram.com/_virash_/
🔴 Subscribe on YouTube : @VIRASH
[email protected]
All Rights Reserved VIRASH©
https://wn.com/Kamini_Live_(කාමිණී)_Smokio_Ft._Reezy
Videography - Virash Production
☎️ | 070 - 7000087 |
✘ Follow VIRASH on Social Media
🔵 Like on Facebook : https://www.facebook.com/virashproduction.1
🟠 Follow on Instagram : https://www.instagram.com/_virash_/
🔴 Subscribe on YouTube : @VIRASH
[email protected]
All Rights Reserved VIRASH©
published: 07 Mar 2022
views: 636991
3:59
Kamini-LyricalAnugraheethan Antony|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|
Film : Anugraheethan Antony
Music : Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Language : Malayalam
CHANNEL NAME : Lyrical
Kamini.. r...
Film : Anugraheethan Antony
Music : Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Language : Malayalam
CHANNEL NAME : Lyrical
Kamini.. roopini..
Kamini.. roopini… sheelavathi..
Penne kannin thumbathenthe
Entho thedi pokunnenthe
Ullam thaane paadunenthe
Melle melle moolunnenthe
Mridulamaam adharavum
Mathukanam karuthiyo
Chirakilaai uyarumen
Pranyamaam shalabhavum
Manimukilu varayana maarivil
Niram pakarum ninavukalil
Mazha viralu thazhukiya veenayil
Unarum eenam nee
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Maranju ninne nizhalin athirilai
Mozhiyaale ninne ariyave
Paranjathellam nilavin lipikalaal
Uyirinte thaalil ezhuthi njaan
Minna minni kannale
Minnum minnal pennale
Karalil ozhukumoraruvi alayude
Kuliru neeyalle
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Kamini… roopini..
Kamini… roopini… sheelavathi..
Kamini… roopini… sheelavathi.. maniye..oo..
We don't own all the materials we're posting on this channel . If you are the owner of the audio and images and wanted our work to remove form our channel pls contact us via email or leave us a personal message here and i will remove your material right away. PLEASE do not opt for a you tube strike
Copyright disclaimer -under section 107 of the copyright act 1976, allowance is made for ' fair use' for purposes such as criticism, comment,news reporting, teaching scholarship and research.fair use is a use permitted by copyright statute that might otherwise be infringing.
We don't own any audio and images. The credits goes to the respective owners. This video is purely fan made. And will not be used for profit or illegal sharing
https://wn.com/Kamini_Lyricalanugraheethan_Antony|Sunny_Wayne,Gouri_Kishan|Ks_Harisankar|Arun_Muraleedharan|
Film : Anugraheethan Antony
Music : Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Language : Malayalam
CHANNEL NAME : Lyrical
Kamini.. roopini..
Kamini.. roopini… sheelavathi..
Penne kannin thumbathenthe
Entho thedi pokunnenthe
Ullam thaane paadunenthe
Melle melle moolunnenthe
Mridulamaam adharavum
Mathukanam karuthiyo
Chirakilaai uyarumen
Pranyamaam shalabhavum
Manimukilu varayana maarivil
Niram pakarum ninavukalil
Mazha viralu thazhukiya veenayil
Unarum eenam nee
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Maranju ninne nizhalin athirilai
Mozhiyaale ninne ariyave
Paranjathellam nilavin lipikalaal
Uyirinte thaalil ezhuthi njaan
Minna minni kannale
Minnum minnal pennale
Karalil ozhukumoraruvi alayude
Kuliru neeyalle
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Kamini… roopini..
Kamini… roopini… sheelavathi..
Kamini… roopini… sheelavathi.. maniye..oo..
We don't own all the materials we're posting on this channel . If you are the owner of the audio and images and wanted our work to remove form our channel pls contact us via email or leave us a personal message here and i will remove your material right away. PLEASE do not opt for a you tube strike
Copyright disclaimer -under section 107 of the copyright act 1976, allowance is made for ' fair use' for purposes such as criticism, comment,news reporting, teaching scholarship and research.fair use is a use permitted by copyright statute that might otherwise be infringing.
We don't own any audio and images. The credits goes to the respective owners. This video is purely fan made. And will not be used for profit or illegal sharing
published: 16 Sep 2021
views: 21338
4:17
Kamini - Parce Qu'on Est Cons
Music video for Parce Qu'on Est Cons performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/K...
Music video for Parce Qu'on Est Cons performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2009 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1A90900135
#Kamini #ParceQuonEstCons #Vevo #HipHop #VevoOfficial
https://wn.com/Kamini_Parce_Qu'on_Est_Cons
Music video for Parce Qu'on Est Cons performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2009 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1A90900135
#Kamini #ParceQuonEstCons #Vevo #HipHop #VevoOfficial
published: 08 May 2015
views: 5746898
4:55
EL KAMINIO - Loca
Titre extrait du premier One Man Show de Kamini
Réalisation: Sélim Saïfi et Kamini
Montage: Antoine Smith
Production Clip: Miles Prod
Texte et personnages: Kam...
Titre extrait du premier One Man Show de Kamini
Réalisation: Sélim Saïfi et Kamini
Montage: Antoine Smith
Production Clip: Miles Prod
Texte et personnages: Kamini
Prod: Tim Gun
Achetez/streamez le nouvel album en digital
https://kamini.lnk.to/album3emeacte
Facebook: https://www.facebook.com/Kaminilevrai/
Instagram: https://www.instagram.com/kaminilevrai/
Kamini sur VEVO: https://www.youtube.com/user/kaminiVEVO/videos
BoombieMusicPublishing 2013
#elkaminio #kamini #loca
https://wn.com/El_Kaminio_Loca
Titre extrait du premier One Man Show de Kamini
Réalisation: Sélim Saïfi et Kamini
Montage: Antoine Smith
Production Clip: Miles Prod
Texte et personnages: Kamini
Prod: Tim Gun
Achetez/streamez le nouvel album en digital
https://kamini.lnk.to/album3emeacte
Facebook: https://www.facebook.com/Kaminilevrai/
Instagram: https://www.instagram.com/kaminilevrai/
Kamini sur VEVO: https://www.youtube.com/user/kaminiVEVO/videos
BoombieMusicPublishing 2013
#elkaminio #kamini #loca
published: 21 Jun 2013
views: 1215815
6:17
कमीने चल मेरा गेहूं कटा | Sonu Rajbhar | Comedy Music |#video #vines #comedy #funny #viral #trending
कमीने चल मेरा गेहूं कटा | #sonurajbhar | #firangi budhwa |#video #vines #comedy #funny #viral #trending
अगर आप ये Bhojpuri Video को पसंद करते हैं तो Please हमा...
कमीने चल मेरा गेहूं कटा | #sonurajbhar | #firangi budhwa |#video #vines #comedy #funny #viral #trending
अगर आप ये Bhojpuri Video को पसंद करते हैं तो Please हमारे चैनल को #subscribe करें
@grapescomedy @grapespurvi @grapesmusicindia
Instagram पर Reel बनाने के लिए click करें
https://www.instagram.com/reels/audio/974452774202738?igsh=NG9jeWo1cGYxcW55
_______
♪Audio Credits♪
►Album: Kamine Chal Mera Gehu Kata
►Song: Kamine Chal Mera Gehu Kata
►Singer: Sonu Rajbhar(Firingi Budhwa), Archana Raaj
►Lyrics: Devanand Rajbhar
►Music : Dileep Prajapati
_______
📽️Video Credits📽️
►Featuring: Sonu Rajbhar(Firingi Budhwa), Sapna Arjun
►Video Director: Aashish Gautam
►Choreographer: Uday Team
►Editor:Anand Gautam
_______
►Company / Brand: Grapes Comedy
►Production House: Sajid Entertainment
_______
Enjoy & stay connected with us!
►Facebook: https://www.facebook.com/share/k2oHKb...
►Instagram: https://www.instagram.com/grapescomed...
►Song Available On :
Wynk Link : https://open.wynk.in/llYHcOY4NIb?~feature=wynk_share&~destination=whatsapp&~content_id=srch_pplmumbai_8909091547642_INGD42300023
Spotify Link: https://open.spotify.com/track/3aT5N4qSYxMz6p3un4iCPR?si=_QQJ30cFQy2_g_p9CaHA4w
Jio Saavn Link: https://ws.saavn.com/p/song/search/Chal-Mera-Gehu-Kata/Chal-Mera-Gehu-Kata/IC1aWjdxRmo?referrer=utm_medium=whatsapp&utm_source=whatsapp
_______
#trending #comedyvideo #comedyshorts #comedyvideos #funnycomedy #funnyvideo #funnyshorts #funnyvideos #funnymoments #fun
#video #videoviral #videoshorts #videos #bhojpuricomedy #bhojpurisong #bhojpuri_song #bhojpurivideo #bhojpurimusic #bhojpuridance #bhojpurigana
#viral #viralvideo #viralreels #viralshorts #viralshort #viralvideos
#song #songviral #songs
#comedy #com#e
#funny
#music #musicvideo
#firingibudhwa
#sonurajbhar
#comedygenre
#chal gehu kate
#bhojpuri
#janeman #janeman tu kaha hai#chal mera gehu kata#kamine chal mera gehu kata
#kamine chal gehu kata#archna raaj gehu kata#sonu rajbhar gehu kata song
#bhojpuricomedy
https://wn.com/कमीने_चल_मेरा_गेहूं_कटा_|_Sonu_Rajbhar_|_Comedy_Music_|_Video_Vines_Comedy_Funny_Viral_Trending
कमीने चल मेरा गेहूं कटा | #sonurajbhar | #firangi budhwa |#video #vines #comedy #funny #viral #trending
अगर आप ये Bhojpuri Video को पसंद करते हैं तो Please हमारे चैनल को #subscribe करें
@grapescomedy @grapespurvi @grapesmusicindia
Instagram पर Reel बनाने के लिए click करें
https://www.instagram.com/reels/audio/974452774202738?igsh=NG9jeWo1cGYxcW55
_______
♪Audio Credits♪
►Album: Kamine Chal Mera Gehu Kata
►Song: Kamine Chal Mera Gehu Kata
►Singer: Sonu Rajbhar(Firingi Budhwa), Archana Raaj
►Lyrics: Devanand Rajbhar
►Music : Dileep Prajapati
_______
📽️Video Credits📽️
►Featuring: Sonu Rajbhar(Firingi Budhwa), Sapna Arjun
►Video Director: Aashish Gautam
►Choreographer: Uday Team
►Editor:Anand Gautam
_______
►Company / Brand: Grapes Comedy
►Production House: Sajid Entertainment
_______
Enjoy & stay connected with us!
►Facebook: https://www.facebook.com/share/k2oHKb...
►Instagram: https://www.instagram.com/grapescomed...
►Song Available On :
Wynk Link : https://open.wynk.in/llYHcOY4NIb?~feature=wynk_share&~destination=whatsapp&~content_id=srch_pplmumbai_8909091547642_INGD42300023
Spotify Link: https://open.spotify.com/track/3aT5N4qSYxMz6p3un4iCPR?si=_QQJ30cFQy2_g_p9CaHA4w
Jio Saavn Link: https://ws.saavn.com/p/song/search/Chal-Mera-Gehu-Kata/Chal-Mera-Gehu-Kata/IC1aWjdxRmo?referrer=utm_medium=whatsapp&utm_source=whatsapp
_______
#trending #comedyvideo #comedyshorts #comedyvideos #funnycomedy #funnyvideo #funnyshorts #funnyvideos #funnymoments #fun
#video #videoviral #videoshorts #videos #bhojpuricomedy #bhojpurisong #bhojpuri_song #bhojpurivideo #bhojpurimusic #bhojpuridance #bhojpurigana
#viral #viralvideo #viralreels #viralshorts #viralshort #viralvideos
#song #songviral #songs
#comedy #com#e
#funny
#music #musicvideo
#firingibudhwa
#sonurajbhar
#comedygenre
#chal gehu kate
#bhojpuri
#janeman #janeman tu kaha hai#chal mera gehu kata#kamine chal mera gehu kata
#kamine chal gehu kata#archna raaj gehu kata#sonu rajbhar gehu kata song
#bhojpuricomedy
published: 05 Apr 2024
views: 6849556
4:21
Smokio Ft. Reezy & Tee Cee - Kamini (කාමිණී) Lyrics
#kamini #lyrics #astrofy
Donate me Here😍🫶: https://www.buymeacoffee.com/astrofy
like th...
Play in Full Screen
Smokio Ft. Reezy & Tee Cee - Kamini (කාමිණී) Lyrics
Smokio Ft. Reezy & Tee Cee - Kamini (කාමිණී) Lyrics
#kamini #lyrics #astrofy
Donate me Here😍🫶: https://www.buymeacoffee.com/astrofy
like the video and subscribe astrofy for more.
-කාමිණී (Kamini)-
Lyrics
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හඳ නෑ, කළුවරයි රාත්රිය
ඈ මගේ ළඟින් ඉඳන් නිවනවා මගෙ කාන්සිය
ගෙවෙනවා විනාඩියෙන් විනාඩිය
කතාවේ තව කොටසක් නිමා විය
දෙවියෝ ඇති තරම් කල් අරන් අඹන්න ඇගේ රූපේ
ඇඳුනොත් හිතේ එක් වරක් මැකෙන්නෑ පින්තූරේ
කවදාවත් අහන්නෑ මගෙන් "ඇයි පමා වූයේ?"
මං පමා කල තරමට ආසාව වැඩියි මූණේ
ඈ මන්දෝදරී, මං රාවණා
ඈ කාමිණී, මමයි වත්ස්යායණ
වෙනසක් නෑ මධ්යම රාත්රී, මධ්යහන
මේ හෝරාවයි සංවාස අධ්යාපන
කාලගුණේ සීතලයි, අපි දෙන්නයි මීදුමයි
එක පාර ඇවිත් ගිම්හානෙයි ශීත සෘතුවයි
උෂ්ණත්වමාපකේ අංශක බිංදුවයි
රතු වෙලා වගෙයි ඈ පුපුරන්න මිනිත්තුවයි
තව මදියි ඇගේ කාමුක දෑස් අයදී
ඈ ළඟදි රති මාර දූත් පරදියි
ඈ කොඳුරයි මගේ කණට, උරහිසට බර වී
"මා සනසන්න හැකි නුඹට ප.ම.ණී."
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
ඈ හිස් අවකාශයක් වූ නිසල රැයකි
දිව්යාංගනාවක් ඈ සුරලොවින් පැමිණි
මා ලෝ අන්ධකාරේ, ඒ ආලෝකෙන් යයි නැතිවී
මන් මත් කරයි ඈ මා තුරුලට දැවටී
අවුලයි මා සිත ඇගෙ කොඳුරන මුවඟින්
ආශා දහසක් වපුරයි ඇගේ සුවඳින්
සම කරන්නද නුඹේ දෙනෙත් මම කුමකින්?
එනු මැන තුරුලට, ඉන්න එපා දුරකින්
පුරඟනී, ඈ මා ගාව දැවටී
මා යහනේ වැතිරී, නිරුවතින් හැඩ වී
මුමුණාවී මතකින්, "මමයි නුඹේ රැජිණී"
"රජුනී, නුඹ කැමති දේ කළ මැනවී"
තෙත් කරන්නම් මං නුඹ වැස්සක් වගේ
මතු කරයි නුඹ නොදැකපු පැත්තක් මගේ
රාගය ඇත ආලය නැතත් හදේ
ආත්මයන් ගැටී නොතේරෙයි ඇත්තක්ද මේ
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
සරාගියි දෙනෙත් බර වූ, නොහඳුනන මින්දද රූ උන්මාදිනී
සල්ලාල රජුන් පවා, ඇගේ නෙතු හමුවුණු දා මුලාවිණි
පිරුණු වදන් මතකින්, නැගෙයි ඒ දෙතොල් අතරින් නුරා ගිනි
නොසන්සිඳෙනා පවසින් සිටියි මා දෙපා අසල දණින් කාමිණී
හිස් අවකාශයෙන් මතුවෙන්න සැණින්
ඇස්බැන්දුමක් වගේ මට හිතාගන්න බැරි
ඒ කාමිණී මං ළඟ වැටී දණින්
එළිවෙනකන් යාඥා කරලා රතු වෙලා ඇගේ දණිස්
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
🎵 Stream/Download:
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Fllow KEVIN SMOKIO
https://www.facebook.com/smokathareal
https://www.instagram.com/kevinsmokioo
https://www.youtube.com/c/Smokio
Follow REEZY
https://www.facebook.com/raemesiz
https://www.instagram.com/raemesiz
https://www.youtube.com/channel/UCDV1...
Fllow TEE CEE
https://www.facebook.com/nimesh.chain
https://www.instagram.com/teeseesever...
©️If any producer or label has an issue with this song or picture please contact us.
#astrofy.
[email protected]
4:40
Smokio - Kamini (කාමිණී) Ft.@ramessesreezy & @thuggahchainmusic [Prod.Zane98] [Official Music Video]
Smokio - Kamini (කාමිණී) Ft. Reezy & Tee Cee (Dope Gang) [Official Music Video]
✔ Spotify...
Play in Full Screen
Smokio - Kamini (කාමිණී) Ft.@ramessesreezy & @thuggahchainmusic [Prod.Zane98] [Official Music Video]
Smokio - Kamini (කාමිණී) Ft.@ramessesreezy & @thuggahchainmusic [Prod.Zane98] [Official Music Video]
Smokio - Kamini (කාමිණී) Ft. Reezy & Tee Cee (Dope Gang) [Official Music Video]
✔ Spotify - https://sptfy.com/66Uj
✔ Apple Music - http://tiny.cc/wu4rtz
✔ Kamini Available On All Streaming Platforms: https://ffm.to/kamini
Song - Kamini
Artists- Smokio , Reezy & Tee Cee
Rap lyrics- Smokio , Ramesses Reezy & Tee Cee
Mixing & Mastering - Yaka @ Hit Box
Producer - Zane98
Make Up - Rish
Video Director - Wagmee
Edit - Wagmee
DOP - Wagmee
Colorist - Wagmee
Production Manager - Wagmee
Special Thanks - Hashini Guruge, Anu Gunathunga, Madhushi Ranasinghe, Asanka Liyanarachchi, Viraj Chiranjitha, Nikesh Dananjaya, Dilushka Hewamadduma, Disitha Sidunuwan, Sanka Maduranga.
✔ like 🖤 share ❤ subscribe 🔔 click the bell
(Smokio)
https://www.facebook.com/smokathareal
https://www.instagram.com/kevinsmokioo
https://www.youtube.com/c/Smokio
(Reezy)
https://www.facebook.com/raemesiz
https://www.instagram.com/raemesiz
https://www.youtube.com/channel/UCDV1MaVP0PIN2qwtse3sjAA
( Tee Cee )
https://www.facebook.com/nimesh.chain
https://www.instagram.com/teeseeseverything
(Dope Gang)
https://www.facebook.com/realDGcmb
https://www.youtube.com/channel/UCitWVOykNv8nTQ5gq_4FnAA
(Wagmee)
https://www.facebook.com/dasithawagmeee
https://www.instagram.com/wagmeee
https://www.youtube.com/c/dasithawagmee2
Kevin Smokio - Kamini (Official Music Video)
℗ 2021 Dope And Fresh Empire, a division of Dope And Fresh Empire.
© 2021 Copyrights are owned by under Dope And Fresh Empire.
Music video by Kevin Smokio performing Kamini. ℗ 2021 Dope And Fresh Records, Licensed by Dope And Fresh Empire Record (on behalf of Dope And Fresh Empire Publishing) under exclusive license to Kevin Smokio.
#Smokio #Kamini #Lanka
4:15
Anugraheethan Antony|Kamini Song|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|PrinceJoy
Presenting the much awaited official video of #Kamini song from #AnugraheethanAntony, an u...
Play in Full Screen
Anugraheethan Antony|Kamini Song|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|PrinceJoy
Anugraheethan Antony|Kamini Song|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|PrinceJoy
Presenting the much awaited official video of #Kamini song from #AnugraheethanAntony, an upcoming Malayalam movie starring Sunny Wayne and Gouri G Kishan along with Sidhique, Indrans, Suraj Venjaramoodu, among others. Directed by Prince Joy, Written by Naveen T Manilal, Story by Jishnu S Ramesh & Aswin Prakash, Music by Arun Muraleedharan, Lyrics by Manu Manjith, Produced by M Shijith under the banner of Lekhsya Entertainments. Muzik247 is the music partner.
Stream and Listen to this song on your favourite platforms - https://muzik247.lnk.to/Kamini
Song Credits
Song: Kamini
Music Composed and Arranged by: Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Programmed: Jonathan Joseph
Additional Rhythm: Gopu Krishnan
Electric Guitars, Bass and Acoustic: Sumesh Parameshwar
Violin Solo & String Arrangements: Rithu Vysakh
Vocal Engineered: Avinash Satish
Recorded at Pop Media House by Jisto George
Mixed and Mastered at 20db Studios by Balu Thankachan
Mixing Assistant: Elwin Joseph
Manager (Arun Muraleedharan Musical): Athul Chalichan
Special Thanks: Sethu Thankachan
Label: Muzik247
Set this song as your Caller Ring Back Tone
Kamini
Vodafone: Dial 53711798135
Idea: Dial 53711798135
BSNL: SMS BT 11798135 to 56700
Airtel: Activate Hello Tune on Wynk App
Penne Kannin Thumbathenthe
Vodafone: Dial 53711798136
Idea: Dial 53711798136
BSNL: SMS BT 11798136 to 56700
Airtel: Activate Hello Tune on Wynk App
Mani Mukilu Varayanam
Vodafone: Dial 53711798137
Idea: Dial 53711798137
BSNL: SMS BT 11798137 to 56700
Airtel: Activate Hello Tune on Wynk App
Mulle Mulle
Vodafone: Dial 53711798138
Idea: Dial 53711798138
BSNL: SMS BT 11798138 to 56700
Airtel: Activate Hello Tune on Wynk App
Maranju Ninne
Vodafone: Dial 53711798139
Idea: Dial 53711798139
BSNL: SMS BT 11798139 to 56700
Airtel: Activate Hello Tune on Wynk App
Movie Credits
Directed by: Prince Joy
Produced by: M Shijith
Written by: Naveen T Manilal
DOP: Selvakumar S
Editor: Appu Bhattathiri
Music: Arun Muraleedharan
Project Designer: Badusha
Executive Producer: Bijubernad
Lyrics: Manu Manjith
Art: Arun Venjaramood
Story: Jishnu S Ramesh & Aswin Prakash
Production Controller: Anil Mathew
Make Up: Pradeep Gopalakrishan
Costume: Bhakthan Mangad
Chief Asso Director: Sudheesh Gopinath
Sound Design: Sankaran AS & Sidharthan KC
Choreography: Jobin
Action: Rajashekharan & Mafia Sasi
Stills: Richard Antony
Design: Shambhu Vijayakumar
🔔 Get alerts when we release any new video. TURN ON THE BELL ICON on the channel! 🔔
SUBSCRIBE for more such Videos: http://bit.ly/2sw1fP6
© 2019 Muzik247
* ANTI-PIRACY WARNING *
This content is Copyrighted to Muzik247. Any unauthorized reproduction, redistribution or re-upload is strictly prohibited of this material. Legal action will be taken against those who violate the copyright of the following material presented!
Kamini song, Kaamini Song, Kamini Full Song, Mulle Mulle song, Mulle Mulle Full Song, Kamini song video, Anugraheethan Antony, Anugraheethan Antony songs, KS Harisankar, KS Harisankar songs, KS Harisankar hits, KS Harishankar new songs, KS Harisankar Latest Song, Sunny Wayne songs, Sunny Wayne movies, Gouri G Kishan songs, Gouri G Kishan movies, Arun Muraleedharan songs, Arun Muraleedharan Hits, Love songs, Malayalam Love Songs, Malayalam Romantic songs
Malayalam Film songs, Malayalam Movie songs, Malayalam songs, Malayalam music, Malayalam Cinema, Malayalam Latest songs, Malayalam latest hits, Malayalam Latest songs, Malayalam latest music
#MulleMulle #SunnyWayne #GouriGKishan
5:09
Kamini - Marly-Gomont
Music video for Marly-Gomont performed by Kamini.
Site: http://kamini.fr
Twitter: https:/...
Play in Full Screen
Kamini - Marly-Gomont
Kamini - Marly-Gomont
Music video for Marly-Gomont performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2007 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1AU9060013
#Kamini #MarlyGomont #Vevo #HipHop #VevoOfficial
7:46
Green Tara(綠度母心咒)
Provided to YouTube by linfair_records
Green Tara(綠度母心咒) · Kamini
Mantra梵唱聽出好心情-愛的滋養
℗ ...
Play in Full Screen
Green Tara(綠度母心咒)
Green Tara(綠度母心咒)
Provided to YouTube by linfair_records
Green Tara(綠度母心咒) · Kamini
Mantra梵唱聽出好心情-愛的滋養
℗ Kamini Studio
Released on: 2020-12-24
Auto-generated by YouTube.
4:09
Kamini Live (කාමිණී) Smokio Ft. Reezy
Videography - Virash Production
☎️ | 070 - 7000087 |
✘ Follow VIRASH on Social Media
🔵 Li...
Play in Full Screen
Kamini Live (කාමිණී) Smokio Ft. Reezy
Kamini Live (කාමිණී) Smokio Ft. Reezy
Videography - Virash Production
☎️ | 070 - 7000087 |
✘ Follow VIRASH on Social Media
🔵 Like on Facebook : https://www.facebook.com/virashproduction.1
🟠 Follow on Instagram : https://www.instagram.com/_virash_/
🔴 Subscribe on YouTube : @VIRASH
[email protected]
All Rights Reserved VIRASH©
3:59
Kamini-LyricalAnugraheethan Antony|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|
Film : Anugraheethan Antony
Music : Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Ha...
Play in Full Screen
Kamini-LyricalAnugraheethan Antony|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|
Kamini-LyricalAnugraheethan Antony|Sunny Wayne,Gouri Kishan|KS Harisankar|Arun Muraleedharan|
Film : Anugraheethan Antony
Music : Arun Muraleedharan
Lyricist: Manu Manjith
Singer: Harisankar KS
Language : Malayalam
CHANNEL NAME : Lyrical
Kamini.. roopini..
Kamini.. roopini… sheelavathi..
Penne kannin thumbathenthe
Entho thedi pokunnenthe
Ullam thaane paadunenthe
Melle melle moolunnenthe
Mridulamaam adharavum
Mathukanam karuthiyo
Chirakilaai uyarumen
Pranyamaam shalabhavum
Manimukilu varayana maarivil
Niram pakarum ninavukalil
Mazha viralu thazhukiya veenayil
Unarum eenam nee
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Maranju ninne nizhalin athirilai
Mozhiyaale ninne ariyave
Paranjathellam nilavin lipikalaal
Uyirinte thaalil ezhuthi njaan
Minna minni kannale
Minnum minnal pennale
Karalil ozhukumoraruvi alayude
Kuliru neeyalle
Mulle mulle ullin ullil
Ellam ellam neeye neeye
Doore doore neelakasham
Mannil chaayum teeram neeye
Kamini… roopini..
Kamini… roopini… sheelavathi..
Kamini… roopini… sheelavathi.. maniye..oo..
We don't own all the materials we're posting on this channel . If you are the owner of the audio and images and wanted our work to remove form our channel pls contact us via email or leave us a personal message here and i will remove your material right away. PLEASE do not opt for a you tube strike
Copyright disclaimer -under section 107 of the copyright act 1976, allowance is made for ' fair use' for purposes such as criticism, comment,news reporting, teaching scholarship and research.fair use is a use permitted by copyright statute that might otherwise be infringing.
We don't own any audio and images. The credits goes to the respective owners. This video is purely fan made. And will not be used for profit or illegal sharing
4:17
Kamini - Parce Qu'on Est Cons
Music video for Parce Qu'on Est Cons performed by Kamini.
Site: http://kamini.fr
Twitter:...
Play in Full Screen
Kamini - Parce Qu'on Est Cons
Kamini - Parce Qu'on Est Cons
Music video for Parce Qu'on Est Cons performed by Kamini.
Site: http://kamini.fr
Twitter: https://twitter.com/kaminilevrai
Facebook: https://www.facebook.com/KAMINILEVRAI
Copyright (C) 2009 Psychostar Music, Deeciprod inc..
--
Powered by http://www.vydia.com
http://www.vevo.com/watch/FR1A90900135
#Kamini #ParceQuonEstCons #Vevo #HipHop #VevoOfficial
4:55
EL KAMINIO - Loca
Titre extrait du premier One Man Show de Kamini
Réalisation: Sélim Saïfi et Kamini
Montag...
Play in Full Screen
EL KAMINIO - Loca
EL KAMINIO - Loca
Titre extrait du premier One Man Show de Kamini
Réalisation: Sélim Saïfi et Kamini
Montage: Antoine Smith
Production Clip: Miles Prod
Texte et personnages: Kamini
Prod: Tim Gun
Achetez/streamez le nouvel album en digital
https://kamini.lnk.to/album3emeacte
Facebook: https://www.facebook.com/Kaminilevrai/
Instagram: https://www.instagram.com/kaminilevrai/
Kamini sur VEVO: https://www.youtube.com/user/kaminiVEVO/videos
BoombieMusicPublishing 2013
#elkaminio #kamini #loca
6:17
कमीने चल मेरा गेहूं कटा | Sonu Rajbhar | Comedy Music |#video #vines #comedy #funny #viral #trending
कमीने चल मेरा गेहूं कटा | #sonurajbhar | #firangi budhwa |#video #vines #comedy #funny #vi...
Play in Full Screen
कमीने चल मेरा गेहूं कटा | Sonu Rajbhar | Comedy Music |#video #vines #comedy #funny #viral #trending
कमीने चल मेरा गेहूं कटा | Sonu Rajbhar | Comedy Music |#video #vines #comedy #funny #viral #trending
कमीने चल मेरा गेहूं कटा | #sonurajbhar | #firangi budhwa |#video #vines #comedy #funny #viral #trending
अगर आप ये Bhojpuri Video को पसंद करते हैं तो Please हमारे चैनल को #subscribe करें
@grapescomedy @grapespurvi @grapesmusicindia
Instagram पर Reel बनाने के लिए click करें
https://www.instagram.com/reels/audio/974452774202738?igsh=NG9jeWo1cGYxcW55
_______
♪Audio Credits♪
►Album: Kamine Chal Mera Gehu Kata
►Song: Kamine Chal Mera Gehu Kata
►Singer: Sonu Rajbhar(Firingi Budhwa), Archana Raaj
►Lyrics: Devanand Rajbhar
►Music : Dileep Prajapati
_______
📽️Video Credits📽️
►Featuring: Sonu Rajbhar(Firingi Budhwa), Sapna Arjun
►Video Director: Aashish Gautam
►Choreographer: Uday Team
►Editor:Anand Gautam
_______
►Company / Brand: Grapes Comedy
►Production House: Sajid Entertainment
_______
Enjoy & stay connected with us!
►Facebook: https://www.facebook.com/share/k2oHKb...
►Instagram: https://www.instagram.com/grapescomed...
►Song Available On :
Wynk Link : https://open.wynk.in/llYHcOY4NIb?~feature=wynk_share&~destination=whatsapp&~content_id=srch_pplmumbai_8909091547642_INGD42300023
Spotify Link: https://open.spotify.com/track/3aT5N4qSYxMz6p3un4iCPR?si=_QQJ30cFQy2_g_p9CaHA4w
Jio Saavn Link: https://ws.saavn.com/p/song/search/Chal-Mera-Gehu-Kata/Chal-Mera-Gehu-Kata/IC1aWjdxRmo?referrer=utm_medium=whatsapp&utm_source=whatsapp
_______
#trending #comedyvideo #comedyshorts #comedyvideos #funnycomedy #funnyvideo #funnyshorts #funnyvideos #funnymoments #fun
#video #videoviral #videoshorts #videos #bhojpuricomedy #bhojpurisong #bhojpuri_song #bhojpurivideo #bhojpurimusic #bhojpuridance #bhojpurigana
#viral #viralvideo #viralreels #viralshorts #viralshort #viralvideos
#song #songviral #songs
#comedy #com#e
#funny
#music #musicvideo
#firingibudhwa
#sonurajbhar
#comedygenre
#chal gehu kate
#bhojpuri
#janeman #janeman tu kaha hai#chal mera gehu kata#kamine chal mera gehu kata
#kamine chal gehu kata#archna raaj gehu kata#sonu rajbhar gehu kata song
#bhojpuricomedy
');
} 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));
}
});
});
});
// -->