-
-
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.
feat: saveVideoMetadata - ffmetadata fields mode option
- Loading branch information
1 parent
c973a25
commit 5626e33
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> |