Dio
11/06/2022, 4:16 PMDio
11/06/2022, 4:17 PMDio
11/06/2022, 4:18 PMRachel
11/06/2022, 4:18 PMDeleted User
11/07/2022, 12:34 AMdra
11/07/2022, 10:53 AMcurl --location --request GET 'https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/stream/analytics/views?metrics=totalImpressions,totalTimeViewedMs&dimensions=videoId&filters=videoId==58c7b2dab7536a6617df915bcb8a1ce7&since=2022-11-06T17:00:00Z' \
--header 'Authorization: Bearer <TOKEN>' \
--header 'Cookie: __cflb=0H28vgHxwvgAQtjUGU56Rb8iNWZVUvXhuUPPxVKSn3w; __cfruid=5a19c4662e41c3022d629b672933e207f5b7c5b0-1667802061'
dra
11/07/2022, 10:54 AMKyle_Cloudflare
11/07/2022, 3:37 PMDeleted User
11/07/2022, 10:24 PMdra
11/08/2022, 2:40 AMcount
from response return 9
.
Could you explain why this happen?
curl --location --request POST 'https://api.cloudflare.com/client/v4/graphql' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <TOKEN>' \
--header 'Cookie: __cflb=0H28vgHxwvgAQtjUGU56Rb8iNWZVUvXhaDBxeWBAF7B; __cfruid=5a19c4662e41c3022d629b672933e207f5b7c5b0-1667802061' \
--data-raw '{"query":"query {\n viewer {\n accounts(filter:{\n accountTag: \"<ACCOUNT_ID>\"\n \n }) {\n streamMinutesViewedAdaptiveGroups(\n filter: {\n datetime_geq: \"2022-11-07T17:13:00+07:00\"\n }\n orderBy:[sum_minutesViewed_DESC]\n limit: 10000\n ) {\n sum {\n minutesViewed\n }\n count\n dimensions{\n uid\n }\n }\n }\n }\n}","variables":{}}'
Emilio
11/08/2022, 7:40 AMtt2468
11/08/2022, 7:41 AMEmilio
11/08/2022, 7:42 AMelithrar
11/08/2022, 2:07 PMOnyx
11/08/2022, 5:31 PMDELETE
to the publish endpoint returns a 405 now, it used to return 200 as expected before
2 - Any chance of using H.264 for video? I'm running my stream(s) from a Raspberry Pi and VP8 is really struggling on there
Have a few more issues but I want to analyze my side of it first because it might be me or GStreamer not doing something right :)leon22212
11/08/2022, 10:07 PMtypescript
const video = document.getElementById("videoPlayer") as HTMLVideoElement;
if (Hls.isSupported()) {
const hls = new Hls();
hls.attachMedia(video);
hls.on(Hls.Events.MEDIA_ATTACHED, () => {
hls.loadSource(``);
});
//play video
video.play();
} else if (video.canPlayType("application/vnd.apple.mpegurl")) {
video.src = ``;
}
marve
11/08/2022, 11:53 PMBrendan Irvine-Broque
11/09/2022, 12:40 AMDeleted User
11/09/2022, 5:03 AMDeleted User
11/09/2022, 5:04 AMmarve
11/09/2022, 11:22 AMmarve
11/09/2022, 11:27 AMmarve
11/09/2022, 11:29 AMzegevlier
11/09/2022, 11:31 AMmarve
11/09/2022, 11:32 AMDeleted User
11/09/2022, 3:31 PMDeleted User
11/09/2022, 3:45 PMDeleted User
11/09/2022, 3:46 PM