'+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);
}
});
}
//-->
১৮ জানুয়ারি হরতাল | HAB TV
নতুন কর, দ্রব্যমূল্যের ঊর্ধ্বগতি, হামলা-মামলা ও অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতালের ঘোষণা এসেছে।
আওয়ামী লীগের নেতাকর্মীরা কীভাবে মাঠে নামবে? সাধারণ জনগণ এই হরতালকে কীভাবে দেখছে? বিস্তারিত জানতে ভিডিওটি দেখুন।
বালাদেশে নতুন করে কর আরোপ, দ্রব্যমূল্যের ঊর্ধ্বগতি, রাজনৈতিক নির্যাতন, এবং অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতাল ঘোষণা করা হয়েছে।
এই ভিডিওতে আলোচনা করা হয়েছে:
✔ কেন ১৮ জানুয়ারি হরতাল ডাকলো আওয়ামী লীগ?
✔ শেখ হাসিনার নির্দেশনা কী ছিল?
✔ অন্তর্বর্তী সরকারের প্রতিক্রিয়া কী হতে পারে?
✔ আওয়ামী লীগের তৃণমূল কর্মীদের ভূমিকা কতটা গুরুত্বপূর্ণ?
✔ সাধারণ জনগণ কীভাবে এই হরতালকে গ্রহণ করবে?
📢 আপনার মতামত আমাদের জানান কমেন্টে!
👍 ভিডিওটি লাইক, শেয়ার এবং চ্যানেল সাবস্ক্রাইব করুন নতুন আপডেটের জন্য।
🔔 সর্বশেষ রাজনৈতিক...
published: 16 Jan 2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন নাজমুল | HAB TV 2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। দুর্নীতি, ক্ষমতার অপব্যবহার, এবং শেখ পরিবারের সম্পর্ক নিয়ে বিস্তারিত জানুন।
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। তিনি পার্থের দুর্নীতি, ক্ষমতার অপব্যবহার এবং শেখ পরিবারের সাথে তার সম্পর্ক নিয়ে মুখ খুলেছেন।
পার্থের বেনামি কোম্পানি, তারেক রহমানের সাথে টেন্ডারবাজি এবং সরকারের বিরুদ্ধে ষড়যন্ত্রের নেপথ্য কাহিনী জানতে দেখুন।
👉 আপনার মতামত কমেন্টে জানান এবং ভিডিওটি শেয়ার করতে ভুলবেন না।
📢 নতুন আপডেট পেতে চ্যানেলটি সাবস্ক্রাইব করুন।
#পার্থদুর্নীতি #পার্থনাজমুল #শেখহাসিনা #দুর্নীতিকাহিনী #বাংলাদেশরাজনীতি #বাংলাদেশনিউজ #partho #nazmul
Explosive revelations by ex-BCL leader Nazmul on Partha. Corruption, misuse of power, and ties with Sheikh family exposed.
Former BCL leader Nazmul rev...
published: 14 Jan 2025
তদন্তের মুখে পিটার হাস | HAB TV 2025
তদন্তের মুখে পিটার হাস: বাংলাদেশে আলোচিত-সমালোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস তদন্তের মুখে পড়তে যাচ্ছেন। তার নতুন চাকরি ও বিধি বহির্ভূত কার্যক্রম নিয়ে যুক্তরাষ্ট্রে শুরু হয়েছে আলোচনা। বিস্তারিত জানতে দেখুন এই ভিডিও।
👉 সাবস্ক্রাইব করুন এবং আপনার মতামত জানান।
বাংলাদেশে আলোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস এবার মার্কিন তদন্তের মুখোমুখি। তার এক্সিলারেট এনার্জিতে যোগদান, বিধি বহির্ভূত কার্যক্রম, এবং বাংলাদেশের অভ্যন্তরীণ বিষয়ে হস্তক্ষেপ নিয়ে চলছে আলোচনা। এই ভিডিওতে বিস্তারিত বিশ্লেষণ থাকছে।
👉 আপনার মতামত আমাদের জানাতে ভুলবেন না। ভিডিওটি শেয়ার করে আমাদের সমর্থন করুন।
Former U.S. Ambassador to Bangladesh, Peter Haas, faces scrutiny over his new job and alleged breaches of ethical guidelines. Learn the full story in this video.
👉 Subscribe and share your thoughts!
Former U.S. Am...
published: 13 Jan 2025
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
published: 30 Jul 2024
I FOUND THE LONGEST ELEVATOR IN MINECRAFT
Today, something really strange has happened. An ominous floating structure has appeared overnight! What could it be? There's a Do Not Enter sign, but I'm so curious to see what could be up there. What if there's some amazing treasure up there!? I hope we don't regret this...
We hope you enjoy our videos! Have a great day!
Maizen Merchandise ► https://shop-maizen.myspreadshop.com/
published: 26 Mar 2022
የተከታተልናቸው ሰዎች ጥቃት ፈፀሙብን | ከአዳኙ ጋር የተደረገ ቆይታ | hab media | ሃብ ሚዲያ |
ከዚህም ከዚያም የተለያዩ አዝናኝ፣ አስገራሚ፣ ወቅታዊ እና አስተማሪ ጉዳዮች የሚቀርቡበት ቻናል ነው። ሰብስክራይብ በማድረግ ቤተሰብ እንዲሆኑ በአክብሮት እንጋብዛለን።
Kezim Keziam is a channel which presents entertainment, educational and other issues. Please subscribe and join our channel.
published: 26 Dec 2022
HAB
Dip in 1 - Unit 1 - Lesson 1
HAB
Copyright © Školska knjiga d.d. (uploaded with permission)
(Upscaled to FHD)
Watch! Pogledaj!
published: 13 Mar 2023
💫ብሩክ እና ሀይሚ በጣም አብዝታቹታል ከዚ በሃላ !!😡
@BirukTube- @Haymitube01 @Hab_Tube @EBSDocumentary @EBSKids @seifuonebs @comedianeshetu
published: 11 Jan 2025
Gema Setahon dalam HAB KEMENAG ke-79 #sekolah #sekolahtamankanakkanak #kelas #sekolahtk #anak #taman
published: 15 Jan 2025
🔴ዲያስፖራው የካዱትን ሚስቱንናጓደኛው ይቅርታ አድርጎላቸው አጋባቸው Hab media /ዱካ_ሾው_duka_showዲያስፖራው#ethiopianmovie
#ethiopianmovie
@ynserayne @Dukashow33 @LezaTubeOfficial @fermatatube1
yneser ayne የንስር ዐይን
ab tube አብርሽ ቱዩብ
duka show
eyoha media
duka show new
duka show today
yneser ayne
tireta media ትርታ ሚዲያ
ዱካ ሾው duka show
sheger info
tireta media ትርታ ሚዲያ 2
ዱካው ሾው
hab media ሃብ ሚዲያ
ዱካ
ዱካ tube
arada plus
gojo tube
gojo tube new
gojo tube ቶጆ ቲዩብ
gojo media ጎጆ ሚዲያ
yneser
tireta media
ዱካ ሾው
endalk tube 2
arada plus tube
kumneger ቁም ነገር
ነበልባል media
ነበልባል
ትርታ ሚዲያ
hab media
ነበልባል ሚዲያ
የንስር አይን
ስለኛ ኑሮ
yneser ayne የንስር አይን
የንስር አይን ሚዲያ
ንጉስ ሚድያ - negus media
የንስር
ጎጆ ሚዲያ
dani royal
መፍትሔ ሚዲያ
ዮአዳን
ጎጆ
negus media
arada plus አራዳ ፕላስ 2
ebs
ሐረግ
addis radar
seifu
marakiweg
eyohamedia
daniroyal
arada plus 2
ynserayn
መፍትሔ
haymi tube ሀይሚ ቱዩብ
abtube
addiskmemoch
biruk tube ብሩክ ቱዩብ
ab tube
dukashow
leza
ab tube አብርሽ ቱዪብ
sei...
published: 15 Jan 2025
2:22
১৮ জানুয়ারি হরতাল | HAB TV
নতুন কর, দ্রব্যমূল্যের ঊর্ধ্বগতি, হামলা-মামলা ও অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতালের ঘোষণা এসেছে।
আওয়ামী লীগের নেতাকর্...
নতুন কর, দ্রব্যমূল্যের ঊর্ধ্বগতি, হামলা-মামলা ও অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতালের ঘোষণা এসেছে।
আওয়ামী লীগের নেতাকর্মীরা কীভাবে মাঠে নামবে? সাধারণ জনগণ এই হরতালকে কীভাবে দেখছে? বিস্তারিত জানতে ভিডিওটি দেখুন।
বালাদেশে নতুন করে কর আরোপ, দ্রব্যমূল্যের ঊর্ধ্বগতি, রাজনৈতিক নির্যাতন, এবং অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতাল ঘোষণা করা হয়েছে।
এই ভিডিওতে আলোচনা করা হয়েছে:
✔ কেন ১৮ জানুয়ারি হরতাল ডাকলো আওয়ামী লীগ?
✔ শেখ হাসিনার নির্দেশনা কী ছিল?
✔ অন্তর্বর্তী সরকারের প্রতিক্রিয়া কী হতে পারে?
✔ আওয়ামী লীগের তৃণমূল কর্মীদের ভূমিকা কতটা গুরুত্বপূর্ণ?
✔ সাধারণ জনগণ কীভাবে এই হরতালকে গ্রহণ করবে?
📢 আপনার মতামত আমাদের জানান কমেন্টে!
👍 ভিডিওটি লাইক, শেয়ার এবং চ্যানেল সাবস্ক্রাইব করুন নতুন আপডেটের জন্য।
🔔 সর্বশেষ রাজনৈতিক বিশ্লেষণ ও সংবাদ পেতে চ্যানেলটি ফলো করুন।
#১৮জানুয়ারিহরতাল #শেখহাসিনা #বাংলাদেশরাজনীতি #আওয়ামীলীগ #bangladeshpolitics #politicalcrisis #hartal #protest #economy
More videos:
==========
https://www.youtube.com/watch?v=wfR3s-goQns
https://www.youtube.com/watch?v=1kVPo5cxzJk
https://www.youtube.com/watch?v=BjWOOCyqyw8
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#১৮জানুয়ারিহরতাল #শেখহাসিনা #বাংলাদেশরাজনীতি #আওয়ামীলীগ #hartal #bangladeshpolitics #protest #economiccrisis #government
https://wn.com/১৮_জানুয়ারি_হরতাল_|_Hab_Tv
নতুন কর, দ্রব্যমূল্যের ঊর্ধ্বগতি, হামলা-মামলা ও অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতালের ঘোষণা এসেছে।
আওয়ামী লীগের নেতাকর্মীরা কীভাবে মাঠে নামবে? সাধারণ জনগণ এই হরতালকে কীভাবে দেখছে? বিস্তারিত জানতে ভিডিওটি দেখুন।
বালাদেশে নতুন করে কর আরোপ, দ্রব্যমূল্যের ঊর্ধ্বগতি, রাজনৈতিক নির্যাতন, এবং অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতাল ঘোষণা করা হয়েছে।
এই ভিডিওতে আলোচনা করা হয়েছে:
✔ কেন ১৮ জানুয়ারি হরতাল ডাকলো আওয়ামী লীগ?
✔ শেখ হাসিনার নির্দেশনা কী ছিল?
✔ অন্তর্বর্তী সরকারের প্রতিক্রিয়া কী হতে পারে?
✔ আওয়ামী লীগের তৃণমূল কর্মীদের ভূমিকা কতটা গুরুত্বপূর্ণ?
✔ সাধারণ জনগণ কীভাবে এই হরতালকে গ্রহণ করবে?
📢 আপনার মতামত আমাদের জানান কমেন্টে!
👍 ভিডিওটি লাইক, শেয়ার এবং চ্যানেল সাবস্ক্রাইব করুন নতুন আপডেটের জন্য।
🔔 সর্বশেষ রাজনৈতিক বিশ্লেষণ ও সংবাদ পেতে চ্যানেলটি ফলো করুন।
#১৮জানুয়ারিহরতাল #শেখহাসিনা #বাংলাদেশরাজনীতি #আওয়ামীলীগ #bangladeshpolitics #politicalcrisis #hartal #protest #economy
More videos:
==========
https://www.youtube.com/watch?v=wfR3s-goQns
https://www.youtube.com/watch?v=1kVPo5cxzJk
https://www.youtube.com/watch?v=BjWOOCyqyw8
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#১৮জানুয়ারিহরতাল #শেখহাসিনা #বাংলাদেশরাজনীতি #আওয়ামীলীগ #hartal #bangladeshpolitics #protest #economiccrisis #government
published: 16 Jan 2025
views: 9072
5:53
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন নাজমুল | HAB TV 2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। দুর্নীতি, ক্ষমতার অপব্যবহার, এবং শেখ পরিবারের সম্পর্ক নিয়ে বিস্তারিত জানুন।
পার্থকে নি...
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। দুর্নীতি, ক্ষমতার অপব্যবহার, এবং শেখ পরিবারের সম্পর্ক নিয়ে বিস্তারিত জানুন।
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। তিনি পার্থের দুর্নীতি, ক্ষমতার অপব্যবহার এবং শেখ পরিবারের সাথে তার সম্পর্ক নিয়ে মুখ খুলেছেন।
পার্থের বেনামি কোম্পানি, তারেক রহমানের সাথে টেন্ডারবাজি এবং সরকারের বিরুদ্ধে ষড়যন্ত্রের নেপথ্য কাহিনী জানতে দেখুন।
👉 আপনার মতামত কমেন্টে জানান এবং ভিডিওটি শেয়ার করতে ভুলবেন না।
📢 নতুন আপডেট পেতে চ্যানেলটি সাবস্ক্রাইব করুন।
#পার্থদুর্নীতি #পার্থনাজমুল #শেখহাসিনা #দুর্নীতিকাহিনী #বাংলাদেশরাজনীতি #বাংলাদেশনিউজ #partho #nazmul
Explosive revelations by ex-BCL leader Nazmul on Partha. Corruption, misuse of power, and ties with Sheikh family exposed.
Former BCL leader Nazmul reveals shocking truths about Andalib Partha. Corruption, misuse of power, and connections with Sheikh family exposed.
Learn about Partha’s shady deals, ties with Tarique Rahman, and behind-the-scenes conspiracies against the government.
👉 Share your thoughts in the comments and don’t forget to subscribe for updates!
#AndalibPartha #NazmulRevelations #SheikhHasina #CorruptionInPolitics #PoliticalScandal #BangladeshNews #ParthaControversy
More videos:
==========
https://youtu.be/n9Vre64e6-g?si=YjQdOT4eK0ep641Z
https://youtu.be/lJUEF5IKjB0?si=7dxZ7R4rmoVmliwL
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#পার্থ #নাজমুল #বিস্ফোরকতথ্য #বাংলাদেশ #রাজনীতি #তথ্য #বিশ্লেষণ #সংবাদ #বাংলা #politicalscandals #corruptionexposed #bangladeshnews #nazmul #awamiligue
https://wn.com/পার্থকে_নিয়ে_বিস্ফোরক_তথ্য_দিলেন_নাজমুল_|_Hab_Tv_2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। দুর্নীতি, ক্ষমতার অপব্যবহার, এবং শেখ পরিবারের সম্পর্ক নিয়ে বিস্তারিত জানুন।
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। তিনি পার্থের দুর্নীতি, ক্ষমতার অপব্যবহার এবং শেখ পরিবারের সাথে তার সম্পর্ক নিয়ে মুখ খুলেছেন।
পার্থের বেনামি কোম্পানি, তারেক রহমানের সাথে টেন্ডারবাজি এবং সরকারের বিরুদ্ধে ষড়যন্ত্রের নেপথ্য কাহিনী জানতে দেখুন।
👉 আপনার মতামত কমেন্টে জানান এবং ভিডিওটি শেয়ার করতে ভুলবেন না।
📢 নতুন আপডেট পেতে চ্যানেলটি সাবস্ক্রাইব করুন।
#পার্থদুর্নীতি #পার্থনাজমুল #শেখহাসিনা #দুর্নীতিকাহিনী #বাংলাদেশরাজনীতি #বাংলাদেশনিউজ #partho #nazmul
Explosive revelations by ex-BCL leader Nazmul on Partha. Corruption, misuse of power, and ties with Sheikh family exposed.
Former BCL leader Nazmul reveals shocking truths about Andalib Partha. Corruption, misuse of power, and connections with Sheikh family exposed.
Learn about Partha’s shady deals, ties with Tarique Rahman, and behind-the-scenes conspiracies against the government.
👉 Share your thoughts in the comments and don’t forget to subscribe for updates!
#AndalibPartha #NazmulRevelations #SheikhHasina #CorruptionInPolitics #PoliticalScandal #BangladeshNews #ParthaControversy
More videos:
==========
https://youtu.be/n9Vre64e6-g?si=YjQdOT4eK0ep641Z
https://youtu.be/lJUEF5IKjB0?si=7dxZ7R4rmoVmliwL
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#পার্থ #নাজমুল #বিস্ফোরকতথ্য #বাংলাদেশ #রাজনীতি #তথ্য #বিশ্লেষণ #সংবাদ #বাংলা #politicalscandals #corruptionexposed #bangladeshnews #nazmul #awamiligue
published: 14 Jan 2025
views: 94577
3:33
তদন্তের মুখে পিটার হাস | HAB TV 2025
তদন্তের মুখে পিটার হাস: বাংলাদেশে আলোচিত-সমালোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস তদন্তের মুখে পড়তে যাচ্ছেন। তার নতুন চাকরি ও বিধি বহির্ভূত কার্যক্রম নিয়ে যু...
তদন্তের মুখে পিটার হাস: বাংলাদেশে আলোচিত-সমালোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস তদন্তের মুখে পড়তে যাচ্ছেন। তার নতুন চাকরি ও বিধি বহির্ভূত কার্যক্রম নিয়ে যুক্তরাষ্ট্রে শুরু হয়েছে আলোচনা। বিস্তারিত জানতে দেখুন এই ভিডিও।
👉 সাবস্ক্রাইব করুন এবং আপনার মতামত জানান।
বাংলাদেশে আলোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস এবার মার্কিন তদন্তের মুখোমুখি। তার এক্সিলারেট এনার্জিতে যোগদান, বিধি বহির্ভূত কার্যক্রম, এবং বাংলাদেশের অভ্যন্তরীণ বিষয়ে হস্তক্ষেপ নিয়ে চলছে আলোচনা। এই ভিডিওতে বিস্তারিত বিশ্লেষণ থাকছে।
👉 আপনার মতামত আমাদের জানাতে ভুলবেন না। ভিডিওটি শেয়ার করে আমাদের সমর্থন করুন।
Former U.S. Ambassador to Bangladesh, Peter Haas, faces scrutiny over his new job and alleged breaches of ethical guidelines. Learn the full story in this video.
👉 Subscribe and share your thoughts!
Former U.S. Ambassador Peter Haas is under investigation for alleged violations of U.S. ethics rules. His role in Bangladesh’s internal affairs and subsequent employment at Excelerate Energy have raised significant questions. Watch this video for an in-depth analysis.
👉 Don’t forget to share your thoughts and support by sharing the video!
#PeterHaas #USDiplomacy #BangladeshPolitics #ExcelerateEnergy #PoliticalAnalysis #BangladeshNews #KothaKoileMarbenNaTo
More videos:
==========
https://youtu.be/n9Vre64e6-g?si=YjQdOT4eK0ep641Z
https://youtu.be/lJUEF5IKjB0?si=7dxZ7R4rmoVmliwL
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#peterhaas #usambassador #bangladeshpolitics #excelencia #politicalscandals #usforeignpolicy #ethics #bangladeshnews #globalpolitics #usa #পিটারহাস
https://wn.com/তদন্তের_মুখে_পিটার_হাস_|_Hab_Tv_2025
তদন্তের মুখে পিটার হাস: বাংলাদেশে আলোচিত-সমালোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস তদন্তের মুখে পড়তে যাচ্ছেন। তার নতুন চাকরি ও বিধি বহির্ভূত কার্যক্রম নিয়ে যুক্তরাষ্ট্রে শুরু হয়েছে আলোচনা। বিস্তারিত জানতে দেখুন এই ভিডিও।
👉 সাবস্ক্রাইব করুন এবং আপনার মতামত জানান।
বাংলাদেশে আলোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস এবার মার্কিন তদন্তের মুখোমুখি। তার এক্সিলারেট এনার্জিতে যোগদান, বিধি বহির্ভূত কার্যক্রম, এবং বাংলাদেশের অভ্যন্তরীণ বিষয়ে হস্তক্ষেপ নিয়ে চলছে আলোচনা। এই ভিডিওতে বিস্তারিত বিশ্লেষণ থাকছে।
👉 আপনার মতামত আমাদের জানাতে ভুলবেন না। ভিডিওটি শেয়ার করে আমাদের সমর্থন করুন।
Former U.S. Ambassador to Bangladesh, Peter Haas, faces scrutiny over his new job and alleged breaches of ethical guidelines. Learn the full story in this video.
👉 Subscribe and share your thoughts!
Former U.S. Ambassador Peter Haas is under investigation for alleged violations of U.S. ethics rules. His role in Bangladesh’s internal affairs and subsequent employment at Excelerate Energy have raised significant questions. Watch this video for an in-depth analysis.
👉 Don’t forget to share your thoughts and support by sharing the video!
#PeterHaas #USDiplomacy #BangladeshPolitics #ExcelerateEnergy #PoliticalAnalysis #BangladeshNews #KothaKoileMarbenNaTo
More videos:
==========
https://youtu.be/n9Vre64e6-g?si=YjQdOT4eK0ep641Z
https://youtu.be/lJUEF5IKjB0?si=7dxZ7R4rmoVmliwL
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#peterhaas #usambassador #bangladeshpolitics #excelencia #politicalscandals #usforeignpolicy #ethics #bangladeshnews #globalpolitics #usa #পিটারহাস
published: 13 Jan 2025
views: 43024
11:15
I FOUND THE LONGEST ELEVATOR IN MINECRAFT
Today, something really strange has happened. An ominous floating structure has appeared overnight! What could it be? There's a Do Not Enter sign, but I'm so cu...
Today, something really strange has happened. An ominous floating structure has appeared overnight! What could it be? There's a Do Not Enter sign, but I'm so curious to see what could be up there. What if there's some amazing treasure up there!? I hope we don't regret this...
We hope you enjoy our videos! Have a great day!
Maizen Merchandise ► https://shop-maizen.myspreadshop.com/
https://wn.com/I_Found_The_Longest_Elevator_In_Minecraft
Today, something really strange has happened. An ominous floating structure has appeared overnight! What could it be? There's a Do Not Enter sign, but I'm so curious to see what could be up there. What if there's some amazing treasure up there!? I hope we don't regret this...
We hope you enjoy our videos! Have a great day!
Maizen Merchandise ► https://shop-maizen.myspreadshop.com/
published: 26 Mar 2022
views: 26027675
17:04
የተከታተልናቸው ሰዎች ጥቃት ፈፀሙብን | ከአዳኙ ጋር የተደረገ ቆይታ | hab media | ሃብ ሚዲያ |
ከዚህም ከዚያም የተለያዩ አዝናኝ፣ አስገራሚ፣ ወቅታዊ እና አስተማሪ ጉዳዮች የሚቀርቡበት ቻናል ነው። ሰብስክራይብ በማድረግ ቤተሰብ እንዲሆኑ በአክብሮት እንጋብዛለን።
Kezim Keziam is a channel which presents entertainment...
ከዚህም ከዚያም የተለያዩ አዝናኝ፣ አስገራሚ፣ ወቅታዊ እና አስተማሪ ጉዳዮች የሚቀርቡበት ቻናል ነው። ሰብስክራይብ በማድረግ ቤተሰብ እንዲሆኑ በአክብሮት እንጋብዛለን።
Kezim Keziam is a channel which presents entertainment, educational and other issues. Please subscribe and join our channel.
https://wn.com/የተከታተልናቸው_ሰዎች_ጥቃት_ፈፀሙብን_|_ከአዳኙ_ጋር_የተደረገ_ቆይታ_|_Hab_Media_|_ሃብ_ሚዲያ_|
ከዚህም ከዚያም የተለያዩ አዝናኝ፣ አስገራሚ፣ ወቅታዊ እና አስተማሪ ጉዳዮች የሚቀርቡበት ቻናል ነው። ሰብስክራይብ በማድረግ ቤተሰብ እንዲሆኑ በአክብሮት እንጋብዛለን።
Kezim Keziam is a channel which presents entertainment, educational and other issues. Please subscribe and join our channel.
published: 26 Dec 2022
views: 145794
1:27
HAB
Dip in 1 - Unit 1 - Lesson 1
HAB
Copyright © Školska knjiga d.d. (uploaded with permission)
(Upscaled to FHD)
Watch! Pogledaj!
Dip in 1 - Unit 1 - Lesson 1
HAB
Copyright © Školska knjiga d.d. (uploaded with permission)
(Upscaled to FHD)
Watch! Pogledaj!
https://wn.com/Hab
Dip in 1 - Unit 1 - Lesson 1
HAB
Copyright © Školska knjiga d.d. (uploaded with permission)
(Upscaled to FHD)
Watch! Pogledaj!
published: 13 Mar 2023
views: 2096
24:39
💫ብሩክ እና ሀይሚ በጣም አብዝታቹታል ከዚ በሃላ !!😡
@BirukTube- @Haymitube01 @Hab_Tube @EBSDocumentary @EBSKids @seifuonebs @comedianeshetu
@BirukTube- @Haymitube01 @Hab_Tube @EBSDocumentary @EBSKids @seifuonebs @comedianeshetu
https://wn.com/💫ብሩክ_እና_ሀይሚ_በጣም_አብዝታቹታል_ከዚ_በሃላ_😡
@BirukTube- @Haymitube01 @Hab_Tube @EBSDocumentary @EBSKids @seifuonebs @comedianeshetu
published: 11 Jan 2025
views: 132258
37:55
🔴ዲያስፖራው የካዱትን ሚስቱንናጓደኛው ይቅርታ አድርጎላቸው አጋባቸው Hab media /ዱካ_ሾው_duka_showዲያስፖራው#ethiopianmovie
#ethiopianmovie
@ynserayne @Dukashow33 @LezaTubeOfficial @fermatatube1
yneser ayne የንስር ዐይን
ab tube አብርሽ ቱዩብ
duka show
eyoha media
duka show new
duka show to...
#ethiopianmovie
@ynserayne @Dukashow33 @LezaTubeOfficial @fermatatube1
yneser ayne የንስር ዐይን
ab tube አብርሽ ቱዩብ
duka show
eyoha media
duka show new
duka show today
yneser ayne
tireta media ትርታ ሚዲያ
ዱካ ሾው duka show
sheger info
tireta media ትርታ ሚዲያ 2
ዱካው ሾው
hab media ሃብ ሚዲያ
ዱካ
ዱካ tube
arada plus
gojo tube
gojo tube new
gojo tube ቶጆ ቲዩብ
gojo media ጎጆ ሚዲያ
yneser
tireta media
ዱካ ሾው
endalk tube 2
arada plus tube
kumneger ቁም ነገር
ነበልባል media
ነበልባል
ትርታ ሚዲያ
hab media
ነበልባል ሚዲያ
የንስር አይን
ስለኛ ኑሮ
yneser ayne የንስር አይን
የንስር አይን ሚዲያ
ንጉስ ሚድያ - negus media
የንስር
ጎጆ ሚዲያ
dani royal
መፍትሔ ሚዲያ
ዮአዳን
ጎጆ
negus media
arada plus አራዳ ፕላስ 2
ebs
ሐረግ
addis radar
seifu
marakiweg
eyohamedia
daniroyal
arada plus 2
ynserayn
መፍትሔ
haymi tube ሀይሚ ቱዩብ
abtube
addiskmemoch
biruk tube ብሩክ ቱዩብ
ab tube
dukashow
leza
ab tube አብርሽ ቱዪብ
seifu on ebs
ab tube አብርሽ ቱዩብ today
#ዱካ_ሾው_duka_show
ንጉስ ሚዲያ negus media
yoadan
endalk tube
hareg
haymi tube ሀይሚ ቲዩብ
donkeytube
haymi tube
shegerinfo
endalktube
dani royal youtube
addis radar new
አዳኟ ሚዲያ
hab media አዳኙ
khlot
kumneger
dani royal and tsige royal
addisradar
ዱካ ሚዲያ
biruk tube
አብርሽ እና ሩታ
tofictube
ሩታ እና አብርሽ
ruta tube ሩታ ቲዩብ
fekiha show
addis radar youtube
ethiopian movies
አዳኟ
ድራማ
ruta tube
ጋዜጠኛው
dani royal new video
mikomikee
nebelbal
ጎጆ ቲዩብ
ethiomeznagna
marke tube
ዱካ ሾው /duka show
neblbale
@neblbale @ynserayne @dukashow33
rutatube
ዱካ ሾው duka
yegnashow
shegwrinfo
gojotube
slehiwot
aflafiker
ethio gojo tube
ቲዩብ
addisskmemoch
ethioinfo
ብሩክ ቱዩብ
maleda
ሐዲስ ዜማ ቱዩብ haddis zema tube
የንስር ሚዲያ
shegerdigtal
fani and samri
fani and samri new video
fikir tube fikir
fikir tube ፍቅር
fikr tube
haymi tube ሀይሚያ
marke tube ማርኬ ቱዩብ
marker tube
single tube
tsge royal
kumneger ቁም ነገር
nigus media
ፊልም
nigus media ንጉስ ሚዲያ
yneser ayne የንስር ዐይን 2
tirta media ትርታ ሚዲያ
hab media youtube
yoni magna
boby tube
donkey tube
ዱካ ቲዮብ
yneser ayne media
ንጉስ ሚድያ
yneser ayne new
ethiopian drama
ethiopian movie
lij bini tube
eyobel tube
eyobel tube-እዮቤል ቲዩብ
gojo media
hab media 2
hab media new
ሃብ ሚዲያ
አዳ
nebelbal media
nebelbal tube
https://wn.com/🔴ዲያስፖራው_የካዱትን_ሚስቱንናጓደኛው_ይቅርታ_አድርጎላቸው_አጋባቸው_Hab_Media_ዱካ_ሾው_Duka_Showዲያስፖራው_Ethiopianmovie
#ethiopianmovie
@ynserayne @Dukashow33 @LezaTubeOfficial @fermatatube1
yneser ayne የንስር ዐይን
ab tube አብርሽ ቱዩብ
duka show
eyoha media
duka show new
duka show today
yneser ayne
tireta media ትርታ ሚዲያ
ዱካ ሾው duka show
sheger info
tireta media ትርታ ሚዲያ 2
ዱካው ሾው
hab media ሃብ ሚዲያ
ዱካ
ዱካ tube
arada plus
gojo tube
gojo tube new
gojo tube ቶጆ ቲዩብ
gojo media ጎጆ ሚዲያ
yneser
tireta media
ዱካ ሾው
endalk tube 2
arada plus tube
kumneger ቁም ነገር
ነበልባል media
ነበልባል
ትርታ ሚዲያ
hab media
ነበልባል ሚዲያ
የንስር አይን
ስለኛ ኑሮ
yneser ayne የንስር አይን
የንስር አይን ሚዲያ
ንጉስ ሚድያ - negus media
የንስር
ጎጆ ሚዲያ
dani royal
መፍትሔ ሚዲያ
ዮአዳን
ጎጆ
negus media
arada plus አራዳ ፕላስ 2
ebs
ሐረግ
addis radar
seifu
marakiweg
eyohamedia
daniroyal
arada plus 2
ynserayn
መፍትሔ
haymi tube ሀይሚ ቱዩብ
abtube
addiskmemoch
biruk tube ብሩክ ቱዩብ
ab tube
dukashow
leza
ab tube አብርሽ ቱዪብ
seifu on ebs
ab tube አብርሽ ቱዩብ today
#ዱካ_ሾው_duka_show
ንጉስ ሚዲያ negus media
yoadan
endalk tube
hareg
haymi tube ሀይሚ ቲዩብ
donkeytube
haymi tube
shegerinfo
endalktube
dani royal youtube
addis radar new
አዳኟ ሚዲያ
hab media አዳኙ
khlot
kumneger
dani royal and tsige royal
addisradar
ዱካ ሚዲያ
biruk tube
አብርሽ እና ሩታ
tofictube
ሩታ እና አብርሽ
ruta tube ሩታ ቲዩብ
fekiha show
addis radar youtube
ethiopian movies
አዳኟ
ድራማ
ruta tube
ጋዜጠኛው
dani royal new video
mikomikee
nebelbal
ጎጆ ቲዩብ
ethiomeznagna
marke tube
ዱካ ሾው /duka show
neblbale
@neblbale @ynserayne @dukashow33
rutatube
ዱካ ሾው duka
yegnashow
shegwrinfo
gojotube
slehiwot
aflafiker
ethio gojo tube
ቲዩብ
addisskmemoch
ethioinfo
ብሩክ ቱዩብ
maleda
ሐዲስ ዜማ ቱዩብ haddis zema tube
የንስር ሚዲያ
shegerdigtal
fani and samri
fani and samri new video
fikir tube fikir
fikir tube ፍቅር
fikr tube
haymi tube ሀይሚያ
marke tube ማርኬ ቱዩብ
marker tube
single tube
tsge royal
kumneger ቁም ነገር
nigus media
ፊልም
nigus media ንጉስ ሚዲያ
yneser ayne የንስር ዐይን 2
tirta media ትርታ ሚዲያ
hab media youtube
yoni magna
boby tube
donkey tube
ዱካ ቲዮብ
yneser ayne media
ንጉስ ሚድያ
yneser ayne new
ethiopian drama
ethiopian movie
lij bini tube
eyobel tube
eyobel tube-እዮቤል ቲዩብ
gojo media
hab media 2
hab media new
ሃብ ሚዲያ
አዳ
nebelbal media
nebelbal tube
published: 15 Jan 2025
views: 7113
2:22
১৮ জানুয়ারি হরতাল | HAB TV
নতুন কর, দ্রব্যমূল্যের ঊর্ধ্বগতি, হামলা-মামলা ও অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হ...
Play in Full Screen
১৮ জানুয়ারি হরতাল | HAB TV
১৮ জানুয়ারি হরতাল | HAB TV
নতুন কর, দ্রব্যমূল্যের ঊর্ধ্বগতি, হামলা-মামলা ও অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতালের ঘোষণা এসেছে।
আওয়ামী লীগের নেতাকর্মীরা কীভাবে মাঠে নামবে? সাধারণ জনগণ এই হরতালকে কীভাবে দেখছে? বিস্তারিত জানতে ভিডিওটি দেখুন।
বালাদেশে নতুন করে কর আরোপ, দ্রব্যমূল্যের ঊর্ধ্বগতি, রাজনৈতিক নির্যাতন, এবং অন্তর্বর্তী সরকারের পদত্যাগের দাবিতে শেখ হাসিনার নির্দেশে ১৮ জানুয়ারি হরতাল ঘোষণা করা হয়েছে।
এই ভিডিওতে আলোচনা করা হয়েছে:
✔ কেন ১৮ জানুয়ারি হরতাল ডাকলো আওয়ামী লীগ?
✔ শেখ হাসিনার নির্দেশনা কী ছিল?
✔ অন্তর্বর্তী সরকারের প্রতিক্রিয়া কী হতে পারে?
✔ আওয়ামী লীগের তৃণমূল কর্মীদের ভূমিকা কতটা গুরুত্বপূর্ণ?
✔ সাধারণ জনগণ কীভাবে এই হরতালকে গ্রহণ করবে?
📢 আপনার মতামত আমাদের জানান কমেন্টে!
👍 ভিডিওটি লাইক, শেয়ার এবং চ্যানেল সাবস্ক্রাইব করুন নতুন আপডেটের জন্য।
🔔 সর্বশেষ রাজনৈতিক বিশ্লেষণ ও সংবাদ পেতে চ্যানেলটি ফলো করুন।
#১৮জানুয়ারিহরতাল #শেখহাসিনা #বাংলাদেশরাজনীতি #আওয়ামীলীগ #bangladeshpolitics #politicalcrisis #hartal #protest #economy
More videos:
==========
https://www.youtube.com/watch?v=wfR3s-goQns
https://www.youtube.com/watch?v=1kVPo5cxzJk
https://www.youtube.com/watch?v=BjWOOCyqyw8
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#১৮জানুয়ারিহরতাল #শেখহাসিনা #বাংলাদেশরাজনীতি #আওয়ামীলীগ #hartal #bangladeshpolitics #protest #economiccrisis #government
5:53
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন নাজমুল | HAB TV 2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। দুর্নীতি, ক্ষমতার...
Play in Full Screen
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন নাজমুল | HAB TV 2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন নাজমুল | HAB TV 2025
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। দুর্নীতি, ক্ষমতার অপব্যবহার, এবং শেখ পরিবারের সম্পর্ক নিয়ে বিস্তারিত জানুন।
পার্থকে নিয়ে বিস্ফোরক তথ্য দিলেন ছাত্রলীগের সাবেক সাধারণ সম্পাদক নাজমুল। তিনি পার্থের দুর্নীতি, ক্ষমতার অপব্যবহার এবং শেখ পরিবারের সাথে তার সম্পর্ক নিয়ে মুখ খুলেছেন।
পার্থের বেনামি কোম্পানি, তারেক রহমানের সাথে টেন্ডারবাজি এবং সরকারের বিরুদ্ধে ষড়যন্ত্রের নেপথ্য কাহিনী জানতে দেখুন।
👉 আপনার মতামত কমেন্টে জানান এবং ভিডিওটি শেয়ার করতে ভুলবেন না।
📢 নতুন আপডেট পেতে চ্যানেলটি সাবস্ক্রাইব করুন।
#পার্থদুর্নীতি #পার্থনাজমুল #শেখহাসিনা #দুর্নীতিকাহিনী #বাংলাদেশরাজনীতি #বাংলাদেশনিউজ #partho #nazmul
Explosive revelations by ex-BCL leader Nazmul on Partha. Corruption, misuse of power, and ties with Sheikh family exposed.
Former BCL leader Nazmul reveals shocking truths about Andalib Partha. Corruption, misuse of power, and connections with Sheikh family exposed.
Learn about Partha’s shady deals, ties with Tarique Rahman, and behind-the-scenes conspiracies against the government.
👉 Share your thoughts in the comments and don’t forget to subscribe for updates!
#AndalibPartha #NazmulRevelations #SheikhHasina #CorruptionInPolitics #PoliticalScandal #BangladeshNews #ParthaControversy
More videos:
==========
https://youtu.be/n9Vre64e6-g?si=YjQdOT4eK0ep641Z
https://youtu.be/lJUEF5IKjB0?si=7dxZ7R4rmoVmliwL
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#পার্থ #নাজমুল #বিস্ফোরকতথ্য #বাংলাদেশ #রাজনীতি #তথ্য #বিশ্লেষণ #সংবাদ #বাংলা #politicalscandals #corruptionexposed #bangladeshnews #nazmul #awamiligue
3:33
তদন্তের মুখে পিটার হাস | HAB TV 2025
তদন্তের মুখে পিটার হাস: বাংলাদেশে আলোচিত-সমালোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস তদন্ত...
Play in Full Screen
তদন্তের মুখে পিটার হাস | HAB TV 2025
তদন্তের মুখে পিটার হাস | HAB TV 2025
তদন্তের মুখে পিটার হাস: বাংলাদেশে আলোচিত-সমালোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস তদন্তের মুখে পড়তে যাচ্ছেন। তার নতুন চাকরি ও বিধি বহির্ভূত কার্যক্রম নিয়ে যুক্তরাষ্ট্রে শুরু হয়েছে আলোচনা। বিস্তারিত জানতে দেখুন এই ভিডিও।
👉 সাবস্ক্রাইব করুন এবং আপনার মতামত জানান।
বাংলাদেশে আলোচিত সাবেক মার্কিন রাষ্ট্রদূত পিটার হাস এবার মার্কিন তদন্তের মুখোমুখি। তার এক্সিলারেট এনার্জিতে যোগদান, বিধি বহির্ভূত কার্যক্রম, এবং বাংলাদেশের অভ্যন্তরীণ বিষয়ে হস্তক্ষেপ নিয়ে চলছে আলোচনা। এই ভিডিওতে বিস্তারিত বিশ্লেষণ থাকছে।
👉 আপনার মতামত আমাদের জানাতে ভুলবেন না। ভিডিওটি শেয়ার করে আমাদের সমর্থন করুন।
Former U.S. Ambassador to Bangladesh, Peter Haas, faces scrutiny over his new job and alleged breaches of ethical guidelines. Learn the full story in this video.
👉 Subscribe and share your thoughts!
Former U.S. Ambassador Peter Haas is under investigation for alleged violations of U.S. ethics rules. His role in Bangladesh’s internal affairs and subsequent employment at Excelerate Energy have raised significant questions. Watch this video for an in-depth analysis.
👉 Don’t forget to share your thoughts and support by sharing the video!
#PeterHaas #USDiplomacy #BangladeshPolitics #ExcelerateEnergy #PoliticalAnalysis #BangladeshNews #KothaKoileMarbenNaTo
More videos:
==========
https://youtu.be/n9Vre64e6-g?si=YjQdOT4eK0ep641Z
https://youtu.be/lJUEF5IKjB0?si=7dxZ7R4rmoVmliwL
Visit us:
======
https://www.facebook.com/habtvonline
https://www.tiktok.com/tiktokstudio
https://x.com/HabTvuk
Disclaimer:
=========
This channel may use copyrighted materials under “Fair Dealing” as per UK copyright law (Section 30 of the UK Copyright, Designs, and Patents Act 1988), allowing limited use for criticism, review, news reporting, and research. Viewers outside the UK should note that content use aligns with UK legal standards.
Content is provided for general information and does not constitute professional advice. We strive for accuracy but cannot guarantee it. Views expressed may not reflect our team’s opinions.
If you are a copyright holder with concerns, please contact us for resolution.
All Rights Reserved. ©2024 HAB TV Online
#peterhaas #usambassador #bangladeshpolitics #excelencia #politicalscandals #usforeignpolicy #ethics #bangladeshnews #globalpolitics #usa #পিটারহাস
25:32
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
Play in Full Screen
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
እቤቱ ካከራያት ሴት ልጅ ጋር ከሚስቱ ተደብቆ ያዝነው ሃብ ሚዲያ hab media ethio cheaters ethiopia
11:15
I FOUND THE LONGEST ELEVATOR IN MINECRAFT
Today, something really strange has happened. An ominous floating structure has appeared o...
Play in Full Screen
I FOUND THE LONGEST ELEVATOR IN MINECRAFT
I FOUND THE LONGEST ELEVATOR IN MINECRAFT
Today, something really strange has happened. An ominous floating structure has appeared overnight! What could it be? There's a Do Not Enter sign, but I'm so curious to see what could be up there. What if there's some amazing treasure up there!? I hope we don't regret this...
We hope you enjoy our videos! Have a great day!
Maizen Merchandise ► https://shop-maizen.myspreadshop.com/
17:04
የተከታተልናቸው ሰዎች ጥቃት ፈፀሙብን | ከአዳኙ ጋር የተደረገ ቆይታ | hab media | ሃብ ሚዲያ |
ከዚህም ከዚያም የተለያዩ አዝናኝ፣ አስገራሚ፣ ወቅታዊ እና አስተማሪ ጉዳዮች የሚቀርቡበት ቻናል ነው። ሰብስክራይብ በማድረግ ቤተሰብ እንዲሆኑ በ...
Play in Full Screen
የተከታተልናቸው ሰዎች ጥቃት ፈፀሙብን | ከአዳኙ ጋር የተደረገ ቆይታ | hab media | ሃብ ሚዲያ |
የተከታተልናቸው ሰዎች ጥቃት ፈፀሙብን | ከአዳኙ ጋር የተደረገ ቆይታ | hab media | ሃብ ሚዲያ |
ከዚህም ከዚያም የተለያዩ አዝናኝ፣ አስገራሚ፣ ወቅታዊ እና አስተማሪ ጉዳዮች የሚቀርቡበት ቻናል ነው። ሰብስክራይብ በማድረግ ቤተሰብ እንዲሆኑ በአክብሮት እንጋብዛለን።
Kezim Keziam is a channel which presents entertainment, educational and other issues. Please subscribe and join our channel.
1:27
HAB
Dip in 1 - Unit 1 - Lesson 1
HAB
Copyright © Školska knjiga d.d. (uploaded with permission...
Play in Full Screen
HAB
HAB
Dip in 1 - Unit 1 - Lesson 1
HAB
Copyright © Školska knjiga d.d. (uploaded with permission)
(Upscaled to FHD)
Watch! Pogledaj!
24:39
💫ብሩክ እና ሀይሚ በጣም አብዝታቹታል ከዚ በሃላ !!😡
@BirukTube- @Haymitube01 @Hab_Tube @EBSDocumentary @EBSKids @seifuonebs @comedianeshetu
Play in Full Screen
💫ብሩክ እና ሀይሚ በጣም አብዝታቹታል ከዚ በሃላ !!😡
💫ብሩክ እና ሀይሚ በጣም አብዝታቹታል ከዚ በሃላ !!😡
@BirukTube- @Haymitube01 @Hab_Tube @EBSDocumentary @EBSKids @seifuonebs @comedianeshetu
0:26
Gema Setahon dalam HAB KEMENAG ke-79 #sekolah #sekolahtamankanakkanak #kelas #sekolahtk #anak #taman
Play in Full Screen
Gema Setahon dalam HAB KEMENAG ke-79 #sekolah #sekolahtamankanakkanak #kelas #sekolahtk #anak #taman
Gema Setahon dalam HAB KEMENAG ke-79 #sekolah #sekolahtamankanakkanak #kelas #sekolahtk #anak #taman
37:55
🔴ዲያስፖራው የካዱትን ሚስቱንናጓደኛው ይቅርታ አድርጎላቸው አጋባቸው Hab media /ዱካ_ሾው_duka_showዲያስፖራው#ethiopianmovie
#ethiopianmovie
@ynserayne @Dukashow33 @LezaTubeOfficial @fermatatube1
yneser ayne የንስር...
Play in Full Screen
🔴ዲያስፖራው የካዱትን ሚስቱንናጓደኛው ይቅርታ አድርጎላቸው አጋባቸው Hab media /ዱካ_ሾው_duka_showዲያስፖራው#ethiopianmovie
🔴ዲያስፖራው የካዱትን ሚስቱንናጓደኛው ይቅርታ አድርጎላቸው አጋባቸው Hab media /ዱካ_ሾው_duka_showዲያስፖራው#ethiopianmovie
#ethiopianmovie
@ynserayne @Dukashow33 @LezaTubeOfficial @fermatatube1
yneser ayne የንስር ዐይን
ab tube አብርሽ ቱዩብ
duka show
eyoha media
duka show new
duka show today
yneser ayne
tireta media ትርታ ሚዲያ
ዱካ ሾው duka show
sheger info
tireta media ትርታ ሚዲያ 2
ዱካው ሾው
hab media ሃብ ሚዲያ
ዱካ
ዱካ tube
arada plus
gojo tube
gojo tube new
gojo tube ቶጆ ቲዩብ
gojo media ጎጆ ሚዲያ
yneser
tireta media
ዱካ ሾው
endalk tube 2
arada plus tube
kumneger ቁም ነገር
ነበልባል media
ነበልባል
ትርታ ሚዲያ
hab media
ነበልባል ሚዲያ
የንስር አይን
ስለኛ ኑሮ
yneser ayne የንስር አይን
የንስር አይን ሚዲያ
ንጉስ ሚድያ - negus media
የንስር
ጎጆ ሚዲያ
dani royal
መፍትሔ ሚዲያ
ዮአዳን
ጎጆ
negus media
arada plus አራዳ ፕላስ 2
ebs
ሐረግ
addis radar
seifu
marakiweg
eyohamedia
daniroyal
arada plus 2
ynserayn
መፍትሔ
haymi tube ሀይሚ ቱዩብ
abtube
addiskmemoch
biruk tube ብሩክ ቱዩብ
ab tube
dukashow
leza
ab tube አብርሽ ቱዪብ
seifu on ebs
ab tube አብርሽ ቱዩብ today
#ዱካ_ሾው_duka_show
ንጉስ ሚዲያ negus media
yoadan
endalk tube
hareg
haymi tube ሀይሚ ቲዩብ
donkeytube
haymi tube
shegerinfo
endalktube
dani royal youtube
addis radar new
አዳኟ ሚዲያ
hab media አዳኙ
khlot
kumneger
dani royal and tsige royal
addisradar
ዱካ ሚዲያ
biruk tube
አብርሽ እና ሩታ
tofictube
ሩታ እና አብርሽ
ruta tube ሩታ ቲዩብ
fekiha show
addis radar youtube
ethiopian movies
አዳኟ
ድራማ
ruta tube
ጋዜጠኛው
dani royal new video
mikomikee
nebelbal
ጎጆ ቲዩብ
ethiomeznagna
marke tube
ዱካ ሾው /duka show
neblbale
@neblbale @ynserayne @dukashow33
rutatube
ዱካ ሾው duka
yegnashow
shegwrinfo
gojotube
slehiwot
aflafiker
ethio gojo tube
ቲዩብ
addisskmemoch
ethioinfo
ብሩክ ቱዩብ
maleda
ሐዲስ ዜማ ቱዩብ haddis zema tube
የንስር ሚዲያ
shegerdigtal
fani and samri
fani and samri new video
fikir tube fikir
fikir tube ፍቅር
fikr tube
haymi tube ሀይሚያ
marke tube ማርኬ ቱዩብ
marker tube
single tube
tsge royal
kumneger ቁም ነገር
nigus media
ፊልም
nigus media ንጉስ ሚዲያ
yneser ayne የንስር ዐይን 2
tirta media ትርታ ሚዲያ
hab media youtube
yoni magna
boby tube
donkey tube
ዱካ ቲዮብ
yneser ayne media
ንጉስ ሚድያ
yneser ayne new
ethiopian drama
ethiopian movie
lij bini tube
eyobel tube
eyobel tube-እዮቤል ቲዩብ
gojo media
hab media 2
hab media new
ሃብ ሚዲያ
አዳ
nebelbal media
nebelbal tube
');
} 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));
}
});
});
});
// -->
First Day
by:
The Elms
All I want is someone real. Someone to hold a candle with me, let the night fires burn. It's not what I choose, it's what I feel. And if we don't see eye to eye, you go your way, I'll go mine. And that's alright. So raise the glass and look right past the time you've thrown away. The tragedies and enemies, the debts you'll never pay. Understand its in your hand to turn the other way, And make tomorrow the first day. A person's love. A starry night. All wonderful, but none as grand as the man who chooses life. And we compete in word and deed. You think we'd learn by now that's not what people need, But that's our style. Birds take to the sky, we open our eyes. You're saying hello, I'm waving goodbye to the old days.