# \r\n new line (for Windows/DOS text) # \n new line (Unix style) # \t tab character # # The field are shown below. They're no longer part of this comment, # rather they comprise the actual format specifications should this # file be specified as the format file: --- File Information --- \r\n File Name: %FILE_NAME% \r\n File Name (with full path): %FILE_NAME_WITH_PATH% \r\n File Size (in bytes): %FILE_SIZE% \r\n \r\n --- Container Information --- \r\n Base Type (e.g "AVI"): %CONT_BASETYPE% \r\n Subtype (e.g "OpenDML"): %CONT_SUBTYPE% \r\n Interleave (in ms): %CONT_INTERLEAVE_TIME% \r\n Preload (in ms): %CONT_INTERLEAVE_PRELOAD% \r\n Audio alignment("split across interleaves"): %CONT_INTERLEAVE_ALIGN% \r\n Total System Bitrate (kbps): %CONT_TOTAL_BITRATE% \r\n Bytes Missing (if any): %CONT_BYTES_MISSING% \r\n Number of Audio Streams: %CONT_AUDIO_STREAM_COUNT% \r\n \r\n --- Video Information --- \r\n Video Codec Type(e.g. "DIV3"): %VIDEO_CODEC_TYPE% \r\n Video Codec Name(e.g. "DivX 3, Low-Motion"): %VIDEO_CODEC_NAME% \r\n Video Codec Status(e.g. "Codec Is Installed"): %VIDEO_CODEC_STATUS% \r\n Duration (hh:mm:ss): %VIDEO_DURATION% \r\n Frame Count: %VIDEO_FRAME_COUNT% \r\n Frame Width (pixels): %VIDEO_SIZE_X% \r\n Frame Height (pixels): %VIDEO_SIZE_Y% \r\n Storage Aspect Ratio("SAR")" %VIDEO_SAR% \r\n Pixel Aspect Ratio ("PAR"): %VIDEO_PAR% \r\n Display Aspect Ratio ("DAR"): %VIDEO_DAR% \r\n Fields Per Second: %VIDEO_FIELDS_PER_SEC% \r\n Frames Per Second: %VIDEO_FRAMES_PER_SEC% \r\n Pics Per Second: %VIDEO_PICS_PER_SEC% \r\n Video Bitrate (kbps): %VIDEO_BITRATE% \r\n MPEG-4 ("MPEG-4" or ""): %VIDEO_MPEG4% \r\n B-VOP ("B-VOP" or ""): %VIDEO_MPEG4_BVOP% \r\n QPel ("QPel" or ""): %VIDEO_MPEG4_QPEL% \r\n GMC ("GMC" or ""): %VIDEO_MPEG4_GMC% \r\n NVOP ("NVOP" or ""): %VIDEO_MPEG4_NVOP% \r\n H264 ("H264" or ""): %VIDEO_H264% \r\n Quality Factor (bits/pixel)/frame: %VIDEO_QF%" \r\n \r\n MPEG-2 ("MPEG-2" or ""): %VIDEO_MPEG2% \r\n Interlaced ("I/L" or ""): %VIDEO_MPEG2_I_L% \r\n Progressive ("Prog" or ""): %VIDEO_MPEG2_PROG% \r\n Top Frame First ("TFF" or ""): %VIDEO_MPEG2_TFF% \r\n Bottom Frame First ("BFF" or ""): %VIDEO_MPEG2_BFF% \r\n 3:2 Pulldown ("3:2" or ""): %VIDEO_MPEG2_3X2% \r\n Picture-per-field ("PPF" or ""): %VIDEO_MPEG2_PPF% \r\n \r\n --- Aspect Ratio Related --- \r\n \r\n Broadcast standard: "PAL" (else blank) %VIDEO_ASPECT_TYPE_PAL% \r\n Broadcast standard: "NTSC" (else blank) %VIDEO_ASPECT_TYPE_NTSC% \r\n src:"VCD", "SVCD", "CVD", or "DVD (else blank): %VIDEO_ASPECT_SOURCE_MATCH% \r\n Instructions to convert to VCD, first part: %VIDEO_ASPECT_CONVERT_VCD1% \r\n Instructions to convert to VCD, second part: %VIDEO_ASPECT_CONVERT_VCD2% \r\n Instructions to convert to SVCD, first part: %VIDEO_ASPECT_CONVERT_SVCD1% \r\n Instructions to convert to SVCD, second part: %VIDEO_ASPECT_CONVERT_SVCD2% \r\n Instructions to convert to CVD, first part: %VIDEO_ASPECT_CONVERT_CVD1% \r\n Instructions to convert to CVD, second part: %VIDEO_ASPECT_CONVERT_CVD2% \r\n Instructions to convert to DVD, first part: %VIDEO_ASPECT_CONVERT_DVD1% \r\n Instructions to convert to DVD, second part: %VIDEO_ASPECT_CONVERT_DVD2% \r\n Instructions to convert to AVI, first part: %VIDEO_ASPECT_CONVERT_AVI1% \r\n Instructions to convert to AVI, second part: %VIDEO_ASPECT_CONVERT_AVI2% \r\n \r\n --- Audio Information --- \r\n MPEG Stream ID (e.g. "0xbd"): %AUDIO_MPEG_STREAM_ID% \r\n MPEG VOB file Substream(e.g. "0x80"): %AUDIO_MPEG_SUBSTREAM_ID% \r\n Audio Codec (e.g. "AC3"): %AUDIO_CODEC% \r\n Audio Codec Status (e.g. "Codec Is Installed"): %AUDIO_CODEC_STATUS% \r\n Audio Sample Rate (Hz): %AUDIO_SAMPLE_RATE% \r\n Audio Bitrate(kbps): %AUDIO_BITRATE% \r\n Audio Bitrate Type ("CBR" or "VBR"): %AUDIO_BITRATE_TYPE% \r\n Audio Channel Count (e.g. "2" for stereo): %AUDIO_CHANNEL_COUNT% \r\n # Note: The \r\n sequences are all "lined up" for clarity, but there is no need # to do so - in fact, this format creates a file with a lot of "trailing blanks" # which may not be particularly desireable. The alternative is something like: # # --- Audio Information ---\r\n # MPEG Stream ID (e.g. "0xbd"): %AUDIO_MPEG_STREAM_ID%\r\n # MPEG VOB file Substream(e.g. "0x80"): %AUDIO_MPEG_SUBSTREAM_ID%\r\n # # etc. # # Note: For audio, information from other streams is available by appending # "_2", "_3", or "_4" for streams 2, 3 and 4 respectively. The % char must # still be last, of course (e.g. "%AUDIO_BITRATE_3%", not "%AUDIO_BITRATE%_3"). # # This is untested and may not be fully supported. # |