-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buffered streams unplayable #3
Comments
Damn. I'll try recreate it over the weekend and take a look at the problem. |
Having the same behavior with Streamfin, as a suggestion (since you're only using M3U8 Playlists) I recommend using HLS.js as will most likely cover all this issues (https://github.com/video-dev/hls.js/) |
You are right! I have my first tests ready with HLS.js and it feels way more compatible with everything.. |
Sorry for taking so long to respond. I’ve made a lot of changes and tried my best to improve things. There’s a new development build available for testing, which includes two significant updates:
Here’s an example configuration: services:
streamdock:
image: ghcr.io/limmer55/streamdock:dev
container_name: streamdock
ports:
- "6050:6050"
environment:
- M3U_URL=https://iptv-org.github.io/iptv/index.m3u
- HW_ACCEL=vaapi
- HW_DEVICE=/dev/dri/renderD128
restart: unless-stopped
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
depends_on:
redis:
condition: service_healthy
redis:
container_name: redis
image: redis:alpine
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5 Theoretically, VAAPI, CUDA, QSV, Vulkan, and AMF should all be supported. If you don’t set HW_ACCEL and HW_DEVICE, transcoding will be skipped, and HLS.js will handle playback as best it can. Aside from this, there are some other changes under the hood, which I’ll describe later in the release notes. I’d really appreciate your feedback—whether you’re using transcoding or not! |
o7 This looks great! Take your time. The wait will be worth it! |
same error for me. it would be nice to keep up the good working on the app to get something similar to this in the next releases -> https://tvit.leicaflorianrobert.dev/channels |
I've a m3u generated by threadfin with a buffer through VLC.
Logically it takes some time for the stream to buffer, this makes the playback to time out.
The text was updated successfully, but these errors were encountered: