ADVERTISEMENT

Disney says its new streaming service won't rival Netflix

Published Aug 8, 2018 03:50 am
NEW YORK (AP) — Disney's upcoming streaming service won't try to compete directly with Netflix and Amazon, but will focus instead on quality — namely original programs from Disney's "Star Wars," Pixar and Marvel brands. The logo of a Disney store is pictured on the Champs Elysees Avenue in Paris, France. (AP Photo/Francois Mori, File) /mb.com.ph The logo of a Disney store is pictured on the Champs Elysees Avenue in Paris, France. (AP Photo/Francois Mori, File) The details from Disney CEO Bob Iger came as Disney reported a growth in earnings for the latest quarter, though results missed expectations. With Comcast out of the bidding war, Disney is planning to move forward with its $71.3 billion purchase of Fox's entertainment assets, in part to boost a Disney-branded streaming service set to launch in late 2019. Disney's shareholders and U.S. regulators have approved the Fox bid. Disney is awaiting regulatory approval overseas. In a statement, Iger said he was excited about "opportunities ahead for continued growth." Disney is building the streaming service as more people switch from traditional cable TV bundles to streaming online though services like Amazon and Netflix. Disney just launched a $5-a-month ESPN Plus streaming service with sports. If the Fox deal closes, it will have a controlling stake in Hulu, which offers a broad array of programming starting at $8 a month. With the Disney-branded entertainment service, Disney will have more control over its movies and TV shows from creation to distribution. That ultimately gives Disney more data to gauge its audience. Though a price for the upcoming entertainment service hasn't been set, Iger told analysts during a conference call that the price will reflect a lower volume of shows and movies. Netflix plans range from $8 to $14 a month. In the works for the Disney service are a live-action "Star Wars" series, new episodes of the animated "Star Wars" series "Clone Wars," a live-action version of "Lady and the Tramp" and new series related to the "High School Musical" and "Monsters Inc." movies. Launching the streaming services is Disney's biggest priority next year, Iger said. "There will be a significant amount of support given across all of our assets to see to it that the product launches successfully." Some of Disney's properties, such as the original "Star Wars" trilogy, have licensing agreements already in place with other companies, so they won't be available, at least initially. But Iger said that movies Disney plans to release in 2019, including "Captain Marvel," ''Dumbo," "Toy Story 4" and "Frozen 2," won't be encumbered by licensing deals and can go straight to the service soon after their theatrical releases. In the fiscal third quarter, Disney's net income rose 23 percent to $2.92 billion, or $1.95 per share, from $2.37 billion, or $1.51 per share, a year ago. Excluding one-time items like a benefit from lower federal tax rates, income was $1.87 per share. The average estimate of four analysts surveyed by Zacks Investment Research was for adjusted earnings of $1.97 per share. Revenue rose 7 percent to $15.23 billion in the period, short of the $15.49 billion expected by four analysts surveyed by Zacks. Revenue from the movie and TV production business jumped 20 percent to $2.88 billion, boosted by a strong box office for "Avengers: Infinity War" and "Incredibles 2." Disney's television networks also saw gains, including at ESPN, despite the higher NBA costs and lower advertising revenue. The one business that saw a drop in revenue was also Disney's smallest segment, Consumer Products and Interactive Media. Gains in products related to the Avengers weren't enough to offset lower revenue from "Spider-Man" and "Cars." Disney shares have risen slightly more than 8 percent since the beginning of the year, while the Standard & Poor's 500 index has risen almost 7 percent. In the final minutes of trading on Tuesday, shares hit $116.56, an increase of almost 10 percent from a year ago. In after-hours training, Disney's stock fell 49 cents to $116.07.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.