Skip to content
Popup Example

Earn From News Kiosk

Marco OTT Release: Producer Sharif Muhammed Clarifies on Streaming Rights

January 10, 2025
Marco OTT Release: Producer Sharif Muhammed Clarifies on Streaming Rights

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!
Marco OTT Release: Producer Sharif Muhammed Clarifies on Streaming Rights

Unni Mukundan’s latest film Marco, directed by Haneef Adeni, has been creating ripples in theaters across the country with its intense action sequences and gripping storyline. Amid its continued box office success, speculation about an OTT release surfaced, claiming that the film’s rights had been acquired by Netflix. In response, producer Sharif Muhammed released a clarification, asserting that no OTT deals have been signed yet and urging audiences to experience the film in cinemas.When and Where to Watch MarcoSharif Muhammed, under the banner of Cubes Entertainments, has released an official statement on social media platforms including Instagram and The producer emphasized that the movie, known for its raw action and compelling narrative, is best enjoyed in theaters. A formal announcement about the film’s digital release will only be made at a later stage. The producer also requested fans to avoid sharing unverified claims about the film’s streaming debut.Official Trailer and Plot of MarcoThe trailer of Marco teased a gritty, action-packed journey, led by Unni Mukundan’s powerful portrayal of the titular character. Directed by Haneef Adeni, the narrative dives into a violent underworld where revenge and survival dominate. The film’s trailer garnered significant attention for its bold visuals and the promise of a high-octane cinematic experience, which has been delivering on the big screen.Cast and Crew of MarcoMarco features Unni Mukundan in the lead role, supported by an ensemble cast. Directed by Haneef Adeni, known for his nuanced storytelling, the film is backed by producer Sharif Muhammed under Cubes Entertainments. The team behind Marco has been celebrated for creating a gripping action thriller that resonates with diverse audiences.Reception of MarcoThe film has been enjoying a strong theatrical run, breaking records across Kerala and other regions. Dubbed versions in Telugu and Hindi have been performing well, with reports indicating that Marco’s Hindi version has outperformed other major releases in metro cities. Catch the latest from the Consumer Electronics Show on Gadgets 360, at our CES 2025 hub.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();