Skip to content

Standard way to reference audio channels #154

Description

@mrlimbic

At the moment each NLE is adding it's own custom metadata to reference audio channels for a clip.

Something like audio channel info seems so basic to me that it should be part of the standard, rather than everyone do it differently.

Resolve method:

                        "OTIO_SCHEMA": "Clip.2",
                        "metadata": {
                            "Resolve_OTIO": {
                                "Channels": [
                                    {
                                        "Source Channel ID": 0, // <!-- Channel index within stream
                                        "Source Track ID": 0 // <-- stream index within media
                                    }
                                ]
                            }
                        },

Premiere method:

                                        "OTIO_SCHEMA": "Clip.2",
                                        "metadata": {
                                            "PremierePro_OTIO": {
                                                "AudioChannels": {
                                                    "ChannelType": "Stereo",
                                                    "SecondaryAssignments": [
                                                        {
                                                            "SecondaryChannelIndex": 0
                                                        },
                                                        {
                                                            "SecondaryChannelIndex": 1
                                                        }
                                                    ]
                                                },
                                                "OriginalChannelGroupIndex": 0, // <-- unsure what this means - audio stream index?
                                                "SourceClipIndex": 0 // <-- unsure what this means - audio stream index?
                                            }
                                        },

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions