DZAPPZ.COM: the best blogger template for posting apps as well as articles in one blog.. Test link Get now!

Image & Video Date Fixer

Updated on July 2, 2024
Name Image & Video Date Fixer
Publisher JD Android Apps
Category Video Editors
Version 2.0.0
Size 25 MB
Price FREE
Requires Android 9 and up
MOD Features -
Link Download Play Store

fist paragraph of Image & Video Date Fixer v 2.0.0.

Table of contents
Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0 Image & Video Date Fixer v 2.0.0

Introduce about Image & Video Date Fixer

# ![Image and Video Date Fixer Logo](insert_logo_url_here) Image and Video Date Fixer

Overview

Introducing Image and Video Date Fixer, a sophisticated application designed to enhance the organization of your gallery, offering seamless correction for both pictures and videos. This versatile tool extends its capabilities to popular social media platforms such as Instagram, Facebook, and Snapchat.

**Gallery Organization**

Ever encountered a disordered gallery after transferring or downloading media files? Image and Video Date Fixer tackles this issue by intelligently managing file modification dates, ensuring a coherent and organized display.

 **Capture Date Restoration**

The application reads capture dates from metadata and meticulously restores the file modification date to its original value. This feature is particularly valuable for scenarios where images lack EXIF Metadata but embed the date in the filename, such as restoring WhatsApp images.

 **Bulk Date Adjustment**

Empowering users with efficiency, Image & Video Date Fixer allows for simultaneous date adjustments on multiple images. Whether setting individual dates, applying a universal date, introducing a time difference, or incrementing dates systematically, the application offers a range of flexible options.

**Social Media Archive Integration**

A recent addition includes the capability to download Facebook, Messenger, and Instagram photos to an archive. Users can effortlessly restore capture and file modified dates from additional metadata files within the downloaded archive.

 **Free and Premium Versions**

While the free version enables correction for up to 50 files per run, users seeking an extensive fix can seamlessly upgrade to the premium version via an in-app purchase.

**File Access Requirements**

To ensure optimal functionality, the app requires all files access, enabling the utilization of the File API to modify file modification dates and change video metadata. Additionally, the application addresses a reported bug on Android 11, where setting the last modified date fails using Media Store APIs.

---

Experience the efficiency and organization that Image and Video Date Fixer brings to your gallery, ensuring a seamless and orderly display of your media files.

Download Image & Video Date Fixer APK for Android

Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae expedita veritatis veniam repudiandae repellat ea laudantium ut fuga dolorem incidunt magnam sapiente, eum ullam velit unde quis.

Available Versions of Image & Video Date Fixer

Image & Video Date Fixer v2.0.0
Image & Video Date Fixer v2.0.0

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos, totam mollitia? Harum incidunt consectetur natus optio! Atque, eveniet.

Related Post

Recommended for You

Post a Comment

Enter Image URL / Code Snippets / Quotes / name tag, then click parse button accordingly that you have entered. then copy the parse result and paste it into the comment field.


Cookie Consent

We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.

Google Translate
Bookmark Post
function updateTable() { const tableBody = document.getElementById('fileTable').querySelector('tbody'); tableBody.innerHTML = ''; files.forEach(file => { for (const key in file) { if (file.hasOwnProperty(key)) { const row = document.createElement('tr'); const attributeCell = document.createElement('td'); attributeCell.innerHTML = `${key.replace(/([A-Z])/g, ' $1').replace(/^./, str => str.toUpperCase())}:`; row.appendChild(attributeCell); const valueCell = document.createElement('td'); if (key === 'fileUrl') { const downloadButton = document.createElement('a'); downloadButton.href = file[key]; downloadButton.className = 'download-button'; downloadButton.innerHTML = ` ${file.fileName}`; valueCell.appendChild(downloadButton); } else if (key === 'fileDescription') { // Add an icon for descriptions const icon = document.createElement('i'); icon.className = 'fas fa-file-alt'; valueCell.appendChild(icon); valueCell.appendChild(document.createTextNode(` ${file[key]}`)); } else { valueCell.textContent = file[key]; } row.appendChild(valueCell); tableBody.appendChild(row); } } }); }