Apparently `tv_episode` needs to be parsed as a [b]number[/b] otherwise it breaks the code.
So I changed
`
'VideoTVepisode' => array('VIDEO', 'tv_episode', gettext('Video TV Episode'), false, 256, true, 'string'),
`
to
`
'VideoTVepisode' => array('VIDEO', 'tv_episode', gettext('Video TV Episode'), false, 32, true, 'number'),
`
I added the "list" below to `functions.php` and the only tags that still do not show up are `sort_title` and `sort_album_artist`.
`
'VideoLyrics' => array('VIDEO', 'lyrics', gettext('Video Lyrics'), false, 256, true, 'string'),
'VideoComment' => array('VIDEO', 'comment', gettext('Video Comment'), false, 256, true, 'string'),
'VideoComposer' => array('VIDEO', 'composer', gettext('Video Composer'), false, 256, true, 'string'),
'VideoAlbum' => array('VIDEO', 'album', gettext('Video Album'), false, 256, true, 'string'),
'VideoAlbumArtist' => array('VIDEO', 'album_artist', gettext('Video Album Artist'), false, 256, true, 'string'),
'VideoGrouping' => array('VIDEO', 'grouping', gettext('Video Grouping'), false, 256, true, 'string'),
'VideoDescription' => array('VIDEO', 'description', gettext('Video Description'), false, 256, true, 'string'),
'VideoGenre' => array('VIDEO', 'genre', gettext('Video Genre'), false, 256, true, 'string'),
'VideoTVshow' => array('VIDEO', 'tv_show_name', gettext('Video TV Show'), false, 256, true, 'string'),
'VideoTVepisode' => array('VIDEO', 'tv_episode', gettext('Video TV Episode'), false, 32, true, 'number'),
'VideoTVepisodeID' => array('VIDEO', 'tv_episode_id', gettext('Video TV EpisodeID'), false, 256, true, 'string'),
'VideoSortTitle' => array('VIDEO', 'sort_title', gettext('Video Sort Title'), false, 256, true, 'string'),
'VideoSortAlbum' => array('VIDEO', 'sort_album', gettext('Video Sort Album'), false, 256, true, 'string'),
'VideoSortArtist' => array('VIDEO', 'sort_artist', gettext('Video Sort Artist'), false, 256, true, 'string'),
'VideoSortAlbumArtist' => array('VIDEO', 'sort_album_artist', gettext('Video Sort Album Artist'), false, 256, true, 'string'),
'VideoSortComposer' => array('VIDEO', 'sort_composer', gettext('Video Sort Composer'), false, 256, true, 'string'),
'VideoSortShow' => array('VIDEO', 'sort_show', gettext('Video Sort Show'), false, 256, true, 'string'),
`