Skip to content
Popup Example

Earn From News Kiosk

I Want to Talk OTT Release: Abhishek Bachchan’s Family Drama Now Available For Rent on Prime Video

January 10, 2025
I Want to Talk OTT Release: Abhishek Bachchan’s Family Drama Now Available For Rent on Prime Video

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!
I Want to Talk OTT Release: Abhishek Bachchan’s Family Drama Now Available For Rent on Prime Video

After a theatrical release on November 22, 2024, the family drama I Want to Talk starring Abhishek Bachchan, has made its way to an OTT platform. The film, which portrays the journey of a cancer survivor, struggled at the box office, earning Rs. 1.95 crore in its first eight days. Now, it aims to find a larger audience online. Based on a true story, the film explores themes of resilience, love and human connection and is expected to resonate with viewers in a more intimate setting.When and Where to Watch I Want To TalkI Want to Talk is currently available for streaming on Amazon Prime Video. As of now, viewers can rent the movie for Rs. 349. It will be made free for all Prime subscribers after a month. This offering provides an opportunity for a wider audience to experience the emotional narrative of Arjun Sen, portrayed by Abhishek Bachchan, as he navigates life with a terminal illness.Official Trailer and Plot of I Want To TalkThe trailer of I Want to Talk highlights the emotional journey of Arjun Sen, a marketing expert whose life is upended following a cancer diagnosis. With his teenage daughter Reya by his side, the story captures their bond as they face the news of their limited time together. Directed by Shoojit Sircar, the film intertwins moments of despair and hope, reflecting the challenges and strength of familial ties.Cast and Crew of I Want To TalkThe film features Abhishek Bachchan in the lead role as Arjun Sen, alongside Ahilya Bamroo as Reya. The cast includes Johny Lever, Jayant Kriplani and a supporting team of actors such as Dr Saivishnu Doosetty, Dr Tamanna Mohta and Nathalie Zepek. Cinematography by Avik Mukhopadhyay, editing by Chandrashekhar Prajapati and music by George Joseph contribute to the storytelling. Produced by Sheel Kumar, Ronnie Lahiri, Karan Wadhwa and Kumar Thakur, the film is a product of Rising Sun Films and Kino Works.Reception of I Want To TalkDespite its compelling storyline, I Want to Talk faced a lukewarm reception at the box office. Mixed reviews from audiences and critics cited both praise for its performances and criticisms of its pacing. It has an IMDb rating of 7.1 / 10. 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();