| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-12-29 | Merge pull request #7494 from Shadowghost/streambuilder-cleanup | Bond-009 | |
| 2022-12-14 | Default to no bitrate limit if no maxBitrate is set (#8850) | Shadowghost | |
| Fixes https://github.com/jellyfin/jellyfin/issues/3277 | |||
| 2022-12-07 | Fix .Net 7 compatibility | Shadowghost | |
| 2022-12-07 | Prefer var in StreamBuilder | Shadowghost | |
| 2022-12-07 | Add xmldoc for MediaOptions | Shadowghost | |
| 2022-12-07 | Apply review suggestions | Shadowghost | |
| 2022-12-07 | Cleanup and refactor streambuilder | Shadowghost | |
| 2022-12-07 | Use ArgumentException.ThrowIfNullOrEmpty | Bond_009 | |
| 2022-12-05 | Replace != null with is not null | Bond_009 | |
| 2022-12-05 | Replace == null with is null | Bond_009 | |
| 2022-10-31 | fix secondary audio | Dmitry Lyzo | |
| Browsers (Chrome, Firefox) can only play the first track, even if the second track is the default. Ignore default flag when testing on secondary audio. External audio tracks are not secondary. | |||
| 2022-10-28 | Backport pull request #8411 from jellyfin/release-10.8.z | Maxr1998 | |
| Allow direct play even if no audio stream is available Original-merge: bf129ab9b831ee1dcc3d56ed7d3f0ec79a00fc27 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me> | |||
| 2022-10-07 | Merge pull request #8503 from Bond-009/ThrowIfNull | Claus Vium | |
| 2022-10-06 | Fix minor warnings in MediaBrowser.Model/Configuration (#2149) | Jan Sommer | |
| 2022-10-06 | Use ArgumentNullException.ThrowIfNull helper method | Bond_009 | |
| Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ``` | |||
| 2022-09-28 | Remove redundant using directives | Hannes Braun | |
| 2022-08-15 | Fix various typos | luz paz | |
| Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows` | |||
| 2022-06-29 | Merge pull request #7947 from nyanmisaka/video-range-condition | Cody Robibero | |
| (cherry picked from commit f1d56aa5cef4c60021e0b29c5d9fb3adf384fda7) Signed-off-by: Joshua Boniface <joshua@boniface.me> | |||
| 2022-05-20 | Merge pull request #7712 from jellyfin/fix-hevc-disable-option | Joshua M. Boniface | |
| (cherry picked from commit 5a9e5e0d5dc9179dd816f7ec93cc21dc8a02468a) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 2022-05-20 | Merge pull request #7699 from Shadowghost/streambuilder-fix | Joshua M. Boniface | |
| (cherry picked from commit b46d61dfdf5e068a9feb26d8b41377a9fdb2cba6) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 2022-04-17 | Merge pull request #7537 from dmitrylyzo/fix-streambuilder | Cody Robibero | |
| (cherry picked from commit 5833c707259247338c27b1a75a175c5aba925c29) Signed-off-by: Joshua Boniface <joshua@boniface.me> | |||
| 2022-04-07 | Merge pull request #7523 from crobibero/null-stream | Cody Robibero | |
| Allow media without streams to playback (cherry picked from commit 577325b7888c5769c9d9c329ebd40e5f388242ad) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 2022-03-25 | Fix DLNA DirectPlay | Shadowghost | |
| 2022-03-20 | Fix remuxing | Dmitry Lyzo | |
| 2022-03-20 | Add TranscodingProfile conditions | Dmitry Lyzo | |
| 2022-03-19 | Use requested bitrate for calculations | Cody Robibero | |
| 2022-03-13 | Revert using Math.Clamp | Cody Robibero | |
| 2022-03-12 | Merge pull request #7325 from eyezak/issue/6450 | Cody Robibero | |
| 2022-03-12 | Fix flipped Clamp args | Cody Robibero | |
| 2022-03-11 | Merge pull request #7346 from Bond-009/guid | Claus Vium | |
| Optimize Guid comparisons | |||
| 2022-03-06 | Suggestions from review | Cody Robibero | |
| 2022-03-06 | Remove TranscodeReason.None, Add JsonFlagEnum tests | Cody Robibero | |
| 2022-03-06 | Clean up EnumFlags serialization | Cody Robibero | |
| 2022-03-06 | Update MediaBrowser.Model/Dlna/StreamBuilder.cs | Isaac Gordezky | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2022-03-06 | Fix transcode video matching and add tests for Transcode and Safari | Isaac Gordezky | |
| 2022-03-06 | Series: issue-6450 | Isaac Gordezky | |
| Issue: https://github.com/jellyfin/jellyfin/issues/6450 Enable DirectPlay responses Rewrite DirectPlay and DirectStream resolution Prefer copy transcode video codec options Enhance condition processor Support DirectStream and Transcode with parity Rework audio stream selection and add tests for ExternalAudio Update MediaInfoHelper to only call StreamBuilder once | |||
| 2022-03-06 | Convert TranscodeReason to Flags | Isaac Gordezky | |
| 2022-02-21 | Optimize Guid comparisons | Bond_009 | |
| * Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty | |||
| 2022-02-18 | feat(external-media): refactor external subtitle and audio provider | Shadowghost | |
| 2022-02-14 | Fix some warnings | Bond_009 | |
| 2022-01-06 | Add null check for audio stream | Cody Robibero | |
| 2021-12-27 | Remove more warnings | Cody Robibero | |
| 2021-12-24 | Update StyleCop | Bond_009 | |
| 2021-12-24 | Merge pull request #6920 from marius-luca-87/subtitle_drop | Cody Robibero | |
| 2021-12-24 | Merge pull request #7029 from cvium/allocations_maybe | Cody Robibero | |
| 2021-12-21 | Force a remux/transcode with external audio files | cvium | |
| 2021-12-20 | Use our own Contains extension | cvium | |
| 2021-12-09 | - add an option for dropping specific subtitle formats using the DLNA ↵ | Marius Luca | |
| SubtitleProfile | |||
| 2021-11-26 | - enable seek function when direct streaming over DLNA | Marius Luca | |
| 2021-11-09 | Fix SortCriteria and refactor SetSorting | cvium | |
