This was first introduced in the Galaxy S25 Series, but is now reportedly being expanded to the previous year device with the fourth beta update of one ui 7 that was released on Wednesday However, it is said that the feature is not available in the galaxy s24 or the galaxy s24+ models.samsung galaxy s24 ultra gets log video recordingCorting to a Sammobile Report, The Samsung Galaxy Som Ultra is getting the capability to record videos in log format. The new feature is said to be part of the fourth beta update of the one UI 7 OS update. Since the update is currently only available in beta, only testers will be able to try out the feature. The feature is reportedly not available to the other models in the galaxy s24 series. The reason for this is unchalar.notally, log videos, also know as log footage, are video recordings captured in a logarithmic color profile. These are flats, desaturated videos that retain a high dynamic range and preserve more details in highlights and shadows. Log Videos are typically used in professional video productions as they offer green flexibility in color grading during the post-process process. Typically Films and Advertisements are Shot in Log Format.To Record Log Videos on the Samsung Galaxy S24 Ultra, Users will need to enable the feature in the settings of the camra app. There, users will need to go to the advanced video menu option and turn on the log toggle. This will enable log mode for bot standard and pro video modes.after that, navigating back to the camera viewfinder will now show a log button that can be swtitched on to record videos in the log forst. 6
Credit-Read More
// 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);
Random Latest Posts Display // 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();