Blancduman / mediasoup-client-flutter

Flutter version of the mediasoup-client library.
MIT License
106 stars 52 forks source link

Is it able to support VP9 SVC? #45

Open haoxinllc opened 2 years ago

haoxinllc commented 2 years ago

Mediasoup-client-flutter Is it able to support VP9 SVC?

ollyde commented 2 years ago

Also seeing this issue get the following bug ""video/VP8 codec not supported for svc [method:transport.produce]"

Our media codec is like so

    {
        kind: "video",
        mimeType: "video/VP8",
        clockRate: 90000,
        parameters: {
            "x-google-start-bitrate": 1000,
        },
        // @ts-ignore
        scalabilityModes: ["L1T2", "L1T3"],
    },
    {
        kind: "video",
        mimeType: "video/VP9",
        clockRate: 90000,
        parameters: {
            "profile-id": 2,
            "x-google-start-bitrate": 1000,
        },
        // @ts-ignore
        scalabilityModes: ["L1T2", "L1T3", "L1T2h", "L1T3h"],
    },

Not sure what to do here