<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Betreff: AX700 and file names.. in Camcorders</title>
    <link>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2475739#M4765</link>
    <description>&lt;P&gt;The worst part on this was, Sony seems to not understand the issue at all when I asked that &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.co.uk/html/@D7F502F2468C53653FDE06207E4CE4E1/images/smilies/102.png" alt=":see_no_evil:" title=":see_no_evil:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made the .ps 1 script to this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;param(
    [Parameter (mandatory=$true)]
    [string] $filesDirectory
)

# Read the files
$files = Get-ChildItem -Path $filesDirectory

foreach ($file in $files)
{
    # Inform user about the new names.
    write-host "The new Name is: " -NoNewline -ForegroundColor Yellow
    write-host "$($file.LastWriteTime.ToString("yyyyMMdd")) - $($file.Name)" -ForegroundColor green

    if (Test-Path -Path "$($file.Directory)\$($file.LastWriteTime.ToString("yyyyMMdd")) - $($file.Name)")
    {
        #Add random index if such a file already exis. It should not be possible, but just in case.
        Rename-Item -Path $file.FullName -NewName  "$($file.LastWriteTime.ToString("yyyyMMdd")) - $(Get-Random -Minimum 1 -Maximum 9) - $($file.Name)"
    }
    else
    {
        # Rename the file
        Rename-Item -Path $file.FullName -NewName  "$($file.LastWriteTime.ToString("yyyyMMdd")) - $($file.Name)"
    }
}

Write-Host "Completed" -ForegroundColor Cyan&lt;/PRE&gt;&lt;P&gt;Save the file into RenameSonyFiles.ps1 and then run it on the PowerShell session. Basically it takes the last written date from each file and then add the date in format YYYYMMDD begin of the file (and " - " as a separator. You should run the code by: &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;RenameSonyFiles.ps1 -filesDirectory c:\SonyVideos\PRIVATE\M4ROOT\CLIP&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jun 2018 16:50:34 GMT</pubDate>
    <dc:creator>petrikapiainen</dc:creator>
    <dc:date>2018-06-14T16:50:34Z</dc:date>
    <item>
      <title>AX700 and file names..</title>
      <link>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2469717#M4714</link>
      <description>&lt;P&gt;Few shoot made now, but suddenly I realized that the file names are not continues..&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.co.uk/html/@F0AA57BAD1A99D66258F46C0338335A4/images/smilies/043.png" alt=":rage:" title=":rage:" /&gt;&lt;/P&gt;&lt;P&gt;Does anybody knows if I could control the file names to be used? I don't want to find tons of&amp;nbsp;C0001.MP4 from my computer&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.co.uk/html/@E2C8F7AB2C97FE0BB522321BBE5AB162/images/smilies/036.png" alt=":frowning2:" title=":frowning2:" /&gt;&lt;/P&gt;&lt;P&gt;Day with running index would be the most useful (20180527-0001.mp4).&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 23:02:54 GMT</pubDate>
      <guid>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2469717#M4714</guid>
      <dc:creator>petrikapiainen</dc:creator>
      <dc:date>2018-05-28T23:02:54Z</dc:date>
    </item>
    <item>
      <title>Betreff: AX700 and file names..</title>
      <link>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2469719#M4715</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.sony.co.uk/t5/user/viewprofilepage/user-id/764279"&gt;@petrikapiainen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.sony.co.uk/t5/user/viewprofilepage/user-id/764279"&gt;@petrikapiainen&lt;/a&gt;&amp;nbsp; schrieb:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Day with running index would be the most useful (20180527-0001.mp4).&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;that would be the case if you would record AVCHD. For XAVC-S I don't know any way to change the naming sheme.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Nic&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 23:13:14 GMT</pubDate>
      <guid>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2469719#M4715</guid>
      <dc:creator>IamNic</dc:creator>
      <dc:date>2018-05-28T23:13:14Z</dc:date>
    </item>
    <item>
      <title>Betreff: AX700 and file names..</title>
      <link>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2471039#M4717</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sony.co.uk/t5/user/viewprofilepage/user-id/764279"&gt;@petrikapiainen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;well, that's the way it is and nobody knows why.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, there are different ways in changing those Cxxxx.mp4 filenames into meaningful names like "20180306_125004_C0001.mp4" (as used on my PC), which stands for Date: 06.03.2018 (denomination backwards for sorting reasons), Time: 12:50:04, followed by the original file name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are several ways to achieve this. In case you're interested I could publish a script which is using the freeware&amp;nbsp;&lt;A href="https://www.sno.phy.queensu.ca/~phil/exiftool/" target="_blank"&gt;ExifTool&lt;/A&gt;&amp;nbsp;in order to rename those Cxxxx.mp4 files automatically. You'll most likely need some more advice to be successful in using this tool but it's actually not too complicated. However, there's no user interface so my script is&amp;nbsp;working mainly invisible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In case you'd rather be looking for some software with a GUI you might be interested in&amp;nbsp;&lt;A href="https://www.rename-expert.com/" target="_blank"&gt;Rename Expert&lt;/A&gt;&amp;nbsp;(free version with limitations in the number of files which will be renamed in one go) which will cost you 29,95€ for the full version. Anyhow, might be worth testing it. You maybe might need some advice for that software as well, though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally, there's other software around which works like RenameExpert at lower or higher costs, well, I don't know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyhow, don't hesitate to ask for further help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;darkframe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 22:36:08 GMT</pubDate>
      <guid>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2471039#M4717</guid>
      <dc:creator>darkframe</dc:creator>
      <dc:date>2018-05-31T22:36:08Z</dc:date>
    </item>
    <item>
      <title>Betreff: AX700 and file names..</title>
      <link>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2475739#M4765</link>
      <description>&lt;P&gt;The worst part on this was, Sony seems to not understand the issue at all when I asked that &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.co.uk/html/@D7F502F2468C53653FDE06207E4CE4E1/images/smilies/102.png" alt=":see_no_evil:" title=":see_no_evil:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made the .ps 1 script to this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;param(
    [Parameter (mandatory=$true)]
    [string] $filesDirectory
)

# Read the files
$files = Get-ChildItem -Path $filesDirectory

foreach ($file in $files)
{
    # Inform user about the new names.
    write-host "The new Name is: " -NoNewline -ForegroundColor Yellow
    write-host "$($file.LastWriteTime.ToString("yyyyMMdd")) - $($file.Name)" -ForegroundColor green

    if (Test-Path -Path "$($file.Directory)\$($file.LastWriteTime.ToString("yyyyMMdd")) - $($file.Name)")
    {
        #Add random index if such a file already exis. It should not be possible, but just in case.
        Rename-Item -Path $file.FullName -NewName  "$($file.LastWriteTime.ToString("yyyyMMdd")) - $(Get-Random -Minimum 1 -Maximum 9) - $($file.Name)"
    }
    else
    {
        # Rename the file
        Rename-Item -Path $file.FullName -NewName  "$($file.LastWriteTime.ToString("yyyyMMdd")) - $($file.Name)"
    }
}

Write-Host "Completed" -ForegroundColor Cyan&lt;/PRE&gt;&lt;P&gt;Save the file into RenameSonyFiles.ps1 and then run it on the PowerShell session. Basically it takes the last written date from each file and then add the date in format YYYYMMDD begin of the file (and " - " as a separator. You should run the code by: &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;RenameSonyFiles.ps1 -filesDirectory c:\SonyVideos\PRIVATE\M4ROOT\CLIP&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 16:50:34 GMT</pubDate>
      <guid>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2475739#M4765</guid>
      <dc:creator>petrikapiainen</dc:creator>
      <dc:date>2018-06-14T16:50:34Z</dc:date>
    </item>
    <item>
      <title>Betreff: AX700 and file names..</title>
      <link>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2477958#M4771</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sony.co.uk/t5/user/viewprofilepage/user-id/764279"&gt;@petrikapiainen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;well, my solution is a bit different, using the above mentioned ExifTool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I simply created a new link on my desktop (right click onto the desktop -&amp;gt; new -&amp;gt; link) and named it "Rename MP4". Thereafter I right clicked onto the new symbol and chose "Properties". Into the first empty field (target or similar on English systems) I entered the following line:&lt;/P&gt;
&lt;P&gt;"C:\Program Files (x86)\ExifTool\exiftool.exe" -d %Y%m%d_%H%M%S_%%f%%-c.%%e "-filename&amp;lt;FileModifyDate" *.mp4&lt;/P&gt;
&lt;P&gt;In the next line I've put "&lt;SPAN&gt;C:\Program Files (x86)\&lt;/SPAN&gt;&lt;SPAN&gt;ExifT&lt;/SPAN&gt;&lt;SPAN&gt;ool\&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Well, of course I've created the ExifTool directory and placed the application into it beforehand. All I now need to do is to drag &amp;amp; drop the files to be renamed onto the symbol and all of them will be renamed. And by the way, it's working for MOV files as well, no need to type in MOV instead of mp4. MOVs from e.g. Canon cameras are using a numeric naming system as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;darkframe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 17:58:34 GMT</pubDate>
      <guid>https://community.sony.co.uk/t5/camcorders/ax700-and-file-names/m-p/2477958#M4771</guid>
      <dc:creator>darkframe</dc:creator>
      <dc:date>2018-06-20T17:58:34Z</dc:date>
    </item>
  </channel>
</rss>

