Clip properties

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (AudioDuration tweak)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
You can access clip properties in AVS scripts. For example, if the variable ''clip'' holds a video clip, then ''clip.height'' is its height in pixels, ''clip.framecount'' is its length in frames, and so on. Clip properties can be manipulated just like [[Script_variables|script variables]] (see the [[AviSynth Syntax]] for more), except that they cannot be l-values in C-terminology.
+
<div style="max-width:62em" >
 +
You can access a variety of clip properties in AviSynth scripts. For example, if the variable ''clip'' holds a video clip, then ''clip''.{{FuncArg|Height}} is its height in pixels, ''clip''.{{FuncArg|FrameCount}} is its length in frames, and so on.  
 +
 
 +
Clip properties can be accessed like [[Script_variables|script variables]], except that they are read-only (in [[wikipedia:C_(programming_language)|'''C''']] terminology, they cannot be ''L-values'').
 +
 
 +
__TOC__
  
 
The full list of properties:
 
The full list of properties:
  
* {{Term|Width}} (clip)
+
==== Content Properties ====
: Returns the width of the clip in pixels (type: int).
+
* ''bool'' clip.{{Term|HasAudio}}
* {{Term|Height}} (clip)
+
: Returns true if the clip has audio, false otherwise.
: Returns the height of the clip in pixels (type: int).
+
* ''bool'' clip.{{Term|HasVideo}}
* {{Term|FrameCount}} (clip)
+
: Returns true if the clip has video, false otherwise.
: Returns the number of frames of the clip (type: int).
+
 
* {{Term|FrameRate}} (clip)
+
==== Video: Resolution ====
: Returns the number of frames per seconds of the clip (type: float). The framerate is stored represented as a ratio though and more about it can be read [[AssumeFPS|here]].
+
* ''int'' clip.{{Term|Width}}
* {{Term|FrameRateNumerator}} (clip)  (v2.55)
+
: Returns the width of the clip in pixels.
: Returns the numerator of the number of frames per seconds of the clip (type: int).
+
* ''int'' clip.{{Term|Height}}
* {{Term|FrameRateDenominator}} (clip)  (v2.55)
+
: Returns the height of the clip in pixels.
: Returns the denominator of the number of frames per seconds of the clip (type: int).
+
 
* {{Term|AudioRate}} (clip)
+
==== Video: Framerate and Duration ====
: Returns the sample rate of the audio of the clip (type int).
+
: ''(see also: [[#Audio|AudioDuration]] and related properties)''
* {{Term|AudioLength}} (clip)  (v2.51)
+
* ''int'' clip.{{Term|FrameCount}}
: Returns the number of samples of the audio of the clip (type: int). Be aware of possible overflow on very long clips (2^31 samples limit).
+
: Returns the total number of video frames contained in the clip.  
* {{Term|AudioLengthLo}} (clip [, int])  (v2.60)
+
* ''float'' clip.{{Term|FrameRate}}
: Returns the number of samples of the audio of the clip modulo int. int is 1,000,000,000 by default (type: int).
+
: Returns approximate framerate. Video framerate is actually a ratio of two 32-bit integers;
* {{Term|AudioLengthHi}} (clip [, int])  (v2.60)
+
: so for the precise number, use {{Term|FrameRateNumerator}} and {{Term|FrameRateDenominator}}.
: Returns the number of samples of the audio of the clip divided by int (truncated to nearest integer). int is 1,000,000,000 by default (type: int).
+
* ''int'' clip.{{Term|FrameRateNumerator}}
* {{Term|AudioLengthF}} (clip)  (v2.55)
+
: Returns the framerate numerator.
: Returns the number of samples of the audio of the clip (type: float).
+
* ''int'' clip.{{Term|FrameRateDenominator}}
* {{Term|AudioLengthS}} (clip)  (v2.60)
+
: Returns the framerate denominator.
: Returns the number of samples of the audio of the clip as a string (type: string).
+
 
* {{Term|AudioDuration}} (clip)  (v2.60)
+
==== Video: Interlacing ====
: Returns the duration in seconds of the audio of the clip (type: float).
+
* ''bool'' clip.{{Term|IsFieldBased}}
* {{Term|AudioChannels}} (clip)
+
: Returns true if the clip is ''field-based''. What this means is explained [[Interlaced_fieldbased|'''here''']].
: Returns the number of audio channels of the clip (type int).
+
* ''bool'' clip.{{Term|IsFrameBased}}
* {{Term|AudioBits}} (clip)
+
: Returns true if the clip is ''frame-based''. What this means is explained [[Interlaced_fieldbased|'''here''']].
: Returns the audio bit depth of the clip (type int).
+
* ''bool'' clip.{{Term|GetParity([ int ''f'' ])}}
* {{Term|IsAudioFloat}} (clip)  (v2.55)
+
: Returns true if frame {{Term|''f''}} (default 0) is the top field of a field-based clip, or if it is a full frame with top field first of a frame-based clip.
: Returns true if the audio format of the clip is float (type: bool).
+
 
* {{Term|IsAudioInt}} (clip)  (v2.55)
+
==== Video: Color Format ====
: Returns true if the audio format of the clip is an integer type (type: bool).
+
* ''string'' clip.{{Term|PixelType}} (from v2.60)
* {{Term|IsRGB}} (clip)
+
: Returns the pixel type as a string, ''eg'' "RGB32".
: Returns true if the clip is [[RGB]], false otherwise (type: bool).
+
 
* {{Term|IsRGB24}} (clip)  (v2.07)
+
* ''bool'' clip.{{Term|IsPlanar}}
: Returns true if the clip is [[RGB24]], false otherwise (type: bool).
+
: Returns true if the color format is [[Planar]], false otherwise.
* {{Term|IsRGB32}} (clip)  (v2.07)
+
* ''bool'' clip.{{Term|IsInterleaved}}
: Returns true if the clip is [[RGB32]], false otherwise (type: bool).
+
: Returns true if the color format is [[Interleaved]], false otherwise.
* {{Term|IsYUV}} (clip)  (v2.54)
+
* ''bool'' clip.{{Term|IsRGB}}
: Returns true if the clip is [[YUV]], false otherwise (type: bool).
+
: Returns true if the color format is [[RGB]], false otherwise.
* {{Term|IsYUY2}} (clip)
+
: (applies to all RGB clips, whether Planar or Interleaved, RGB or RGBA)
: Returns true if the clip is [[YUY2]], false otherwise (type: bool).
+
* ''bool'' clip.{{Term|IsRGB24}}
* {{Term|IsY8}} (clip)  (v2.60)
+
: Returns true if the color format is [[RGB24]], false otherwise.
: Returns true if the clip is [[Y8]], false otherwise (type: bool).
+
* ''bool'' clip.{{Term|IsRGB32}}
* {{Term|IsYV12}} (clip)  (v2.52)
+
: Returns true if the color format is [[RGB32]], false otherwise.
: Returns true if the clip is [[YV12]], false otherwise (type: bool).
+
* ''bool'' clip.{{Term|IsYUV}}
* {{Term|IsYV16}} (clip)  (v2.60)
+
: Returns true if the color format is [[YUV]], false otherwise.
: Returns true if the clip is [[YV16]], false otherwise (type: bool).
+
: (note that {{Term|IsYUV}} returns ''false'' for a [[Avisynthplus_color_formats|YUVA]] clip, and vice versa)
* {{Term|IsYV24}} (clip)  (v2.60)
+
* ''bool'' clip.{{Term|IsYUY2}} (clip)
: Returns true if the clip is [[YV24]], false otherwise (type: bool).
+
: Returns true if the color format is [[YUY2]], false otherwise.
* {{Term|IsYV411}} (clip)  (v2.60)
+
* ''bool'' clip.{{Term|IsY8}} (from v2.60)
: Returns true if the clip is [[YV411]], false otherwise (type: bool).
+
: Returns true if the color format is [[Y8]], false otherwise.
* {{Term|PixelType}} (clip)  (v2.60)
+
* ''bool'' clip.{{Term|IsYV12}}
: Returns the pixel type of the clip (type: string).
+
: Returns true if the color format is [[YV12]], false otherwise.
* {{Term|IsFieldBased}} (clip)
+
* ''bool'' clip.{{Term|IsYV16}} (from v2.60)
: Returns true if the clip is field-based (type: bool). What this means is explained [[Interlaced_fieldbased|here]].
+
: Returns true if the clip color format is [[YV16]], false otherwise.
* {{Term|IsFrameBased}} (clip)
+
* ''bool'' clip.{{Term|IsYV24}} (v2.60)
: Returns true if the clip is frame-based (type: bool). What this means is explained [[Interlaced_fieldbased|here]].
+
: Returns true if the color format is [[YV24]], false otherwise.
* {{Term|IsPlanar}} (clip) (v2.51)
+
* ''bool'' clip.{{Term|IsYV411}} (from v2.60)
: Returns true if the clip color format is [[Planar]], false otherwise (type: bool).
+
: Returns true if the color format is [[YV411]], false otherwise.
* {{Term|IsInterleaved}} (clip) (v2.52)
+
* ''bool'' clip.{{Term|Is420}}
: Returns true if the clip color format is [[Interleaved]], false otherwise (type: bool).
+
: {{AvsPluscon}} Returns true if the color format is 4:2:0, false otherwise.
* {{Term|GetParity}} (clip, int n)
+
* ''bool'' clip.{{Term|Is422}}
: Returns true if frame n (default 0) is top field of field-based clip, or it is full frame with top field first of frame-based clip (type: bool).
+
: {{AvsPluscon}} Returns true if the color format is 4:2:2, false otherwise.
* {{Term|HasAudio}} (clip)  (v2.56)
+
* ''bool'' clip.{{Term|Is444}}
: Returns true if the clip has audio, false otherwise (type: bool).
+
: {{AvsPluscon}} Returns true if the color format is 4:4:4, false otherwise.
* {{Term|HasVideo}} (clip)  (v2.56)
+
* ''bool'' clip.{{Term|IsY}}
: Returns true if the clip has video, false otherwise (type: bool).
+
: {{AvsPluscon}} Returns true if the color format is ''Y''-plane only, false otherwise.
 +
* ''bool'' clip.{{Term|IsYUVA}}
 +
: {{AvsPluscon}} Returns true if the color format is [[Avisynthplus_color_formats|YUVA]], false otherwise.
 +
* ''bool'' clip.{{Term|IsRGB48}}
 +
: {{AvsPluscon}} Returns true if the color format is 16-bit RGB ([[Avisynthplus_color_formats|RGB48]]), false otherwise.
 +
* ''bool'' clip.{{Term|IsRGB64}}
 +
: {{AvsPluscon}} Returns true if the color format is 16-bit RBGA ([[Avisynthplus_color_formats|RGB64]]), false otherwise.
 +
 
 +
* ''bool'' clip.{{Term|IsPackedRGB}}
 +
: {{AvsPluscon}} Returns true if the color format is [[Interleaved]] RGB (RGB24/32/48/64), false otherwise.
 +
* ''bool'' clip.{{Term|IsPlanarRGB}}
 +
: {{AvsPluscon}} Returns true if the color format is [[Planar]] RGB, false otherwise.
 +
: (note that {{Term|IsPlanarRGB}} returns ''false'' for a Planar RGBA clip, and vice versa)
 +
* ''bool'' clip.{{Term|IsPlanarRGBA}}
 +
: {{AvsPluscon}} Returns true if the color format is [[Planar]] RGBA, false otherwise.
 +
: (note that {{Term|IsPlanarRGBA}} returns ''false'' for a Planar RGB clip, and vice versa)
 +
* ''bool'' clip.{{Term|HasAlpha}}
 +
: {{AvsPluscon}} Returns true if the color format has an alpha channel; (RGBA or YUVA), false otherwise.
 +
 
 +
* ''int'' clip.{{Term|ComponentSize}}
 +
: {{AvsPluscon}} Returns '''1''' for 8-bit formats, '''2''' for 10/12/14/16-bit formats, '''4''' for 32-bit float.
 +
* ''int'' clip.{{Term|NumComponents}}
 +
: {{AvsPluscon}} Returns '''1''' for ''Y''-only formats, '''3''' for RGB and YUV, '''4''' for RGBA and YUVA.
 +
* ''int'' clip.{{Term|BitsPerComponent}}
 +
: {{AvsPluscon}} Returns bit depth per channel &ndash; 8, 10, 12, 14, 16 or 32.
 +
 
 +
==== Audio ====
 +
<div style="width:55em; padding:1em; margin-left:0.5em; margin-bottom:1em; line-height:150%; border:1px solid black">
 +
'''Audio Duration Notes'''
 +
 
 +
The easiest way to get a clip’s duration in seconds is {{Term|AudioDuration}}. However, due to the limits of 32-bit floating-point math, the result is very close (within milliseconds per 24-hour day), but not exact.
 +
 
 +
{{Term|AudioLength}} returns a clip’s exact audio duration in samples. However, this is limited by the range a of 32-bit integer; with a long enough clip (at 48kHz sample rate, somewhat over 12 hours), the result wraps around to a negative number.
 +
 
 +
For an accurate sample count over long durations, {{Term|AudioLengthS}} returns the number as a string, and {{Term|AudioLengthHi}}×10<sup>9</sup>+{{Term|AudioLengthLo}} returns the full 64-bit value. Unfortunately, attempting to do precise arithmetic using either of these numbers within AviSynth runs into the same 32-bit math issues as mentioned above.
 +
</div>
 +
* ''int'' clip.{{Term|AudioRate}}
 +
: Returns the audio sample rate.
 +
* ''float'' clip.{{Term|AudioDuration}} (from v2.60)
 +
: Returns the audio duration in seconds.
 +
* ''int'' clip.{{Term|AudioLength}}
 +
: Returns the total number of audio samples, per audio channel.
 +
* ''float'' clip.{{Term|AudioLengthF}}
 +
: Returns the total number of audio samples as a float-point number.
 +
: No overflow limit, but there is a possible ''precision'' limit &ndash; see [[#Examples|Examples]] below.
 +
* ''string'' clip.{{Term|AudioLengthS}} (from v2.60)
 +
: Returns the total number of audio samples as a string.
 +
* ''int'' clip.{{Term|AudioLengthLo([ int ''m'' ])}} (from v2.60)
 +
* ''int'' clip.{{Term|AudioLengthHi([ int ''d'' ])}} (from v2.60)
 +
: clip.{{Term|AudioLengthLo}} returns the total number of audio samples, modulo {{Term|''m''}}, which is 10<sup>9</sup> by default.
 +
: clip.{{Term|AudioLengthHi}} returns the total number of audio samples, divided by {{Term|''d''}}, which is 10<sup>9</sup> by default.
 +
: Therefore, assuming {{Term|''m''}}=={{Term|''d''}}, the (possibly 64-bit) total equals {{Term|AudioLengthHi}} × {{Term|''m''}} + {{Term|AudioLengthLo}}.
 +
* ''int'' clip.{{Term|AudioChannels}}
 +
: Returns the number of audio channels.
 +
* ''int'' clip.{{Term|AudioBits}}
 +
: Returns the audio bit depth, ''eg'', 8, 16, 24 or 32.
 +
* ''bool'' clip.{{Term|IsAudioFloat}}
 +
: Returns true if the audio format is [[Float]].
 +
* ''bool'' clip.{{Term|IsAudioInt}}
 +
: Returns true if the audio format is an integer type.
 +
 
 +
 
 +
====Examples====
 +
* Clip duration = 10 seconds. All {{Term|AudioLength}} forms agree.
 +
<div {{BoxWidthIndent|46|2}} >
 +
[[ColorBars]](width=440, height=440)
 +
[[Trim]](0, 299)
 +
[[Info]]
 +
[[Levels]](0, 1.0, 255, 64, 255-64, coring=false)
 +
[[Subtitle]](
 +
\  "\nAudioLength  = "  + [[Internal_functions#String|String]](AudioLength)
 +
\ + "\nAudioLengthS = '" + AudioLengthS + "'"
 +
\ + "\nAudioLengthF = " + String(AudioLengthF)
 +
\ + "\nAudioLengthLo= " + String(AudioLengthLo)
 +
\ + "\nAudioLengthHi= " + String(AudioLengthHi)
 +
\ , font="courier", text_color=$ffffff, size=32, align=4, lsp=0)
 +
</div>
 +
:[[File:AudioLength-10s.png]]
 +
 
 +
 
 +
* Clip duration approximately 24 hours.
 +
<div {{ListItemContinue}} >
 +
Integer {{Term|AudioLength}} overloads (wraps around to a negative number), while the floating-point form has lost several digits of precision.
 +
</div>
 +
<div {{BoxWidthIndent|24|2}} >
 +
[[ColorBars]](width=440, height=440)
 +
<span style="color:green">#Trim(0, 299)</span>
 +
[[Loop]](24)
 +
Info
 +
...
 +
</div>
 +
:[[File:AudioLength-24hr.png]]
 +
<div {{ListItemContinue}} >
 +
Note the {{Term|AudioLengthHi}} / {{Term|AudioLengthLo}} arithmetic:
 +
:total = <tt>4</tt> × <tt>10</tt><sup>9</sup> + <tt>147195848</tt>
 +
:total = <tt>4147195848</tt>
 +
</div>
 +
</div>
 +
 
  
 
----
 
----

Latest revision as of 12:31, 4 November 2017

You can access a variety of clip properties in AviSynth scripts. For example, if the variable clip holds a video clip, then clip.Height is its height in pixels, clip.FrameCount is its length in frames, and so on.

Clip properties can be accessed like script variables, except that they are read-only (in C terminology, they cannot be L-values).

Contents


The full list of properties:

[edit] Content Properties

  • bool clip.HasAudio
Returns true if the clip has audio, false otherwise.
  • bool clip.HasVideo
Returns true if the clip has video, false otherwise.

[edit] Video: Resolution

  • int clip.Width
Returns the width of the clip in pixels.
  • int clip.Height
Returns the height of the clip in pixels.

[edit] Video: Framerate and Duration

(see also: AudioDuration and related properties)
  • int clip.FrameCount
Returns the total number of video frames contained in the clip.
  • float clip.FrameRate
Returns approximate framerate. Video framerate is actually a ratio of two 32-bit integers;
so for the precise number, use FrameRateNumerator and FrameRateDenominator.
  • int clip.FrameRateNumerator
Returns the framerate numerator.
  • int clip.FrameRateDenominator
Returns the framerate denominator.

[edit] Video: Interlacing

  • bool clip.IsFieldBased
Returns true if the clip is field-based. What this means is explained here.
  • bool clip.IsFrameBased
Returns true if the clip is frame-based. What this means is explained here.
  • bool clip.GetParity([ int f ])
Returns true if frame f (default 0) is the top field of a field-based clip, or if it is a full frame with top field first of a frame-based clip.

[edit] Video: Color Format

  • string clip.PixelType (from v2.60)
Returns the pixel type as a string, eg "RGB32".
  • bool clip.IsPlanar
Returns true if the color format is Planar, false otherwise.
  • bool clip.IsInterleaved
Returns true if the color format is Interleaved, false otherwise.
  • bool clip.IsRGB
Returns true if the color format is RGB, false otherwise.
(applies to all RGB clips, whether Planar or Interleaved, RGB or RGBA)
  • bool clip.IsRGB24
Returns true if the color format is RGB24, false otherwise.
  • bool clip.IsRGB32
Returns true if the color format is RGB32, false otherwise.
  • bool clip.IsYUV
Returns true if the color format is YUV, false otherwise.
(note that IsYUV returns false for a YUVA clip, and vice versa)
  • bool clip.IsYUY2 (clip)
Returns true if the color format is YUY2, false otherwise.
  • bool clip.IsY8 (from v2.60)
Returns true if the color format is Y8, false otherwise.
  • bool clip.IsYV12
Returns true if the color format is YV12, false otherwise.
  • bool clip.IsYV16 (from v2.60)
Returns true if the clip color format is YV16, false otherwise.
  • bool clip.IsYV24 (v2.60)
Returns true if the color format is YV24, false otherwise.
  • bool clip.IsYV411 (from v2.60)
Returns true if the color format is YV411, false otherwise.
  • bool clip.Is420
AVS+ Returns true if the color format is 4:2:0, false otherwise.
  • bool clip.Is422
AVS+ Returns true if the color format is 4:2:2, false otherwise.
  • bool clip.Is444
AVS+ Returns true if the color format is 4:4:4, false otherwise.
  • bool clip.IsY
AVS+ Returns true if the color format is Y-plane only, false otherwise.
  • bool clip.IsYUVA
AVS+ Returns true if the color format is YUVA, false otherwise.
  • bool clip.IsRGB48
AVS+ Returns true if the color format is 16-bit RGB (RGB48), false otherwise.
  • bool clip.IsRGB64
AVS+ Returns true if the color format is 16-bit RBGA (RGB64), false otherwise.
  • bool clip.IsPackedRGB
AVS+ Returns true if the color format is Interleaved RGB (RGB24/32/48/64), false otherwise.
  • bool clip.IsPlanarRGB
AVS+ Returns true if the color format is Planar RGB, false otherwise.
(note that IsPlanarRGB returns false for a Planar RGBA clip, and vice versa)
  • bool clip.IsPlanarRGBA
AVS+ Returns true if the color format is Planar RGBA, false otherwise.
(note that IsPlanarRGBA returns false for a Planar RGB clip, and vice versa)
  • bool clip.HasAlpha
AVS+ Returns true if the color format has an alpha channel; (RGBA or YUVA), false otherwise.
  • int clip.ComponentSize
AVS+ Returns 1 for 8-bit formats, 2 for 10/12/14/16-bit formats, 4 for 32-bit float.
  • int clip.NumComponents
AVS+ Returns 1 for Y-only formats, 3 for RGB and YUV, 4 for RGBA and YUVA.
  • int clip.BitsPerComponent
AVS+ Returns bit depth per channel – 8, 10, 12, 14, 16 or 32.

[edit] Audio

Audio Duration Notes

The easiest way to get a clip’s duration in seconds is AudioDuration. However, due to the limits of 32-bit floating-point math, the result is very close (within milliseconds per 24-hour day), but not exact.

AudioLength returns a clip’s exact audio duration in samples. However, this is limited by the range a of 32-bit integer; with a long enough clip (at 48kHz sample rate, somewhat over 12 hours), the result wraps around to a negative number.

For an accurate sample count over long durations, AudioLengthS returns the number as a string, and AudioLengthHi×109+AudioLengthLo returns the full 64-bit value. Unfortunately, attempting to do precise arithmetic using either of these numbers within AviSynth runs into the same 32-bit math issues as mentioned above.

  • int clip.AudioRate
Returns the audio sample rate.
  • float clip.AudioDuration (from v2.60)
Returns the audio duration in seconds.
  • int clip.AudioLength
Returns the total number of audio samples, per audio channel.
  • float clip.AudioLengthF
Returns the total number of audio samples as a float-point number.
No overflow limit, but there is a possible precision limit – see Examples below.
  • string clip.AudioLengthS (from v2.60)
Returns the total number of audio samples as a string.
  • int clip.AudioLengthLo([ int m ]) (from v2.60)
  • int clip.AudioLengthHi([ int d ]) (from v2.60)
clip.AudioLengthLo returns the total number of audio samples, modulo m, which is 109 by default.
clip.AudioLengthHi returns the total number of audio samples, divided by d, which is 109 by default.
Therefore, assuming m==d, the (possibly 64-bit) total equals AudioLengthHi × m + AudioLengthLo.
  • int clip.AudioChannels
Returns the number of audio channels.
  • int clip.AudioBits
Returns the audio bit depth, eg, 8, 16, 24 or 32.
  • bool clip.IsAudioFloat
Returns true if the audio format is Float.
  • bool clip.IsAudioInt
Returns true if the audio format is an integer type.


[edit] Examples

  • Clip duration = 10 seconds. All AudioLength forms agree.
ColorBars(width=440, height=440)
Trim(0, 299)
Info
Levels(0, 1.0, 255, 64, 255-64, coring=false)
Subtitle(
\   "\nAudioLength  = "  + String(AudioLength)
\ + "\nAudioLengthS = '" + AudioLengthS + "'"
\ + "\nAudioLengthF = " + String(AudioLengthF)
\ + "\nAudioLengthLo= " + String(AudioLengthLo)
\ + "\nAudioLengthHi= " + String(AudioLengthHi)
\ , font="courier", text_color=$ffffff, size=32, align=4, lsp=0)
AudioLength-10s.png


  • Clip duration approximately 24 hours.

Integer AudioLength overloads (wraps around to a negative number), while the floating-point form has lost several digits of precision.

ColorBars(width=440, height=440)
#Trim(0, 299)
Loop(24)
Info
...
AudioLength-24hr.png

Note the AudioLengthHi / AudioLengthLo arithmetic:

total = 4 × 109 + 147195848
total = 4147195848



Back to AviSynth Syntax.

Personal tools