Skip to content
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

Preparation for Jellyfin 10.10 #95

Open
wants to merge 4 commits into
base: unstable
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions TVHeadEnd/LiveTvService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@
livetvasset.SupportsDirectStream = false;
livetvasset.RequiresClosing = true;
livetvasset.SupportsProbing = false;
livetvasset.Container = "mpegts";
livetvasset.UseMostCompatibleTranscodingProfile = true;

Check failure on line 436 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile' and no accessible extension method 'UseMostCompatibleTranscodingProfile' accepting a first argument of type 'MediaSourceInfo' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 436 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile' and no accessible extension method 'UseMostCompatibleTranscodingProfile' accepting a first argument of type 'MediaSourceInfo' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 436 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / build

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile' and no accessible extension method 'UseMostCompatibleTranscodingProfile' accepting a first argument of type 'MediaSourceInfo' could be found (are you missing a using directive or an assembly reference?)
livetvasset.RequiresOpening = true;
livetvasset.IsInfiniteStream = true;

Expand Down Expand Up @@ -467,7 +467,7 @@
AnalyzeDurationMs = 2000,
SupportsDirectStream = false,
SupportsProbing = false,
Container = "mpegts",
UseMostCompatibleTranscodingProfile = true,

Check failure on line 470 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'

Check failure on line 470 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'

Check failure on line 470 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / build

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'
MediaStreams = new List<MediaStream>
{
new MediaStream
Expand Down Expand Up @@ -584,7 +584,7 @@
recordingasset.SupportsDirectStream = false;
recordingasset.RequiresClosing = true;
recordingasset.SupportsProbing = false;
recordingasset.Container = "mpegts";
recordingasset.UseMostCompatibleTranscodingProfile = true;

Check failure on line 587 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile' and no accessible extension method 'UseMostCompatibleTranscodingProfile' accepting a first argument of type 'MediaSourceInfo' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 587 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile' and no accessible extension method 'UseMostCompatibleTranscodingProfile' accepting a first argument of type 'MediaSourceInfo' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 587 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / build

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile' and no accessible extension method 'UseMostCompatibleTranscodingProfile' accepting a first argument of type 'MediaSourceInfo' could be found (are you missing a using directive or an assembly reference?)
recordingasset.RequiresOpening = true;
recordingasset.IsInfiniteStream = true;

Expand Down Expand Up @@ -615,7 +615,7 @@
AnalyzeDurationMs = 2000,
SupportsDirectStream = false,
SupportsProbing = false,
Container = "mpegts",
UseMostCompatibleTranscodingProfile = true,

Check failure on line 618 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'

Check failure on line 618 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'

Check failure on line 618 in TVHeadEnd/LiveTvService.cs

View workflow job for this annotation

GitHub Actions / call / build

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'
MediaStreams = new List<MediaStream>
{
new MediaStream
Expand Down
6 changes: 4 additions & 2 deletions TVHeadEnd/RecordingsChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,10 @@
Path = path,
Protocol = path.StartsWith("http", StringComparison.OrdinalIgnoreCase) ? MediaProtocol.Http : MediaProtocol.File,
Id = item.Id,
Container = "mpegts",
AnalyzeDurationMs = 2000,
IsRemote = true,
UseMostCompatibleTranscodingProfile = true,

Check failure on line 287 in TVHeadEnd/RecordingsChannel.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'

Check failure on line 287 in TVHeadEnd/RecordingsChannel.cs

View workflow job for this annotation

GitHub Actions / call / test

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'

Check failure on line 287 in TVHeadEnd/RecordingsChannel.cs

View workflow job for this annotation

GitHub Actions / call / build

'MediaSourceInfo' does not contain a definition for 'UseMostCompatibleTranscodingProfile'
BufferMs = 1000,
AnalyzeDurationMs = 0,
MediaStreams = new List<MediaStream>
{
new MediaStream
Expand Down
Loading