JPVenson
5ceedced1c
Feature/media segments plugin api ( #12359 )
5 months ago
Shadowghost
994266a54f
Fixup
5 months ago
Shadowghost
08ed0a9a5d
Cleanup tasks
5 months ago
Bond-009
f68038f2cf
Run DeleteTranscodeFileTask on startup ( #12239 )
7 months ago
Bond-009
c666f9d050
Use real temp dir instead of cache dir for temp files ( #12226 )
7 months ago
Shadowghost
6734450d40
Backport pull request #12025 from jellyfin/release-10.9.z
...
Fix empty image folder removal for legacy locations
Original-merge: 476dc01f4d
Merged-by: Bond-009 <bond.009@outlook.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
7 months ago
Bond-009
ac114b27a9
Backport pull request #11911 from jellyfin/release-10.9.z
...
Log album name and id in normalization task
Original-merge: c9b6ebd94f
Merged-by: Bond-009 <bond.009@outlook.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
7 months ago
Shadowghost
a13dc9b91c
Backport pull request #12123 from jellyfin/release-10.9.z
...
Fix Cleanup Task metadata saving
Original-merge: 85078d8f10
Merged-by: Bond-009 <bond.009@outlook.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
7 months ago
Bond-009
c7f87c0d69
Backport pull request #11910 from jellyfin/release-10.9.z
...
Audio normalization: parse ffmpeg output line by line
Original-merge: d2be2ee480
Merged-by: joshuaboniface <joshua@boniface.me>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
8 months ago
Bond-009
3feb3f81bf
More efficient array creation ( #11468 )
9 months ago
Bond_009
9ffb07d67f
Fix filename
9 months ago
Bond_009
8c9d0df7f2
Address comments
9 months ago
Bond_009
276ae3b8b7
Skip albums that don't have multiple tracks
9 months ago
Bond_009
88a38a61b5
Improve audio normalization
...
* Move calculation of LUFS to a scheduled task as it's pretty slow
* Correctly calculate album LUFS
* Don't try to convert replaygain tags to LUFS values
9 months ago
John M
c791331952
Fix task CleanupCollectionAndPlaylistPathsTask removing valid paths ( #11410 )
9 months ago
JPVenson
81d3758785
#11289 Fixed cleanup task not checking for folders ( #11311 )
10 months ago
Patrick Barron
8698b90594
Remove SimpleProgress
1 year ago
Bond_009
244a739675
Fix incorrect path check in CleanupCollectionAndPlaylistPathsTask
1 year ago
Cody Robibero
892973a9e3
Merge branch 'master' into media-type
1 year ago
Stepan Goremykin
a773b43a81
Merge reading from file and parsing
1 year ago
Cody Robibero
2920611ffc
Convert string MediaType to enum MediaType
1 year ago
Stepan Goremykin
73309f2649
Pass cancellation token
1 year ago
Tim Eisele
151d678b0e
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
1 year ago
Tim Eisele
bce45992d9
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
1 year ago
Tim Eisele
61a49e94c4
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
1 year ago
Tim Eisele
fccea4625d
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionAndPlaylistPathsTask.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
1 year ago
Shadowghost
783bb8a8cb
Apply review suggestions
1 year ago
Shadowghost
f7720e7c99
Extend collections cleanup task to include playlists too
1 year ago
Joshua M. Boniface
76939bbd9b
Merge pull request #9231 from JPVenson/bugfix/1907_CleanupCollections
2 years ago
Cody Robibero
cc82ca189f
suggestions from review
2 years ago
JPVenson
0f60ec3013
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionPathsTask.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
2 years ago
JPVenson
8b6fca59a1
Update Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionPathsTask.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2 years ago
Bond-009
9ccfe3121f
Merge pull request #9103 from DarrenRuane/darrenruane_fix_chapter_images_deletion
2 years ago
Bond_009
d280dc6554
Reduce log spam
...
Fixes #7801
2 years ago
Bond_009
cb85fc688f
Enable nullable for more files
2 years ago
Jean-Pierre Bachmann
0ed4fd5759
Changed LogTrace to LogDebug
2 years ago
Jean-Pierre Bachmann
2a4cc4d942
Updated logging level and formatting
2 years ago
Jean-Pierre Bachmann
0b71974054
Fixed whitespace
2 years ago
JPVenson
341658b552
Update CleanupCollectionPathsTask.cs
...
Removed code smell and switched to non creation for non existing collection folder
2 years ago
Jean-Pierre Bachmann
6b8d169529
Added CleanupCollection task
2 years ago
Patrick Barron
8479f0f90c
Rename JellyfinDb to JellyfinDbContext
2 years ago
DarrenRuane
776294b5f8
Fix pre-existing chapter images not being deleted after the chapter image generation setting is disabled
2 years ago
Bond_009
52194f56b5
Replace != null with is not null
2 years ago
Bond_009
c7d50d640e
Replace == null with is null
2 years ago
Bond_009
fb3e97d7ac
Use typed logger
2 years ago
Bond_009
556cc8062d
Investigate some TODO comments
2 years ago
cvium
b836fe9685
remove JellyfinDbProvider and add second level caching
2 years ago
Bond_009
a9a5fcde81
Use ArgumentNullException.ThrowIfNull helper method
...
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);
```
2 years ago
Cody Robibero
cc608c17bd
Merge pull request #7512 from crobibero/update-plugin
...
(cherry picked from commit ca67a48140
)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
3 years ago
Bond_009
5732e6188c
Fix some warnings
3 years ago