i am not sure if this is possible, is there anyway we can add creation time/encoding time. probably using this command we can add metadata, but how can we add current UTC or Local time?
outputCode:-metadata "Creation Time"="Need to add time tag/code"
Code:Creation Time: UTC 2021-01-01 04:30:19
+ Reply to Thread
Results 1 to 2 of 2
Thread
-
-
You can use mkvpropedit with a custom tags.xml file.
From the mkvpropedit --help screen:
Code:Actions for handling tags and chapters: -t, --tags <selector:filename> Add or replace tags in the file with the ones from 'filename' or remove them if 'filename' is empty.
Code:<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE Tags SYSTEM "matroskatags.dtd"> <Tags> <Tag> <Targets> <!-- TrackUIDs and ChapterUIDs can occur more than once. --> <TrackUID>1</TrackUID> <TrackUID>2</TrackUID> <TrackUID>3</TrackUID> <TrackUID>4</TrackUID> <ChapterUID>2</ChapterUID> <ChapterUID>4</ChapterUID> <ChapterUID>6</ChapterUID> <ChapterUID>8</ChapterUID> </Targets> <!-- The new tagging system. It's more or less a 'Name=String' system, --> <!-- but entries may also be nested. Also the Matroska specs give --> <!-- you a set of pre-defined tag names for better cross-application --> <!-- usability. However, you are free to use your own tag names. --> <Simple> <Name>LEAD_PERFORMER</Name> <String>Tori Amos</String> </Simple> <Simple> <Name>ALBUM</Name> <String>Under the Pink</String> <Simple> <Name>TITLE</Name> <String>Cornflake Girl</String> </Simple> </Simple> </Tag> </Tags>
"Programmers are human-shaped machines that transform alcohol into bugs."
Similar Threads
-
Can I add MKV metadata tags that will show in Windows Explorer?
By seanmcnally in forum Video ConversionReplies: 3Last Post: 23rd Feb 2022, 02:15 -
ffmpeg - output metadata, add/remove modification then add it to the video
By kalemvar1 in forum Video ConversionReplies: 3Last Post: 30th Jul 2021, 01:29 -
help removing remaining metadata from mkv
By markemby753 in forum Newbie / General discussionsReplies: 1Last Post: 17th Apr 2021, 05:51 -
Mkv delete creation metadata
By bzalel in forum Newbie / General discussionsReplies: 3Last Post: 13th Feb 2021, 19:55 -
How to add count of subtitle elements to video metadata for MediaInfo?
By elprice7345 in forum Newbie / General discussionsReplies: 4Last Post: 1st May 2019, 15:29