after searching in the help file I reached this script but how to put it in a custom column
Code: Select all
echo property('System.Video.FrameWidth') . 'x' . property('System.Video.FrameHeight');
Code: Select all
echo property('System.Video.FrameWidth') . 'x' . property('System.Video.FrameHeight');
Code: Select all
$x = property('System.Video.FrameWidth', <cc_item>);
$y = property('System.Video.FrameHeight', <cc_item>);
if ($x && $y) { return $x . 'x' . $y };
else { return "<not supported>" };
Code: Select all
return property('System.Video.FrameWidth', <cc_item>) . 'x' . property('System.Video.FrameHeight', <cc_item>);
Code: Select all
<prop 'System.Video.FrameWidth'>x<prop 'System.Video.FrameHeight'>