live777 icon indicating copy to clipboard operation
live777 copied to clipboard

Add api audio and video codec

Open a-wing opened this issue 1 year ago • 2 comments

Stream need has audio and video codec

a-wing avatar Jun 15 '24 15:06 a-wing

Maybe have. codec: vp8 , av1.... and fmtp a=fmtp:108 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f a

a-wing avatar Jul 11 '24 03:07 a-wing

Before:

{
    "id": "push",
    "createdAt": 1719326206862,
    "publish": {
      "leaveAt": 0,
      "sessions": [
        {
          "id": "08c1f2a0a60b0deeb66ee572bd369f80",
          "createdAt": 1719326206947,
          "state": "connected"
        }
      ]
    },
    "subscribe": {
      "leaveAt": 1719326206862,
      "sessions": []
    }
  },

After:

{
    "id": "push",
    "audio": {
        "codec": "opus",
        "fmtp": "",
    },
    "video": {
        "codec": "h264",
        "fmtp": "level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f",
    },
    "createdAt": 1719326206862,
    "publish": {
      "leaveAt": 0,
      "sessions": [
        {
          "id": "08c1f2a0a60b0deeb66ee572bd369f80",
          "createdAt": 1719326206947,
          "state": "connected"
        }
      ]
    },
    "subscribe": {
      "leaveAt": 1719326206862,
      "sessions": []
    }
  },

a-wing avatar Jul 18 '24 16:07 a-wing