Difference between revisions of "Recordingprofiles table"
From MythTV Official Wiki
Line 1: | Line 1: | ||
The '''recordingprofiles''' table lists the current recording profiles or specification available for recording programs, eg. 'Live TV', High Quality', 'Default', 'Low Quality'. The ''name'' field relates to the ''profile'' field in the [[record table]]. The ''id'' field relates to the profile field in the [[codecparams table]] where the actual codec specifications are stored. The ''profilegroup'' field relates to the ''id'' field of the [[profilegroups table]]. | The '''recordingprofiles''' table lists the current recording profiles or specification available for recording programs, eg. 'Live TV', High Quality', 'Default', 'Low Quality'. The ''name'' field relates to the ''profile'' field in the [[record table]]. The ''id'' field relates to the profile field in the [[codecparams table]] where the actual codec specifications are stored. The ''profilegroup'' field relates to the ''id'' field of the [[profilegroups table]]. | ||
+ | |||
+ | == 0.20-fixes Version == | ||
+ | |||
+ | {| border=1 style="background:#D6DFE7" | ||
+ | !Field !! Type !! Null !! Key !! Default !! Extra | ||
+ | |- | ||
+ | || id || int(10) unsigned || || PRI || NULL || auto_increment | ||
+ | |- | ||
+ | || name || varchar(128) || YES || || NULL || | ||
+ | |- | ||
+ | || videocodec || varchar(128) || YES || || NULL || | ||
+ | |- | ||
+ | || audiocodec || varchar(128) || YES || || NULL || | ||
+ | |- | ||
+ | || profilegroup || int(10) unsigned || || || 0 || | ||
+ | |} | ||
[[Category:DB Table]] | [[Category:DB Table]] |
Revision as of 01:21, 23 February 2007
The recordingprofiles table lists the current recording profiles or specification available for recording programs, eg. 'Live TV', High Quality', 'Default', 'Low Quality'. The name field relates to the profile field in the record table. The id field relates to the profile field in the codecparams table where the actual codec specifications are stored. The profilegroup field relates to the id field of the profilegroups table.
0.20-fixes Version
Field | Type | Null | Key | Default | Extra |
---|---|---|---|---|---|
id | int(10) unsigned | PRI | NULL | auto_increment | |
name | varchar(128) | YES | NULL | ||
videocodec | varchar(128) | YES | NULL | ||
audiocodec | varchar(128) | YES | NULL | ||
profilegroup | int(10) unsigned | 0 |