forked from j62/ctbrec
1
0
Fork 0

Fix stream URL for wowza HLS streaming

This commit is contained in:
0xboobface 2019-12-28 19:54:55 +01:00
parent a9d87bfd99
commit e333175ecb
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ public class MyFreeCamsClient {
// wowza server
// https://video350.myfreecams.com/NxServer/ngrp:mfc_108514276.f4v_desktop/manifest_w515822224_qbmM9MC40NTQ0NTYxNjUyOTYzNDA4.mpd
if (useHls) {
streamUrl = HTTPS + server + ".myfreecams.com/NxServer/ngrp:mfc_" + userChannel + ".f4v_mobile/playlist.m3u8";
streamUrl = HTTPS + server + ".myfreecams.com/NxServer/ngrp:mfc_" + phase + '_' +userChannel + ".f4v_mobile/playlist.m3u8";
} else {
streamUrl = HTTPS + server + ".myfreecams.com/NxServer/ngrp:mfc_" + userChannel + ".f4v_desktop/manifest.mpd";
}