Skip to main content

Renaming your photos for easy sorting using a media player

This article will hopefully show you how I easily rename all of my family photos and videos using some simple tools so that the are archived using the date and time the image/video was taken. It has a slight bend towards the Xbox media centre platform as that's been my media player of choice for many years (wife and child friendly with great support for thumbnails).

First, a little overview of my set up
I have a modded Xbox running XBMC connected via component to a full HD LCD and via optical to a 6.1 home theatre amplifier. My stairwell houses my pride and joy; a Synology DS209 NAS that is DLNA compliant.

The goal

If you're using a media player of any sort to display your photos on your television, I've found that the best way to slideshow these (in the most logical order), is to have them play chronologically.

What you'll need (you may not require all of them so read the whole article before downloading)
Using Lupas Rename to quickly rename all images in a folder using the date and time the photo was taken i.e. 20091022-105507
 
 

  1. Download and install Lupas Rename 2000
  2. In the bottom left corner there's a tab marked "Name". We are going to use the "replace with the text" feature as shown above
  3. Copy the following text and paste it (using Ctrl + V) into the "replace with the text" box

    <E:DateTime:Y><E:DateTime:M><E:DateTime:D>-<E:DateTime:H><E:DateTime:MM><E:DateTime:s>

  4. Use the folder icon highlighted in RED to navigate to the folder with your images in it.
  5. If you have multiple folders underneath your DCIM folder (common), select the DCIM (or root folder) and then select the recursive mode icon highlighted in yellow
  6. Select one of your photos in the left pane. It should show you a preview of the new name to the right as shown
  7. If happy, highlight all of your photos and click Rename








  1. To be continued...







  2. Comments

    Popular posts from this blog

    How to retain your GUI settings in Kodi

    When you restore Kodi or copy your existing Kodi userdata folder to another device it will always default the guisettings.xml, always. Even if you drop your previous settings into Kodi via a network folder, it will still reload it to default upon restart. This is because the guisettings.xml can't be written into the userdata folder when Kodi is running. To prevent this from happening, overwrite the guisettings.xml with SSH using two programs. One to stop and start the Kodi process and one to copy over the backed up guisettings.xml file that contains all your GUI goodness.

    Using ESPEasy with Home Assistant via MQTT

    Preface: I've just started playing around with Home Assistant on a Raspberry Pi and exploring the world of MQTT to control devices on the network. Learning curve is a bit steep but worth the effort as MQTT is very fast. The hardware and software tools I'm using are as follows: 2 x Sonoff relay units 2 x NodeMCU Boards ESPEasy firmware (must be version 121 or above as that contains the MQTT 'retain' flag option. Home Assistant software on Raspberry Pi2 MQTT Test Software: PC: MQTT.fx Android: MQTT Dashboard

    How to check what entities are filling up your Home Assistant database

    If you use the Home Assistant MariaDB add-on, this tip will show you how to query the database so see what Home Assistant entity states are triggering the most, filling up your database. What were going to do: Install the phMyAdmin add-on for MariaDB. Query the MariaDB database. See what entity state changes have the most action. Paste the code below into the SQL query box:  select entity_id,count( * ) from states group by entity_id order by count ( * ) desc; And if you're using the internal home-assistant_v2.db instead, you can use the SQLite Web add-on to achieve the same thing.