Bond_009
635d67d458
Revert "Use System.Net.IPNetwork"
...
This reverts commit 117d05d288da1d412159a29c0cb8d5c8259e48ae.
12 months ago
Bond_009
b62b0ec2b5
Fix warnings
12 months ago
Stepan Goremykin
3259d484ff
Use generated regex
1 year ago
Joe Rogers
b95040bc5e
Add We;Na to split whitelist
1 year ago
Nyanmisaka
debbfaa502
Fix MJPEG video is recognized as embedded image ( #10173 )
...
fixes 1d729b2
Signed-off-by: nyanmisaka <nst799610810@gmail.com>
1 year ago
Shadowghost
f20856411e
Fix format normalizer for multiple input formats
1 year ago
Joe Rogers
ba336c25e1
Whitelist Smith/Kotzen
2 years ago
Michael Fuchs
a59ae91d5d
Add artist to artist split whitelist
...
# Changes
Added an artist whose name has forward slashes in it to the artist "/" split whitelist
# Issues
Related to issue #2305
2 years ago
Penelope Gwen / Pogmommy
20cf27f637
Add artist to artist split whitelist ( #9659 )
2 years ago
Cody Robibero
89be3aa37f
Convert Person.Type to use PersonKind enum ( #9487 )
2 years ago
Bond-009
6351d1022b
Merge pull request #9254 from Shadowghost/dvdbdfix
2 years ago
Shadowghost
47aa07c342
Fix DLNA playback of DVD and BD folders
2 years ago
Bond_009
24a7e210c3
Optimize tryparse
...
* Don't check for null before
* Don't try different formats when not needed (NumberFormat.Integer is the fast path)
2 years ago
Bond_009
65d605b17d
Improve ffprobe json parsing and don't log error for Codec Type attachment
2 years ago
Lars Strojny
44a870ca83
Add Phantom/Ghost to whitelist
2 years ago
Bond_009
75fe640f2b
Revert 'Fix interlace check for H.264 MBAFF coded MP4 files' ( #6222 )
2 years ago
bradvolen
f20dee8e0d
Adding "creation_time" as a tag lookup for FFProbe for premiere date ( #8884 )
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
Joe Rogers
62799697a1
Fix localization lookup
2 years ago
Joe Rogers
2e4db18ebe
Add hearing impaired subtitle stream indicator ( #7379 )
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
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
markus
0a15634550
Streams with CodecType "data" (like "epg" streams in DVB
...
recordings) get ignored. This results in wrong stream specifiers for all
subsequent streams. This fix correctly handles "data" streams without any
further processing.
2 years ago
Hannes Braun
4edeccc5e0
Remove redundant using directives
2 years ago
jakka
0b581aa655
added more artists with '/' in their names
2 years ago
jakka
778baf7bf5
added A/T/O/S to separator whitelist
2 years ago
Joshua M. Boniface
fe32b5e333
Merge pull request #7964 from jellyfin/dovi-side-data
...
(cherry picked from commit 39d185c7b1
)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
2 years ago
Cody Robibero
28223704f3
Merge pull request #7441 from 1337joe/add-external-stream-indicator
...
Add label for external audio/sub tracks
3 years ago
Joe Rogers
1a307db7eb
Add label for external audio/sub tracks
3 years ago
Mayur Panchal
96de01ce01
ProbeResultNormalizer: fix framerate compare + tests ( #7167 )
3 years ago
Bond-009
7d226e8eef
Merge pull request #7376 from GermanCoding/fix_soundhandler
3 years ago
GermanCoding
11bb834957
Remove superfluous "SoundHandler" from audio stream names
3 years ago
Joe Rogers
175ddff169
Switch chapter id to long to not break on ffmpeg 5.0
3 years ago
Shadowghost
4a3f1a51d2
chore(artist-split): add more artists to split whitelist
3 years ago
Cody Robibero
78bb581f0c
Merge pull request #6934 from nyanmisaka/hwa
...
HWA pipeline refactor, AMD/Intel/Nvidia full hardware filtering support, AV1 hwdec
3 years ago
Bond_009
cbfa355e31
Update StyleCop
3 years ago
nyanmisaka
728a5988b3
Merge remote-tracking branch 'origin/master' into hwa
3 years ago
nyanmisaka
b2d85a02c2
Apply suggestions from code review
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Co-authored-by: Bond_009 <bond.009@outlook.com>
3 years ago
nyanmisaka
4b9c84c52e
EncodingHelper hwaccel pipelines refactor
...
separate the HW pipeline according to HWA method for maintainability.
3 years ago
cvium
b880dc8a4a
Use our own Contains extension
3 years ago
Bond_009
968c534864
Return null on division by zero
3 years ago
Bond_009
f8fcbc88fc
Add tests for ProbeResultNormalizer.GetFrameRate
3 years ago
Bond_009
510f92f4c5
Don't check floats for equality
3 years ago
Cody Robibero
2a82f8dc40
Merge pull request #6222 from orryverducci/mbaff-interlace-detection
3 years ago
Benoît Dardenne
de2d292197
Added artist to '/' split whitelist
3 years ago
Orry Verducci
e446e9fde9
Merge branch 'master' into mbaff-interlace-detection
3 years ago
Joe Rogers
1d729b2b0f
Use codec to determine image format
3 years ago
Orry Verducci
9abe9e7e54
Add rounding to the time base check
3 years ago
Orry Verducci
3a89e88033
Merge remote-tracking branch 'upstream/master' into mbaff-interlace-detection
3 years ago
Joe Rogers
31baea072a
Address review comments
...
Clean up style
Fix references in class summaries
Combine Where+FirstOrDefault queries
Break up large method, long lines
Add validation on file extension
Apply test naming conventions
Extract mock of Movie class, comment on why not mocking interface
Co-authored-by: Cody Robibero <cody@robibe.ro>
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
3 years ago