Community

I am working through my megui training and am tacking how to use mediainfo to create and text file with the video information I want.

I am using mediainfo cli and using a template file. the following are the contents of my template file

Code:
General;File Name...........: %FileName%\r\nRuntime.............: %Duration/String%\r\nFile Size...........: %FileSize/String4%\r\nFormat..............: %Format%\r\nVideo Bitrate.......: %OverallBitRate/String%\r\n
Video;Video Codec.........: %Format% %Format_Profile%\r\nAspect Ratio........: %DisplayAspectRatio/String%\r\nResolution..........: %Width%x%Height/String%\r\nFrame Rate..........: %FrameRate/String%\r\n
Audio;Audio Codec.........: %Format% %Format_Profile%\r\nChannels............: %Channel(s)/String%\r\nSampling Rate.......: %SamplingRate/String%\r\n$if(%Language%,Language............: %Language%\r\n)Bitrate.............: %BitRate/String%\r\n
The file works fine for me and gives me the following format

Code:
File Name...........: valor.mkv
Runtime.............: 1h 50mn
File Size...........: 2.403 GiB
Format..............: Matroska
Video Bitrate.......: 3 120 Kbps
Video Codec.........: AVC High@L4.1
Aspect Ratio........: 2.40:1
Resolution..........: 1280x534 pixels
Frame Rate..........: 23.976 fps
Audio Codec.........: AC-3 
Channels............: 6 channels
Sampling Rate.......: 48.0 KHz
Language............: en
Bitrate.............: 448 Kbps
I am happy with this layout but I want to but a Generic description (comment like) header at the start of the template file and ouput when use. Can this be done

Thanks