mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #5951] [CLOSED] DLNA fix : Make media visible and playable #10745
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/5951
Author: @BaronGreenback
Created: 5/1/2021
Status: ❌ Closed
Base:
master← Head:AnotherDlnaFix📝 Commits (5)
92d9358Make media visible by change ext to .ts and passing ext on urle10f8dcremoved null annotationb02a30dUpdate MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs4f1cc6fMerge branch 'master' into AnotherDlnaFixf0a409eMerge branch 'master' into AnotherDlnaFix📊 Changes
10 files changed (+60 additions, -58 deletions)
View changed files
📝
Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs(+1 -1)📝
Jellyfin.Api/Controllers/AudioController.cs(+5 -2)📝
Jellyfin.Api/Controllers/VideosController.cs(+10 -4)📝
Jellyfin.Api/Helpers/MediaInfoHelper.cs(+3 -3)📝
Jellyfin.Api/Helpers/StreamingHelpers.cs(+6 -8)📝
Jellyfin.Api/Helpers/TranscodingJobHelper.cs(+1 -1)📝
Jellyfin.Api/Models/StreamingDtos/StreamState.cs(+5 -5)📝
Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs(+6 -1)📝
MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs(+8 -18)📝
MediaBrowser.Model/Dlna/StreamInfo.cs(+15 -15)📄 Description
Some devices / software do not show media if they cannot play use container, stopping the possibility of it be transcoded.
VLC and Hisense TV's both do this - i'm sure there are others.
This change returns all media via DLNA with the extension .ts. The original file extension is passed as a parameter.
Once the request to stream has been received, this correct file extension is used for transcoding selection / playback.
Have tried without using a file extension - but the same issue occurs.
Suspect this is the cause of https://github.com/jellyfin/jellyfin-plugin-dlna/issues/8.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.