-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4943 from WakelessSloth56/preview-features
[组件 - 保存视频元数据] FFMETADATA 字段选项
- Loading branch information
Showing
3 changed files
with
46 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { defineOptionsMetadata, OptionsOfMetadata } from '@/components/define' | ||
|
||
export enum FieldsMode { | ||
ALL = '全部', | ||
Standard = '仅标准字段', | ||
} | ||
|
||
export const options = defineOptionsMetadata({ | ||
fieldsMode: { | ||
defaultValue: FieldsMode.ALL, | ||
displayName: 'FFMETADATA 字段', | ||
dropdownEnum: FieldsMode, | ||
}, | ||
}) | ||
|
||
export type Options = OptionsOfMetadata<typeof options> |