'+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; })); }); -->

WBFF

WBFF, channel 45, is a Fox-affiliated television station located in Baltimore, Maryland, United States. WBFF is the flagship station of the locally based Sinclair Broadcast Group, which also operates MyNetworkTV affiliate WUTB (channel 24) and CW affiliate WNUV (channel 54), through respective local marketing agreements with Deerfield Media and Cunningham Broadcasting. All three share studios, while WBFF and WNUV share transmitter facilities on 41st Street off the Jones Falls Expressway on the landmark "Television Hill"(shared with WJZ-TV and WBAL-TV) in the Woodberry section of north Baltimore.

History

WBFF signed on on April 11, 1971, founded by what was then called the Chesapeake Television Corporation, which was controlled by Julian Sinclair Smith. It was Baltimore's second commercial UHF station and second independent station, signing on four years after WMET-TV (channel 24, frequency now occupied by WUTB) began operations. Both stations aired general entertainment programming, but WMET's owners experienced financial problems and were forced to take their station off the air in 1972.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/WBFF

Podcasts:

  • WBFF Worlds Vegas - Anthony Lolli

    In our Super Lollis documentary we're taking you on a journey through the inspiring story of bodybuilder Anthony Lolli and his wife Tereza Hakobyan-Lolli. After losing over 300lbs and undergoing skin removal surgery, Anthony set his sights on becoming a muscle model pro. We're following Anthony as he competes in multiple body building shows, showcasing his incredible transformation and dedication to achieving his goals. You'll see the challenges he faces as he works towards becoming a top competitor in the muscle model division, including the crucial role of posing and presentation on stage. We also share the importance of having a posing coach when competing in bodybuilding shows. You'll see first hand how Anthony's posing coach has helped him refine his presentation and bring out the b...

    published: 13 Mar 2023
  • SHOW - Wbff Australia

    Live entertainment for the WBFF Australia held in the Gold Coast Casino "The Star" This Video is the opener for the show. Suspenseful and Dynamic this style of Video is great for the World Fitness & Fashion Industry. Video by Shenden Kuhne Vos Films

    published: 02 Jun 2020
  • The WBFF 2018 WBFF Worlds Las Vegas Male Models

    www.wbffshows.com

    published: 03 Sep 2018
  • Debate heats up over entitlement spending's role in Maryland's $3 billion budget shortfall

    Gov. Wes Moore will unveil his proposal to close the state’s nearly $3 billion budget deficit, but depending on who you talk to, the reason why Maryland is facing the massive financial hole is up for debate. When lawmakers arrived back at the State House on the first day of session, there had already been talk about how the General Assembly and Gov. Moore would address the looming budget crisis. Gov. Moore said in an interview that he planned to introduce $2 billion in cuts, leaving the additional $1 billion to make up the difference a big unanswered question in Annapolis. Republicans, however, were quick to point to their counterparts on the other side of the aisle. READ MORE: https://foxbaltimore.com/news/local/debate-heats-up-over-entitlement-spendings-role-in-marylands-3-billion-budg...

    published: 13 Jan 2025
  • WBFF FOX45 Baltimore launches most advanced studio in Maryland

    For immediate release (September 06, 2018): WBFF, Defining the Future of Broadcast Set Design The team at Sinclair Broadcast Group’s flagship station WBFF, a FOX affiliate which serves the Baltimore area, challenged the Devlin Design Group to use ‘next-generation’ thinking to create a scenic storytelling environment that showcases the latest in technology, and increases production values. It was important the set embrace viewers by capturing the vibe of this station’s dedication to its community, to capture Baltimore and the station’s history. “Sinclair Broadcast Group has been at the forefront of industry-changing events and technological advances. For our ‘home office’ we had to have a high-tech information hub for WBFF’s dynamic news operation. Team DDG delivered a design that energi...

    published: 07 Sep 2018
  • Fitness and muscle Models | WBFF #backstage #fitnessmodels #muscle #fitnessmotivation

    published: 04 May 2023
  • Maryland courts decline comment after ruling allows juvenile rapist to attend school

    A Maryland lawmaker says Annapolis must take action after a Baltimore City judge ended probation for a juvenile rapist, allowing the teenager to return to class with other students. Circuit Court Judge Charles Blomquist’s decision comes just one year after Maryland’s legislature passed a new law designed to keep juvenile sex offenders out of schools. READ MORE: https://foxbaltimore.com/news/project-baltimore/maryland-courts-decline-comment-after-ruling-allows-juvenile-rapist-to-attend-school-johnny-ray-salling-charles-blomquist-carey-wright-baltimore-city-schools-patterson-high-school# _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzB...

    published: 16 Jan 2025
  • Family says unserved warrant cost father his life, Mayor questioned on issue

    It's been two months since Baltimore Police say Paul Lee, 33, was shot and killed by his neighbor Tyrone Epps, 62, inside the Johnston Square Apartments. The day before Lee’s funeral his brother and mother expressed their heartache and anger after court records revealed Epps was already wanted by police for a felony assault and home invasion that had occurred at the same location six months before Lee’s murder. READ MORE: https://foxbaltimore.com/news/local/family-says-unserved-warrant-cost-father-his-life-mayor-questioned-on-issue _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https:...

    published: 14 Jan 2025
  • Pastor PM Smith talks budget shortfall

    Governor Wes Moore is slated to give his budget proposal for fiscal year 2026. Community leader, Pastor P.M. Smith, joined FOX45 Morning News to weigh in on the the budget shortfall and the Governor's goals for the future. https://foxbaltimore.com/fox45-mornings/governor-moore-to-present-2026-budget-proposal-amid-concerns-of-a-fiscal-shortfall _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.c...

    published: 15 Jan 2025
  • Grief and solace: community rallies around family after McDonald's shooting tragedy

    At the McDonald's on Reisterstown Road near Cold Spring Lane, customers continue to come and go, but the restaurant and its surrounding community are still reeling from a tragic event. On Sunday, a deadly shooting took the life of 38-year-old Jamal Davis, a security guard at the restaurant, after a physical altercation erupted around 4 p.m. In the aftermath, an outpouring of support has emerged for the staff and community members affected by the incident. Baltimore City Police Department chaplains, commanders, officers, and local ministers gathered at the restaurant on Wednesday to offer comfort and solace. READ MORE: https://foxbaltimore.com/news/local/grief-and-solace-community-rallies-around-family-after-mcdonalds-shooting-tragedy# _______________ Stay up to date with our social media...

    published: 16 Jan 2025
developed with YouTube
WBFF Worlds Vegas - Anthony Lolli
1:03

WBFF Worlds Vegas - Anthony Lolli

  • Order:
  • Duration: 1:03
  • Uploaded Date: 13 Mar 2023
  • views: 24871
In our Super Lollis documentary we're taking you on a journey through the inspiring story of bodybuilder Anthony Lolli and his wife Tereza Hakobyan-Lolli. After losing over 300lbs and undergoing skin removal surgery, Anthony set his sights on becoming a muscle model pro. We're following Anthony as he competes in multiple body building shows, showcasing his incredible transformation and dedication to achieving his goals. You'll see the challenges he faces as he works towards becoming a top competitor in the muscle model division, including the crucial role of posing and presentation on stage. We also share the importance of having a posing coach when competing in bodybuilding shows. You'll see first hand how Anthony's posing coach has helped him refine his presentation and bring out the best in his physique. So if you're interested in bodybuilding, fitness, or just looking for some inspiration, be sure to watch this video. You'll witness the incredible transformation of a man who refused to give up on his dreams, and learn about the crucial role of posing coaches in bodybuilding competitions. Thanks for watching, and don't forget to like, comment, and subscribe for more content like this.
https://wn.com/Wbff_Worlds_Vegas_Anthony_Lolli
SHOW - Wbff Australia
1:01

SHOW - Wbff Australia

  • Order:
  • Duration: 1:01
  • Uploaded Date: 02 Jun 2020
  • views: 23297
Live entertainment for the WBFF Australia held in the Gold Coast Casino "The Star" This Video is the opener for the show. Suspenseful and Dynamic this style of Video is great for the World Fitness & Fashion Industry. Video by Shenden Kuhne Vos Films
https://wn.com/Show_Wbff_Australia
The WBFF 2018 WBFF Worlds Las Vegas Male Models
0:55

The WBFF 2018 WBFF Worlds Las Vegas Male Models

  • Order:
  • Duration: 0:55
  • Uploaded Date: 03 Sep 2018
  • views: 1598
www.wbffshows.com
https://wn.com/The_Wbff_2018_Wbff_Worlds_Las_Vegas_Male_Models
Debate heats up over entitlement spending's role in Maryland's $3 billion budget shortfall
7:51

Debate heats up over entitlement spending's role in Maryland's $3 billion budget shortfall

  • Order:
  • Duration: 7:51
  • Uploaded Date: 13 Jan 2025
  • views: 7727
Gov. Wes Moore will unveil his proposal to close the state’s nearly $3 billion budget deficit, but depending on who you talk to, the reason why Maryland is facing the massive financial hole is up for debate. When lawmakers arrived back at the State House on the first day of session, there had already been talk about how the General Assembly and Gov. Moore would address the looming budget crisis. Gov. Moore said in an interview that he planned to introduce $2 billion in cuts, leaving the additional $1 billion to make up the difference a big unanswered question in Annapolis. Republicans, however, were quick to point to their counterparts on the other side of the aisle. READ MORE: https://foxbaltimore.com/news/local/debate-heats-up-over-entitlement-spendings-role-in-marylands-3-billion-budget-shortfall# _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.com Call the Newsroom: 410.467.5595 WBFF is a Maryland-based station and a FOX Television affiliate owned and operated by Sinclair Broadcast Group. #news #trending #breakingnews #Baltimore #Maryland
https://wn.com/Debate_Heats_Up_Over_Entitlement_Spending's_Role_In_Maryland's_3_Billion_Budget_Shortfall
WBFF FOX45 Baltimore launches most advanced studio in Maryland
1:07

WBFF FOX45 Baltimore launches most advanced studio in Maryland

  • Order:
  • Duration: 1:07
  • Uploaded Date: 07 Sep 2018
  • views: 4255
For immediate release (September 06, 2018): WBFF, Defining the Future of Broadcast Set Design The team at Sinclair Broadcast Group’s flagship station WBFF, a FOX affiliate which serves the Baltimore area, challenged the Devlin Design Group to use ‘next-generation’ thinking to create a scenic storytelling environment that showcases the latest in technology, and increases production values. It was important the set embrace viewers by capturing the vibe of this station’s dedication to its community, to capture Baltimore and the station’s history. “Sinclair Broadcast Group has been at the forefront of industry-changing events and technological advances. For our ‘home office’ we had to have a high-tech information hub for WBFF’s dynamic news operation. Team DDG delivered a design that energizes the entire staff and serves the community. The historic touches throughout the set honor the heritage of Baltimore and our founder,” said Mark Nadeau, Sinclair Broadcast Group, Director of TV Production. Baltimore has been called a "city of neighborhoods” with 72 designated historic districts. The streets are lined with thousands of distinctive red brick rowhouses which architecturally define the city. The scenic team spent painstaking hours to accurately portray the red brick appearing on accent walls throughout the design. The vision: A design with not only tech, but also flexibility, depth and character, allowing WBFF to move and enhance the way they tell stories. An added benefit, was the combination of the designs layout, the scale of the sets architecture, and the creative integration, which has created a very intimate feeling on the set. This keeps the focus on talent, and gives them a very user friendly, fluid, storytelling environment. The layout includes a large main news area and lifestyle set. Here’s how the design works: The flexibility includes a complement of stages with impressive technology. Three LED arrays behind the main desk feature the latest in video technology. There is a large storytelling wall for ‘the big story’ with fourteen monitors configured in a 7x2 array. The multipurpose area has a triplet of 75” portrait monitors for more intimate storytelling. The weather area has its own impressive 4x2 array. The main desk and weather desk include monitors for branding. The lifestyle set has three, 75” monitors for the display of video and graphics. The Maryland State and Baltimore City flags are represented in the design. The vertical bars appearing in the RGB LED color-changing backlit walls, especially prominent on the lifestyle set, represent the Calvert family name of the Lords of Baltimore who founded Maryland. The cross bottony symbol which appears in the hanging etched glass panels represent the Crossland family, namely the mother of Lord Baltimore. The set valance features an artistic interpretation of electrical analog symbols to honor of the founder of Sinclair Broadcast Group, Julian Sinclair Smith, who began his career as an electrical engineer before becoming a television executive. “Sinclair Broadcast Group is dedicated to developing the next generation of broadcasting. We are thrilled to partner with them to help define the future,” said Kartik Dakshinamoorthy, Devlin Design Group, VP Scenic Design. Devlin Design Group is one of the most influential set design and lighting design firms in the world. They are renowned for their iconic sets, expert scenic lighting and their commitment to design excellence, creativity, knowledge and innovation. For more information, contact Diane ‘DiFi’ Fiolek. 248.875.9565 difi@ddgtv.com -###- _______________ Stay up to date with our social media: WBFF on Facebook: https://www.facebook.com/FOXBaltimore/ WBFF on Twitter: https://twitter.com/FOXBaltimore Subscribe to WBFF on YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.com Call the Newsroom: 410.467.5595 WBFF is a MD based station and a FOX Television affiliate owned and operated by Sinclair Broadcast Group. #WBFF #foxbaltimore #fox45news
https://wn.com/Wbff_Fox45_Baltimore_Launches_Most_Advanced_Studio_In_Maryland
Fitness and muscle Models | WBFF #backstage #fitnessmodels #muscle #fitnessmotivation
0:27

Fitness and muscle Models | WBFF #backstage #fitnessmodels #muscle #fitnessmotivation

  • Order:
  • Duration: 0:27
  • Uploaded Date: 04 May 2023
  • views: 2037
https://wn.com/Fitness_And_Muscle_Models_|_Wbff_Backstage_Fitnessmodels_Muscle_Fitnessmotivation
Maryland courts decline comment after ruling allows juvenile rapist to attend school
5:59

Maryland courts decline comment after ruling allows juvenile rapist to attend school

  • Order:
  • Duration: 5:59
  • Uploaded Date: 16 Jan 2025
  • views: 3066
A Maryland lawmaker says Annapolis must take action after a Baltimore City judge ended probation for a juvenile rapist, allowing the teenager to return to class with other students. Circuit Court Judge Charles Blomquist’s decision comes just one year after Maryland’s legislature passed a new law designed to keep juvenile sex offenders out of schools. READ MORE: https://foxbaltimore.com/news/project-baltimore/maryland-courts-decline-comment-after-ruling-allows-juvenile-rapist-to-attend-school-johnny-ray-salling-charles-blomquist-carey-wright-baltimore-city-schools-patterson-high-school# _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.com Call the Newsroom: 410.467.5595 WBFF is a Maryland-based station and a FOX Television affiliate owned and operated by Sinclair Broadcast Group. #news #trending #breakingnews #Baltimore #Maryland
https://wn.com/Maryland_Courts_Decline_Comment_After_Ruling_Allows_Juvenile_Rapist_To_Attend_School
Family says unserved warrant cost father his life, Mayor questioned on issue
4:35

Family says unserved warrant cost father his life, Mayor questioned on issue

  • Order:
  • Duration: 4:35
  • Uploaded Date: 14 Jan 2025
  • views: 10767
It's been two months since Baltimore Police say Paul Lee, 33, was shot and killed by his neighbor Tyrone Epps, 62, inside the Johnston Square Apartments. The day before Lee’s funeral his brother and mother expressed their heartache and anger after court records revealed Epps was already wanted by police for a felony assault and home invasion that had occurred at the same location six months before Lee’s murder. READ MORE: https://foxbaltimore.com/news/local/family-says-unserved-warrant-cost-father-his-life-mayor-questioned-on-issue _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.com Call the Newsroom: 410.467.5595 WBFF is a Maryland-based station and a FOX Television affiliate owned and operated by Sinclair Broadcast Group. #news #trending #breakingnews #Baltimore #Maryland
https://wn.com/Family_Says_Unserved_Warrant_Cost_Father_His_Life,_Mayor_Questioned_On_Issue
Pastor PM Smith talks budget shortfall
3:31

Pastor PM Smith talks budget shortfall

  • Order:
  • Duration: 3:31
  • Uploaded Date: 15 Jan 2025
  • views: 595
Governor Wes Moore is slated to give his budget proposal for fiscal year 2026. Community leader, Pastor P.M. Smith, joined FOX45 Morning News to weigh in on the the budget shortfall and the Governor's goals for the future. https://foxbaltimore.com/fox45-mornings/governor-moore-to-present-2026-budget-proposal-amid-concerns-of-a-fiscal-shortfall _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.com Call the Newsroom: 410.467.5595 WBFF is a Maryland-based station and a FOX Television affiliate owned and operated by Sinclair Broadcast Group. #news #trending #breakingnews #Baltimore #Maryland
https://wn.com/Pastor_Pm_Smith_Talks_Budget_Shortfall
Grief and solace: community rallies around family after McDonald's shooting tragedy
3:20

Grief and solace: community rallies around family after McDonald's shooting tragedy

  • Order:
  • Duration: 3:20
  • Uploaded Date: 16 Jan 2025
  • views: 1082
At the McDonald's on Reisterstown Road near Cold Spring Lane, customers continue to come and go, but the restaurant and its surrounding community are still reeling from a tragic event. On Sunday, a deadly shooting took the life of 38-year-old Jamal Davis, a security guard at the restaurant, after a physical altercation erupted around 4 p.m. In the aftermath, an outpouring of support has emerged for the staff and community members affected by the incident. Baltimore City Police Department chaplains, commanders, officers, and local ministers gathered at the restaurant on Wednesday to offer comfort and solace. READ MORE: https://foxbaltimore.com/news/local/grief-and-solace-community-rallies-around-family-after-mcdonalds-shooting-tragedy# _______________ Stay up to date with our social media: Facebook: https://www.facebook.com/FOXBaltimore/ Twitter: https://twitter.com/FOXBaltimore YouTube: https://www.youtube.com/channel/UC-H-L8u8PzzgdAzBLrqU6PQ/?sub_confirmation=1 Daily News Digest: https://www.youtube.com/playlist?list=PLxLnRTTQfTjGrLqJJqi6qgKfY_LR70Q7y For more information, visit https://foxbaltimore.com/ Have a news tip? Send it directly to us: Email us: news@foxbaltimore.com Call the Newsroom: 410.467.5595 WBFF is a Maryland-based station and a FOX Television affiliate owned and operated by Sinclair Broadcast Group. #news #trending #breakingnews #Baltimore #Maryland
https://wn.com/Grief_And_Solace_Community_Rallies_Around_Family_After_Mcdonald's_Shooting_Tragedy
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • WBFF Worlds Vegas - Anthony Lolli
    1:03
    WBFF Worlds Vegas - Anthony Lolliremove from playlist
  • SHOW - Wbff Australia
    1:01
    SHOW - Wbff Australiaremove from playlist
  • Debate heats up over entitlement spending's role in Maryland's $3 billion budget shortfall
    7:51
    Debate heats up over entitlement spending's role in Maryland's $3 billion budget shortfallremove from playlist
  • WBFF FOX45 Baltimore launches most advanced studio in Maryland
    1:07
    WBFF FOX45 Baltimore launches most advanced studio in Marylandremove from playlist
  • Maryland courts decline comment after ruling allows juvenile rapist to attend school
    5:59
    Maryland courts decline comment after ruling allows juvenile rapist to attend schoolremove from playlist
  • Family says unserved warrant cost father his life, Mayor questioned on issue
    4:35
    Family says unserved warrant cost father his life, Mayor questioned on issueremove from playlist
  • Pastor PM Smith talks budget shortfall
    3:31
    Pastor PM Smith talks budget shortfallremove from playlist
  • Grief and solace: community rallies around family after McDonald's shooting tragedy
    3:20
    Grief and solace: community rallies around family after McDonald's shooting tragedyremove from playlist
developed with YouTube
PLAYLIST TIME:

WBFF Worlds Vegas - Anthony Lolli

In our Super Lollis documentary we're taking you on a journey through the inspiring story of bodybuilder Anthony Lolli and his wife Tereza Hakobyan-Lolli. After losing over 300lbs and undergoing skin removal surgery, Anthony set his sights on becoming a muscle model pro. We're following Anthony as he competes in multiple body building shows, showcasing his incredible transformation and dedication to achieving his goals. You'll see the challenges he faces as he works towards becoming a top competitor in the muscle model division, including the crucial role of posing and presentation on stage. We also share the importance of having a posing coach when competing in bodybuilding shows. You'll see first hand how Anthony's posing coach has helped him refine his presentation and bring out the best in his physique. So if you're interested in bodybuilding, fitness, or just looking for some inspiration, be sure to watch this video. You'll witness the incredible transformation of a man who refused to give up on his dreams, and learn about the crucial role of posing coaches in bodybuilding competitions. Thanks for watching, and don't forget to like, comment, and subscribe for more content like this.
1:03
WBFF Worlds Vegas - Anthony Lolli
In our Super Lollis documentary we're taking you on a journey through the inspiring story ...
published: 13 Mar 2023
Play in Full Screen
1:01
SHOW - Wbff Australia
Live entertainment for the WBFF Australia held in the Gold Coast Casino "The Star" This Vi...
published: 02 Jun 2020
Play in Full Screen
0:55
The WBFF 2018 WBFF Worlds Las Vegas Male Models
www.wbffshows.com
published: 03 Sep 2018
Play in Full Screen
7:51
Debate heats up over entitlement spending's role in Maryland's $3 billion budget shortfall
Gov. Wes Moore will unveil his proposal to close the state’s nearly $3 billion budget defi...
published: 13 Jan 2025
Play in Full Screen
1:07
WBFF FOX45 Baltimore launches most advanced studio in Maryland
For immediate release (September 06, 2018): WBFF, Defining the Future of Broadcast Set D...
published: 07 Sep 2018
Play in Full Screen
0:27
Fitness and muscle Models | WBFF #backstage #fitnessmodels #muscle #fitnessmotivation
published: 04 May 2023
Play in Full Screen
5:59
Maryland courts decline comment after ruling allows juvenile rapist to attend school
A Maryland lawmaker says Annapolis must take action after a Baltimore City judge ended pro...
published: 16 Jan 2025
Play in Full Screen
4:35
Family says unserved warrant cost father his life, Mayor questioned on issue
It's been two months since Baltimore Police say Paul Lee, 33, was shot and killed by his n...
published: 14 Jan 2025
Play in Full Screen
3:31
Pastor PM Smith talks budget shortfall
Governor Wes Moore is slated to give his budget proposal for fiscal year 2026. Community ...
published: 15 Jan 2025
Play in Full Screen
3:20
Grief and solace: community rallies around family after McDonald's shooting tragedy
At the McDonald's on Reisterstown Road near Cold Spring Lane, customers continue to come a...
published: 16 Jan 2025
Play in Full Screen

WBFF

WBFF, channel 45, is a Fox-affiliated television station located in Baltimore, Maryland, United States. WBFF is the flagship station of the locally based Sinclair Broadcast Group, which also operates MyNetworkTV affiliate WUTB (channel 24) and CW affiliate WNUV (channel 54), through respective local marketing agreements with Deerfield Media and Cunningham Broadcasting. All three share studios, while WBFF and WNUV share transmitter facilities on 41st Street off the Jones Falls Expressway on the landmark "Television Hill"(shared with WJZ-TV and WBAL-TV) in the Woodberry section of north Baltimore.

History

WBFF signed on on April 11, 1971, founded by what was then called the Chesapeake Television Corporation, which was controlled by Julian Sinclair Smith. It was Baltimore's second commercial UHF station and second independent station, signing on four years after WMET-TV (channel 24, frequency now occupied by WUTB) began operations. Both stations aired general entertainment programming, but WMET's owners experienced financial problems and were forced to take their station off the air in 1972.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/WBFF
'); } 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(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: wbff

Edit

WBFF Reporter Has Live Shot Disrupted by Leaf Blower Protest

Adweek 10 Dec 2024
WBFF reporter Shannon Lilly was doing a live shot outside the ...
Edit

WBFF/FOX 45 Baltimore to Launch “Spotlight on Maryland” Investigative Journalism Unit Focused on Governmental Inefficiencies (Sinclair Broadcast Group LLC)

Public Technologies 21 Oct 2024
"Spotlight on Maryland" will continue WBFF's legacy of advocating for the community with unique reporting on under-examined arenas, sparking much-needed public engagement on governmental abuses, and holding elected officials accountable.
Edit

WBFF’s Project Baltimore Wins National News Emmy® Award

Business Wire 27 Sep 2024
BALTIMORE--(BUSINESS WIRE)--Sinclair is pleased to announce Project Baltimore, the special ...
Edit

WBFF’s Project Baltimore Wins National News Emmy® Award (Sinclair Broadcast Group LLC)

Public Technologies 27 Sep 2024
"This Emmy Award is a testament to the hard work, dedication, and passion of WBFF's Project Baltimore team and we are incredibly honored to receive this prestigious recognition from the Academy.
Edit

WBFF’s Project Baltimore Nominated for Two National Emmy® Awards, News & Documentary

Business Wire 08 Aug 2024
BALTIMORE--(BUSINESS WIRE)--Sinclair is pleased to announce Project Baltimore, the special ...
Edit

FOX45 News: Ivan Bates ‘disheartened’ by Baltimore’s budget passage without $1M boost request

Baltimore Sun 19 Jun 2024
The Baltimore City budget season came to an end Monday evening with little fanfare as the City Council approved Mayor Brandon Scott’s $4 billion budget proposal without amendments ... .
Edit

Right-wing Sinclair owner buys Baltimore Sun

Washington Blade 16 Jan 2024
Smith purchased the Sun independent of Sinclair using his own funds, but envisions various “synergies” between the newspaper and his Baltimore TV station, WBFF, according to a Sun report on the sale ... As reported by the Washington Post in 2016 ... A ... ....
Edit

CAIR Calls for Reinstatement of Maryland Director to Hate Crimes Commission WBFF FOX45

Bitchute 03 Dec 2023
Go to the source via the article link to view the video ....
Edit

Johns Hopkins doctor placed on leave as alleged anti Palestinian posts surface WBFF FOX45

Bitchute 21 Nov 2023
Go to the source via the article link to view the video ....
Edit

WWE's Bianca Belair participates in WBFF bodybuilding competition

The Post and Courier 04 Dec 2022
Announcing the news on Instagram, Belair said she has been training for ten weeks for the WBFF Pro Atlantic City ProAm in New Jersey despite the rigors of her career in WWE that has taken her across ...

Most Viewed

×