Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/appendices/media-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ suffix with appropriate migration tooling

### Audio formats

{{ MACROS___make_extension_table(["wav", "mp3", "aac", "ogg"]) }}
{{ MACROS___make_extension_table(["wav", "flac", "mp3", "aac", "ogg"]) }}

### Video container formats

Expand Down
5 changes: 5 additions & 0 deletions src/schema/objects/extensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ fif:
display_name: Functional Imaging File Format
description: |
An MEG file format used by Neuromag, Elekta, and MEGIN.
flac:
value: .flac
display_name: Free Lossless Audio Codec
description: |
A [FLAC](https://en.wikipedia.org/wiki/FLAC) lossless audio file.
jpg:
value: .jpg
display_name: Joint Photographic Experts Group Format
Expand Down
9 changes: 9 additions & 0 deletions src/schema/objects/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,15 @@ AttenuationCorrectionMethodReference:
description: |
Reference paper for the attenuation correction method used.
type: string
AudioBitDepth:
name: AudioBitDepth
display_name: Audio Bit Depth
description: |
Number of bits per sample in the audio stream
(for example, `16`, `24`, or `32`).
Typically reported for uncompressed or losslessly compressed audio.
type: integer
minimum: 1
AudioChannelCount:
name: AudioChannelCount
display_name: Audio Channel Count
Expand Down
1 change: 1 addition & 0 deletions src/schema/rules/sidecars/media.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ MediaAudioProperties:
AudioCodec: recommended
AudioSampleRate: recommended
AudioChannelCount: recommended
AudioBitDepth: optional
AudioCodecRFC6381: optional

MediaImageProperties:
Expand Down
Loading