aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
6 hoursTranslated using Weblate (Lithuanian)HEADmasterVitalijus
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lt/
22 hoursTranslated using Weblate (Lithuanian)Vitalijus
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lt/
32 hoursTranslated using Weblate (Hungarian)Keleti Márton
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/hu/
32 hoursTranslated using Weblate (German)simonanter
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/de/
42 hoursMerge pull request #17315 from Florin-Popescu/replaygain-missing-tagsCody Robibero
Parse ReplayGain album gain field
43 hoursTranslated using Weblate (Faroese)krvi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fo/
43 hoursTranslated using Weblate (Polish)Kityn
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/pl/
43 hoursTranslated using Weblate (Spanish)Luis Fernando Illapa
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es/
43 hoursMerge pull request #17466 from Shadowghost/fix-byname-queriesCody Robibero
Improve People deduplication, fix search and restrict ItemByName responses
43 hoursMerge pull request #17537 from vdatanet/fix/pcm-wav-transcodeCody Robibero
Fix PCM audio transcoding to wav returning HTTP 500 and headerless output
43 hoursMerge pull request #17549 from theguymadmax/revert-livetv-channel-icon-refreshCody Robibero
Revert "Refresh Live TV channel icons on every guide update."
43 hoursMerge pull request #17524 from Shadowghost/fix-extra-discoveryCody Robibero
Keep folder extras with the item that owns the folder
47 hoursRevert "Refresh Live TV channel icons on every guide update."theguymadmax
This reverts commit 372c1681d8272c6fa8f120a132bc40351067fb10.
2 daysMerge pull request #17507 from jellyfin/renovate/sharpcompress-0.xBond-009
Update dependency SharpCompress to 0.50.4
2 daysUpdate dependency SharpCompress to 0.50.4renovate[bot]
2 daysTranslated using Weblate (Spanish)Luis Fernando Illapa
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es/
2 daysTranslated using Weblate (Estonian)rimasx
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/et/
2 daysTranslated using Weblate (Danish)Dan Johansen
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/da/
2 daysTranslated using Weblate (Czech)Helak
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/cs/
2 daysMerge pull request #17493 from jellyfin/renovate/ci-depsBond-009
Update github/codeql-action action to v4.37.6
2 daysProject the lowered person credit values once when updating peopleShadowghost
2 daysMerge remote-tracking branch 'upstream/master' into fix-byname-queriesShadowghost
# Conflicts: # Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
3 daysTranslated using Weblate (Faroese)krvi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fo/
3 daysTranslated using Weblate (Faroese)krvi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fo/
3 daysMerge pull request #17523 from Shadowghost/fix-resume-container-foldersCody Robibero
Only treat series and seasons as resumable folders
3 daysTranslated using Weblate (Lithuanian)Vitalijus
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lt/
3 daysTranslated using Weblate (Arabic)Translation expert
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ar/
3 daysMerge pull request #17528 from Shadowghost/websocket-logs-debugCody Robibero
Degrade ForceKeepAlive logs to debug
3 daysFix PCM audio transcoding to wav returning HTTP 500 and headerless outputvdatanet
`GetProgressiveAudioFullCommandLine` forced the raw PCM muxer and a bogus sample rate whenever the audio encoder was `pcm_*`, regardless of the container the client asked for. Two separate failures came out of it: - `-ar ` + `state.BaseRequest.AudioBitRate` used a *bitrate* as a *sample rate*, and `AudioBitRate` is optional. When it is absent the argument degrades to a bare `-ar`, ffmpeg aborts with `Expected number for ar but found: -ar` / `Error opening output files: Invalid argument` (exit 234) and the request fails with HTTP 500. Every `GET /Audio/{id}/stream.wav` that does not carry an explicit `AudioBitRate` hits this. The sample rate was already being set correctly a few lines below from `OutputAudioSampleRate`, so the line is dropped rather than repaired. - `-f s16le` overrode the muxer even for a real container. A request that did supply a bitrate (`/Audio/{id}/universal` passes `MaxStreamingBitrate`) survived the first bug but produced raw headerless samples served under an `audio/wav` content type, so clients saw a body with no RIFF header. The raw muxer is now only forced when the requested container is actually raw PCM, which keeps the I2S/MCU route from #10321 working. Also drop the `containerInternal = ".pcm"` assignment in `StreamingHelpers.GetStreamingState`: it is written after `state.OutputContainer` has already been read from the same variable and is never read again, so it has no effect and only obscures where the output container comes from. Verified against ffmpeg 8.1.2 with a 96 kHz FLAC source: before, the wav command line exits 234; after, it produces a valid `RIFF/WAVE` 48 kHz stereo `pcm_s16le` file, while the raw `.pcm` route still yields exactly 2 s x 48000 x 2ch x 2 B = 384000 bytes of headerless samples.
3 daysUpdate github/codeql-action action to v4.37.6renovate[bot]
3 daysTranslated using Weblate (Icelandic)Shed Shedson
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/is/
3 daysTranslated using Weblate (Korean)Yunseo Jung
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ko/
3 daysTranslated using Weblate (Italian)Vincenzo Reale
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/it/
4 daysTranslated using Weblate (Faroese)krvi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fo/
4 daysTranslated using Weblate (Ukrainian)potuzhnyj
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/uk/
4 daysTranslated using Weblate (Swedish)Erik W
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sv/
4 daysTranslated using Weblate (Lithuanian)Vitalijus
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lt/
4 daysFix /Persons favourites timing out by removing the correlated favourites joinShadowghost
4 daysDegrade ForceKeepAlive logs to debugShadowghost
4 daysTranslated using Weblate (Faroese)krvi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fo/
4 daysTranslated using Weblate (Slovak)nextlooper42
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sk/
4 daysTranslated using Weblate (Italian)Vincenzo Reale
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/it/
4 daysTranslated using Weblate (French)myrad2267
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fr/
4 daysTranslated using Weblate (French (Canada))myrad2267
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fr_CA/
4 daysTranslated using Weblate (Arabic)Translation expert
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ar/
4 daysFix testShadowghost
4 daysKeep folder extras with the item that owns the folderShadowghost
4 daysOnly treat series and seasons as resumable foldersShadowghost
4 daysTranslated using Weblate (Spanish (Latin America))Robin
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_419/
4 daysTranslated using Weblate (Spanish (Mexico))Robin
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_MX/