aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api
AgeCommit message (Collapse)Author
2019-11-27Merge pull request #1503 from cvium/webapi_v2Vasily
Move StartupWizard to ASP.NET Web Api
2019-11-24Merge pull request #1991 from Bond-009/transtempJoshua M. Boniface
Don't append transcodes to transcoding temp path
2019-11-24Merge pull request #2045 from Bond-009/baseurlfix2Joshua M. Boniface
Fix baseurl issues part 2
2019-11-24Merge pull request #2039 from Bond-009/fixconditiondkanada
Fix always false condition
2019-11-23Fix baseurl (attempt #2)Bond_009
2019-11-23Merge pull request #1926 from Bond-009/authdkanada
Add clearer exceptions, warnings and docs
2019-11-22Fix always false conditionBond_009
2019-11-22Fix some warningsBond-009
2019-11-21Don't append transcodes to transcoding temp pathBond-009
2019-11-21minor changes to transcode cleanup scheduled taskdkanada
2019-11-19Move StartupWizard to ASP.NET Web ApiClaus Vium
2019-11-17Remove leading / from baseurlBond_009
2019-11-13Fix GetPathValue function for DLNA serviceBond-009
2019-11-13Fix logicBond-009
2019-11-13Fix GetPathValue functionBond-009
2019-11-07Merge branch 'master' into installationmanagerBond-009
2019-11-07Merge pull request #1973 from EraYaN/docs-warning-fixesdkanada
Fix the last of the docs warnings
2019-11-03Merge pull request #1904 from JustAMan/hls-move-2Joshua M. Boniface
Switch ffmpeg to hls muxer (from segment) to fix premature stop on non-patched ffmpeg
2019-11-03Remove extraneous newlineJoshua Boniface
2019-11-03Fix the last docs warnings.Erwin de Haan
2019-11-01Improve IInstallationManager interfaceBond_009
2019-11-01Rewrite hex encoder/decoderBond_009
2019-11-02Merge pull request #1852 from Bond-009/warn9dkanada
Fix some more warnings
2019-10-29Fix more warningsBond_009
2019-10-27Move throwing if cancelled after logging that factVasily
2019-10-27Apply suggestions from code reviewVasily
Co-Authored-By: Bond-009 <bond.009@outlook.com>
2019-10-23update persons servicegrafixeyehero
2019-10-21Address Bond-009 review commentsVasily
2019-10-21Update MediaBrowser.Api/Playback/BaseStreamingService.csVasily
Co-Authored-By: Bond-009 <bond.009@outlook.com>
2019-10-20Add clearer exceptions, warnings and docsBond_009
2019-10-16Address review commentsVasily
2019-10-14Revert "yarn build" as it is fixed in master, fix typoVasily
2019-10-14* Make sure force_key_frames expression arguments are properly converted to ↵Vasily
strings * Fore usage of keyframe cuts only in HLS
2019-10-14Add limiting max keyframe interval when full transcodingVasily
2019-10-14Fix log message - log args were swappedVasily
2019-10-14Don't start waiting for a segment which doesn't exist if transcoding is not ↵Vasily
running
2019-10-14Stop waiting for a segment to become ready if there's no alive transcodeVasily
Remove extra quotes in logging Fix typo in comment
2019-10-14Add more loggingVasily
Trying to fix hls muxer plus ffmpeg 4.1+ combo Try to fix waiting for segment being ready This is needed because hls muxer in ffmpeg >= 4.1 creates the playlist only when it finishes transcoding. Also cleaned up logs a bit. Lower log level for "StartFfmpeg finished" to debug
2019-10-14Revert "Revert "Fix premature stop when streaming""Vasily
This reverts commit 575b96d03a2cf98a0e5dd9d9f7329adca34c0311.
2019-10-02Add using block and HexHelperBill Thornton
2019-10-02Fix SchedulesDirect authenticationBill Thornton
2019-10-01Revert "Fix premature stop when streaming"Joshua M. Boniface
2019-09-29Ignore exception when attempting to kill ffmpeg that has exitedAndrew Rabert
A race condition where this code attempts to kill an already exited ffmpeg process is possible. This results in unnecessary error logging. This change replaces the generic exception handling with the above mentioned exception. No log output is produced.
2019-09-27Cleaned up move to HLS muxerVasily
2019-09-27Replaced "stream" muxer with "hls" trying to fix "premature stop" issueVasily
2019-09-23Fix multiple mistakes and warningsBond_009
2019-09-17Remove legacy auth code (#1677)Bond-009
* Remove legacy auth code * Adds tests so we don't break PasswordHash (again) * Clean up interfaces * Remove duplicate code * Use auto properties * static using * Don't use 'this' * Fix build
2019-09-10Fix culture problem on Windows for segment_time_delta argument.Erwin de Haan
2019-09-08Possible fix for MrMCBond_009
2019-09-02Fix warnings, improve performance (#1665)Bond-009
* Fix warnings, improve performance `QueryResult.Items` is now a `IReadOnlyList` so we don't need to allocate a new `Array` when we have a `List` (and `Items` shouldn't need to be mutable anyway) * Update Providers .csproj to latest C# * Remove extra newline from DtoService.cs * Remove extra newline from UserLibraryService.cs