Page 1 of 1
Copy MP4 attributes from file to another MP4
Posted: 10 Apr 2017 20:37
by hiker456
Greetings, I've searched through the forums and struggling to find a solution for this. I am a newbie to XYplorer. I need to copy all the created, modified, accessed properties of one MP4 to another MP4 file. It needs to be accurate down to the milliseconds. Is this possible?
Re: Copy MP4 attributes from file to another MP4
Posted: 10 Apr 2017 22:31
by hiker456
Any help would be appreciated. User "highend" may have answer. I've searched a few of their responses as possible solutions. Thanks in advance for the help!
Re: Copy MP4 attributes from file to another MP4
Posted: 12 Apr 2017 00:03
by highend
That can be done easily (timestamp script command). The question is how do you want it to work?
Source file (the first .mp4 from which the date properties should be copied) = current file
And then a file dialog pops up that let's you select the destination file (the one that will get all the same dates)?
E.g.:
Code: Select all
$dest = inputfile(, gpc(<curitem>, "ext"), "Select the destination file that receives all date values...");
timestamp "cma", <curitem>, $dest;
Re: Copy MP4 attributes from file to another MP4
Posted: 12 Apr 2017 07:53
by hiker456
I think that answers my question. Thank you!! Than you!!