Search the Community
Showing results for tags 'trakt'.
-
First, I use emby for years so thank you for emby The clients were always very simple and thin (and "local") which I appreciate but a bit too thin for my needs which kept me always jump between clients/servers. One thing that would made a world of difference for me, would be client's menu integration with an external library management service (personally I use trakt but trying to stay generic). Similar to kodi"s trakt's plugin but just it's user facing side (context aware's menu options) From the client menu be able to: 1. Add/remove the item to/from a list. 2. Add/remove the item from watchlist/collection. 3. Set rating on a item (maybe even configure to ask for rating if watched more than X% of the item). (My main client is the android TV app but I guess it's a FF for all clients).
-
Hi Using Kodi in conjunction with the Emby Trakt plugin and Up Next causes some hiccups. I only use one user for myself which is on my main RPi and desktop and also if I'm using my phone etc remotely. I want to keep this setup with the ability to continue watching on all devices. Would it be possible to add an option to exclude clients, in my case Kodi, from the Trakt plugin? That way I can scrobble with the Kodi plugin that shouldn't have this problem, but also keep scrobbling as usual with other devices and keep my library updated on Trakt. Thanks
-
Trakt scrobbling from Emby Connect on Android TV
fixedtheglitch posted a topic in Tools and Utilities
Is there a tool or add on that allows you to sync your Trakt watched state/history with an Emby Connect account from the client side? I do not have access to install something on the server, but it would seem that something client-side should be able to scrobble to Trakt. -
Asking here as I don’t see an option in the server settings. is there a possibility that when syncing with Trakt and using trakts “rewind feature” when re watching a series, it will act like a new series with next up fictions within Trakt. But on Emby if a show has already been watched and you started to rewatch the series the next episode will not populate in the “continue watching” section or “next up (legacy)” section. The only way to get the next up episode it to start the next episode let it play then back out.
-
Hi! This is my trakt config: With this, I would have expected to only have the scrobbler active: POST https://api.trakt.tv/scrobble/start POST https://api.trakt.tv/scrobble/stop But when I mark something as watched in Emby, it sends a history event to trakt, and adds a play in my history: POST https://api.trakt.tv/sync/history Would there be way to disable this? It particularly bit me when I imported my watch history from plex and inserted thousands of watches in trakt
-
First crack at this... using powershell for now since it's my native language. Attempting to create a composite movie rating leveraging the standard set of ratings sources, while adding weighting measures to various community ratings. Definitely some more conditions and logic will be needed for scenarios where subsets of ratings sources are available, but the weighting math should hopefully mitigate a chunk of that. Feedback welcome! $moviename = "Monty Python and the Holy Grail" $rtaudiencerating = 95 $rtaudiencecount = 645107 $rtcriticrating = 98 $rtcriticcount = 82 $tmdbrating = 7.8 $tmdbcount = 5028 $traktrating = 8.3 $traktcount = 11089 $metacriticrating = 91 $imdbrating = 8.2 $imdbcount = 547137 $ratings = @{} $null = $ratings.Add('tomatometerallaudience',@{'MaxValue'=100;'rating'=$rtaudiencerating;'weight'=10;'votecount'=$rtaudiencecount } ) $null = $ratings.Add('tomatometerallcritics',@{'MaxValue'=100;'rating'=$rtcriticrating;'weight'=10;'votecount'=$rtcriticcount} ) $null = $ratings.Add('themoviedb',@{'MaxValue'=10;'rating'=$tmdbrating;'weight'=20;'votecount'=$tmdbcount} ) $null = $ratings.Add('trakt',@{'MaxValue'=10;'rating'=$traktrating;'weight'=20;'votecount'=$traktcount} ) $null = $ratings.Add('metacritic',@{'MaxValue'=100;'rating'=$metacriticrating;'weight'=20;'votecount'=0} ) $null = $ratings.Add('imdb',@{'MaxValue'=10;'rating'=$imdbrating;'weight'=20;'votecount'=$imdbcount} ) $community = @{} $totalcommunityvotes = $ratings['imdb'].votecount + $ratings['trakt'].votecount + $ratings['themoviedb'].votecount + $ratings['tomatometerallaudience'].votecount $imdbpercentvotes = [math]::Round( $ratings['imdb'].votecount / $totalcommunityvotes,3) $traktpercentvotes = [math]::Round( $ratings['trakt'].votecount / $totalcommunityvotes,3) $tmdbpercentvotes = [math]::Round( $ratings['themoviedb'].votecount / $totalcommunityvotes,3) $rtpercentvotes = [math]::Round( $ratings['tomatometerallaudience'].votecount / $totalcommunityvotes,3) $communitysum = $imdbpercentvotes + $traktpercentvotes + $tmdbpercentvotes + $rtpercentvotes if ( $communitysum -gt 1 ) { $rtpercentvotes = $rtpercentvotes - ($communitysum - 1) } elseif ( $communitysum -lt 1 ) { $imdbpercentvotes = $imdbpercentvotes + (1 - $communitysum) } $adjtraktcount = 1; if ( $traktpercentvotes -eq 0 -and $ratings['trakt'].votecount -ne 0 ) { $adjtraktcount = 100 } elseif ( $traktpercentvotes -lt 0.002 ) { $adjtraktcount = 100 } elseif ( $traktpercentvotes -lt 0.004 ) { $adjtraktcount = 80 } elseif ( $traktpercentvotes -lt 0.006 ) { $adjtraktcount = 60 } elseif ( $traktpercentvotes -lt 0.008 ) { $adjtraktcount = 50 } elseif ( $traktpercentvotes -lt 0.010 ) { $adjtraktcount = 30 } elseif ( $traktpercentvotes -lt 0.100 ) { $adjtraktcount = 10 } $adjtmdbcount = 1; if ( $tmdbpercentvotes -eq 0 -and $ratings['themoviedb'].votecount -ne 0 ) { $adjtmdbcount = 100 } elseif ( $tmdbpercentvotes -lt 0.002 ) { $adjtmdbcount = 100 } elseif ( $tmdbpercentvotes -lt 0.004 ) { $adjtmdbcount = 80 } elseif ( $tmdbpercentvotes -lt 0.006 ) { $adjtmdbcount = 60 } elseif ( $tmdbpercentvotes -lt 0.008 ) { $adjtmdbcount = 50 } elseif ( $tmdbpercentvotes -lt 0.010 ) { $adjtmdbcount = 30 } elseif ( $tmdbpercentvotes -lt 0.100 ) { $adjtmdbcount = 10 } $adjtotalcommunityvotes = $ratings['imdb'].votecount + ($ratings['trakt'].votecount*$adjtraktcount) + ($ratings['themoviedb'].votecount*$adjtmdbcount) + $ratings['tomatometerallaudience'].votecount $adjimdbpercentvotes = [math]::Round( $ratings['imdb'].votecount / $adjtotalcommunityvotes,3) $adjtraktpercentvotes = [math]::Round( ($ratings['trakt'].votecount * $adjtraktcount) / $adjtotalcommunityvotes,3) $adjtmdbpercentvotes = [math]::Round( ($ratings['themoviedb'].votecount * $adjtmdbcount) / $adjtotalcommunityvotes,3) $adjrtpercentvotes = [math]::Round( $ratings['tomatometerallaudience'].votecount / $adjtotalcommunityvotes,3) $adjcommunitysum = $adjimdbpercentvotes + $adjtraktpercentvotes + $adjtmdbpercentvotes + $adjrtpercentvotes if ( $adjcommunitysum -gt 1 ) { $adjrtpercentvotes = $adjrtpercentvotes - ($adjcommunitysum - 1) } elseif ( $adjcommunitysum -lt 1 ) { $adjimdbpercentvotes = $adjimdbpercentvotes + (1 - $adjcommunitysum) } $null = $community.Add('imdb',@{'votecount'=$ratings['imdb'].votecount;'percentage'=$imdbpercentvotes;'adjpercent'=$adjimdbpercentvotes } ) $null = $community.Add('trakt',@{'votecount'=$ratings['trakt'].votecount;'percentage'=$traktpercentvotes;'adjpercent'=$adjtraktpercentvotes } ) $null = $community.Add('themoviedb',@{'votecount'=$ratings['themoviedb'].votecount;'percentage'=$tmdbpercentvotes;'adjpercent'=$adjtmdbpercentvotes } ) $null = $community.Add('tomatometerallaudience',@{'votecount'=$ratings['tomatometerallaudience'].votecount;'percentage'=$rtpercentvotes;'adjpercent'=$adjrtpercentvotes } ) $communityweight = 70; if ( !$ratings.ContainsKey('metacritic') ) { $communityweight = $communityweight + 20 } if ( !$ratings.ContainsKey('tomatometerallcritics') ){ $communityweight = $communityweight + 10 } $scoring = @{}; $scoringtable = New-Object System.Collections.ArrayList $ratings.GetEnumerator() | ForEach-Object { $current = $_; $source = $current.Name $sourcetype = $null; if ( $source -in ('tomatometerallcritics','metacritic') ) { $sourcetype = "Critic" } else { $sourcetype = "Community" } $sourcerating = $current.Value.rating $sourcemax = $current.Value.MaxValue if ( $sourcemax -eq 5 ) { $adjustedmax = $sourcemax*20; $adjustedrating = $sourcerating*20 } elseif ( $sourcemax -eq 10 ) { $adjustedmax = $sourcemax*10; $adjustedrating = $sourcerating*10 } else { $adjustedmax = $sourcemax; $adjustedrating = $sourcerating } $sourcevotecount = $current.Value.votecount $communitylookup = $null; $communitylookup = $community[$source] $communityvotepercent = $communitylookup.percentage $communityadjvotepercent = $communitylookup.adjpercent $weighting = 0; if ( $sourcetype -eq "Community" ) { $weighting = $communityadjvotepercent * $communityweight } else { $weighting = $current.Value.weight } $newcompositerating = ($adjustedrating * ($weighting/100 ) ) $null = $scoring.Add($source,@{'SourceType'=$sourcetype;'SourceVoteCount'=$sourcevotecount;'SourceRating'=$sourcerating;'SourceMax'=$sourcemax;'AdjustedRating'=$adjustedrating;'AdjustedMax'=$adjustedmax;'CommunityVotePrc'=$communityvotepercent;'AdjCommunityVotePrc'=$communityadjvotepercent; 'Weight'=$weighting; 'NewRating'= $newcompositerating } ) $null = $scoringtable.Add([pscustomobject]@{'Source' =$source;'SourceType'=$sourcetype;'SourceVoteCount'=$sourcevotecount;'SourceRating'=$sourcerating;'SourceMax'=$sourcemax;'AdjustedRating'=$adjustedrating;'AdjustedMax'=$adjustedmax;'CommunityVotePrc'=$communityvotepercent;'AdjCommunityVotePrc'=$communityadjvotepercent; 'Weight'=$weighting; 'NewRating'= $newcompositerating } ) } #$highestweight = $scoringtable | Sort-Object Weight -Descending | Select-Object -First 1 if ( ($scoringtable.Weight | Measure-Object -Sum).Sum -gt 100.1 ) { Write-Warning "Weighting calculated over 100.1%" } elseif ( ($scoringtable.Weight | Measure-Object -Sum).Sum -lt 99.9 ) { Write-Warning "Weighting calculated under 99.9%" } $NewRating = [math]::Round( (($scoringtable.NewRating | Measure-Object -Sum).Sum/10),1) Write-Output "","" Write-Output "Current movie is $($moviename)." Write-Output "Rotten Tomatoes Critic rating is $($rtcriticrating) out of 100." Write-Output "Rotten Tomatoes Community rating is $($rtaudiencerating) out of 100." Write-Output "Metacritic rating is $($metacriticrating) out of 100." Write-Output "Trakt community rating is $($traktrating) out of 10." Write-Output "IMDB community rating is $($imdbrating) out of 10." Write-Output "The MovieDB rating is $($tmdbrating) out of 10." Write-Output "","New composite rating is $($NewRating) out of 10."
-
I have both emby premier and Trakt VIP. My windows server stopped updating Trakt. Simkl is working just fine. I have deleted and reinstalled the plug in, but it still wont update. What am I doing wrong? embyserver.txt
-
There's 3 issues I'm currently facing with the Trakt plugin as it is now. The plugin is trying to sync data for users who don't have the plugin set up. There's a lot of the following error in the logs when I run the "Import Playstates from Trakt" scheduled task, one for each user I have that doesn't have the plugin set up (i.e. they have their input field for "Authentication PIN" empty). 2023-02-05 14:14:34.825 Error Trakt: Error syncing trakt data for user <username here> *** Error Report *** Version: 4.8.0.21 Command line: /app/emby/EmbyServer.dll -programdata /config -ffdetect /app/emby/ffdetect -ffmpeg /app/emby/ffmpeg -ffprobe /app/emby/ffprobe -restartexitcode 3 Operating system: Linux version 5.15.0-58-generic (buildd@lcy02-amd64-101) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #64-Ubuntu Framework: .NET 6.0.8 OS/Process: x64/x64 Runtime: app/emby/System.Private.CoreLib.dll Processor count: 4 Data path: /config Application path: /app/emby MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: BadRequest at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod) at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod) at Trakt.Api.TraktApi.PostToTrakt(String url, Object data, CancellationToken cancellationToken, TraktUser traktUser) at Trakt.Api.TraktApi.RefreshUserAuth(TraktUser traktUser, CancellationToken cancellationToken) at Trakt.Api.TraktApi.SetRequestHeaders(HttpRequestOptions options, TraktUser traktUser, CancellationToken cancellationToken) at Trakt.Api.TraktApi.GetFromTrakt(String url, TraktUser traktUser, CancellationToken cancellationToken) at Trakt.Api.TraktApi.SendGetAllWatchedMoviesRequest(TraktUser traktUser, CancellationToken cancellationToken) at Trakt.ScheduledTasks.SyncFromTraktTask.SyncTraktDataForUser(User user, Double currentProgress, CancellationToken cancellationToken, IProgress`1 progress, Double percentPerUser) at Trakt.ScheduledTasks.SyncFromTraktTask.Execute(CancellationToken cancellationToken, IProgress`1 progress) Source: Emby.Server.Implementations TargetSite: Void MoveNext() Running the "Export Library to Trakt" scheduled task fails with "Error Trakt: traktUser is either null or has no linked MB account". Here's a link to the gist for the debug logs when I run that task: GitHub Gist. The logs are also attached. Folders that aren't shared with users show up under the list of folders that can be excluded in the Trakt section of their user settings. These folders are all part of the same library, and I'm only sharing one out of the 3 folders in that library, but all 3 show up in that list of folders to be excluded from being synced with Trakt. For example, here's the folders they have access to: Image But, here's what they see under the user Trakt settings: Image I'd expect the folders for private content to not show up in that list since it's not shared with them and they're not supposed to know about their existence imo. Thanks for the help in advance export_library_to_trakt.log
-
There have been multiple scenarios that have left me wanting more granular settings in the Trakt plugin. The most recent example is: Show 1 has been watched in 2015. I want to un-mark it as watched in Emby and not lose my watch history in Trakt. It's currently marked as watched in Emby and watched in Trakt. Even though I currently have "Update Trakt watched history during Scheduled Task" turned off. When I un-mark Show 1 as watched, it removes all my watch history from Trakt. The Trakt plugin settings tick boxes, along with whether you have the scheduled tasks scheduled or not, give some control. However I can't seem to get what I want. I think back to when I used to use the Trakt plugin in Plex and it had "push and/or pull" setting options and terminology. How about something like this: Emby activity database changed to support better 2 way Trakt sync (as well as other things) Another pre-requisite task I think is perhaps a revisit of the watch history database in Emby. Currently Emby doesn't show you the date/time you watched something or the number of times you've watched something. If Emby did store this, the 2 way sync task to Trakt would act as a backup or both systems. If Trakt API was down and a scrobble event didn't register, the next scheduled sync would fill in the gaps. This is how the Kodi plugin used to work, it was great. Recently Trakt crashed and potentially lost data as well as had a long period of time when scrobbles weren't working. This would be a great use case of a 2 way sync in Emby would save the day. I did download through the Reports plugin, user activity. It shows events like "started playing" and "stopped playing". This should also have have "completed" which would equal media being marked as played.
- 12 replies
-
- 2
-
- trakt
- watch status
-
(and 2 more)
Tagged with:
-
Trakt overwriting Continue Watching for TV episodes (but not movies)
mhendu posted a topic in Plugins
I've had this problem for months now - when I watch a TV episode and do not finish the episode it sits in Continue Watching until the Trakt plugin Import playstates task runs. Once that task executes it removes the TV episode from Continue Watching. If I disable this task this behavior doesn't occur, and this only happens for TV episodes, not movies. Log attached. Any idea how I might fix this behavior? I'm currently on Emby 4.5.0.6 beta, but this has been occurring on every version of Emby that I've had installed for about six months now. I'm using Trakt plugin 3.4.4.0. -
I discovered earlier in the week that Trakt hasnt scrobbled since April. I am also unable to enable Trakt debug logging. https://i.imgur.com/jQnppGB.mp4 embyserver - 20220623.txt Trakt - 20220623.xml
-
How Emby handles episodes marked as unwatched after a Trakt sync
toffee_123 posted a topic in General/Windows
I have tried to mark episodes as unwatched in Emby, so I can rewatch a show and get the next episode in 'continue watching'. However, as I'm using the Trakt plugin, when the plugin syncs, the unwatched status in Emby is overridden based on the Trakt play history. There are three possible solutions to this, two of which are not preferable: Remove plays from Trakt (not preferable, as this defeats one of the purposes of Trakt - keeping a record of my watches). Disable Update Trakt watched history during Scheduled Task option (not preferable, as I need to keep watches synced between Emby and Plex). Change the behaviour of Emby/the Trakt plugin, so when manually marking an item as unwatched in Emby, this is not overridden by a Trakt sync (or add an option in the Trakt plugin settings to specify how Emby will handle this situation). Option 3 is is how Plex handles this situation, and is why I currently have to do my rewatches on Plex rather than Emby (I'm a lifetime member of both). It would be really cool if you could change this behaviour in Emby, as I've noted multiple users have also had issues with this behaviour in the past. -
Hello there, I noticed the Trakt plugin was updated, this is when the issue started. Tested Emby app on iOS, Raspberry Pi running Emby Theatre (latest stable installed from .deb file) and the web player. All mark TV episodes as watched twice. The real end time is one, and it looks like the start time is the other. This only happens after you finish the episode. IE when you start it, there is no watch in Trakt, just 2 as soon as the episode is completed. Screenshot of Trakt attached I enabled degub logging in the Trakt plugin and the Emby server. I have the corresponding log file but I'd rather not post it publicly, please let me know and I can send it if required. Note I haven't been able to install the Server update (4.3.0.26) as it isn't appearing in the Synology package manager yet My server version is v4.2.0.1 Thanks.
-
Dear tech, since the update to the new version 4.4.3.0 (DSM 6.2.3-25426 and DS1019+), I'm having the following issues: Sync library to trakt.tv failed Error: TrustFailure (Authentication failed, see inner exception.) at Emby.Server.Implementations.HttpClientManager.HttpClientManager.SendAsyncInternal (MediaBrowser.Common.Net.HttpRequestOptions options, System.String httpMethod) [0x00353] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.HttpClientManager.HttpClientManager.SendAsync (MediaBrowser.Common.Net.HttpRequestOptions options, System.String httpMethod) [0x0009e] in <4b2b35e458474e708c04b3533f59ad82>:0 at Trakt.Api.TraktApi+<>c__DisplayClass34_0.<posttotrakt>b__0 () [0x0007c] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.Api.TraktApi.Retry[T] (System.Func`1[TResult] function) [0x00245] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.Api.TraktApi.PostToTrakt (System.String url, System.Object data, System.Threading.CancellationToken cancellationToken, Trakt.Model.TraktUser traktUser) [0x00252] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.Api.TraktApi.RefreshUserAuth (Trakt.Model.TraktUser traktUser, System.Threading.CancellationToken cancellationToken) [0x00125] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.Api.TraktApi.SetRequestHeaders (MediaBrowser.Common.Net.HttpRequestOptions options, Trakt.Model.TraktUser traktUser, System.Threading.CancellationToken cancellationToken) [0x000c8] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.Api.TraktApi.GetFromTrakt (System.String url, System.Threading.CancellationToken cancellationToken, Trakt.Model.TraktUser traktUser) [0x000f6] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.Api.TraktApi.SendGetAllWatchedMoviesRequest (Trakt.Model.TraktUser traktUser, System.Threading.CancellationToken cancellationToken) [0x0008a] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.ScheduledTasks.SyncLibraryTask.SyncMovies (MediaBrowser.Controller.Entities.User user, Trakt.Model.TraktUser traktUser, Trakt.Helpers.ISplittableProgress`1[T] progress, System.Threading.CancellationToken cancellationToken) [0x000d0] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.ScheduledTasks.SyncLibraryTask.SyncUserLibrary (MediaBrowser.Controller.Entities.User user, Trakt.Model.TraktUser traktUser, Trakt.Helpers.ISplittableProgress`1[T] progress, System.Threading.CancellationToken cancellationToken) [0x00093] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Trakt.ScheduledTasks.SyncLibraryTask.Execute (System.Threading.CancellationToken cancellationToken, System.IProgress`1[T] progress) [0x0014e] in <319a042f62314a96b3ed06ea52bb8d7d>:0 at Emby.Server.Implementations.ScheduledTasks.ScheduledTaskWorker.ExecuteInternal (MediaBrowser.Model.Tasks.TaskOptions options) [0x00195] in <4b2b35e458474e708c04b3533f59ad82>:0 </posttotrakt> Check for plugin updates failed Error: TrustFailure (Authentication failed, see inner exception.) at Emby.Server.Implementations.HttpClientManager.HttpClientManager.SendAsyncInternal (MediaBrowser.Common.Net.HttpRequestOptions options, System.String httpMethod) [0x00858] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.HttpClientManager.HttpClientManager.SendAsync (MediaBrowser.Common.Net.HttpRequestOptions options, System.String httpMethod) [0x0009e] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo (System.Boolean enableCache, System.Threading.CancellationToken cancellationToken) [0x000da] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePluginUpdates (System.Version applicationVersion, System.Threading.CancellationToken cancellationToken) [0x000a6] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.ScheduledTasks.PluginUpdateTask.Execute (System.Threading.CancellationToken cancellationToken, System.IProgress`1[T] progress) [0x000a0] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.ScheduledTasks.ScheduledTaskWorker.ExecuteInternal (MediaBrowser.Model.Tasks.TaskOptions options) [0x00195] in <4b2b35e458474e708c04b3533f59ad82>:0 Check for application updates failed Error: TrustFailure (Authentication failed, see inner exception.) at Emby.Server.Implementations.HttpClientManager.HttpClientManager.SendAsyncInternal (MediaBrowser.Common.Net.HttpRequestOptions options, System.String httpMethod) [0x00858] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.HttpClientManager.HttpClientManager.SendAsync (MediaBrowser.Common.Net.HttpRequestOptions options, System.String httpMethod) [0x001f4] in <4b2b35e458474e708c04b3533f59ad82>:0 at MediaBrowser.Common.Updates.GithubUpdater.CheckForUpdateResult (System.String organzation, System.String repository, System.Version minVersion, MediaBrowser.Model.Updates.PackageVersionClass updateLevel, System.String assetFilename, System.String packageName, System.String targetFilename, System.TimeSpan cacheLength, System.Threading.CancellationToken cancellationToken) [0x000f6] in <e30bc54a9b6b4a178546a5ec376a41f9>:0 at Emby.Server.Implementations.ApplicationHost.CheckForApplicationUpdate (System.Threading.CancellationToken cancellationToken, System.IProgress`1[T] progress) [0x00157] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.ScheduledTasks.SystemUpdateTask.Execute (System.Threading.CancellationToken cancellationToken, System.IProgress`1[T] progress) [0x00086] in <4b2b35e458474e708c04b3533f59ad82>:0 at Emby.Server.Implementations.ScheduledTasks.ScheduledTaskWorker.ExecuteInternal (MediaBrowser.Model.Tasks.TaskOptions options) [0x00195] in <4b2b35e458474e708c04b3533f59ad82>:0 </e30bc54a9b6b4a178546a5ec376a41f9> If you need anything else, please let me know. Thanks.
-
Is there a way to add items to my collection in Trakt, but not remove them? I have media accross several different platforms, and the Trakt sync just wiped out my Trakt Collection. The items still show up in Trakt for me, so its not too hard to get them back, but it is a little annoying. I found a post from last year, that stated that "dont remove from collection" would be added in the next version, but it looks like the author is no longer active. Is this something that will be done? Edit: Is the Trakt plugin maintained by the Emby team, or is it community driven? I can submit a PR if needed. Thanks,
-
I found sync library to trakt.tv failed which was working before. Import playstates from Trakt.tv is working. I tried to change a new trakt token. Upgraded to 4.4.3. It doesn't help. Below is the log. Forbidden at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod) at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod) at Trakt.Api.TraktApi.<>c__DisplayClass34_0.<<posttotrakt>b__0>d.MoveNext() --- End of stack trace from previous location where exception was thrown --- at Trakt.Api.TraktApi.Retry[T](Func`1 function) at Trakt.Api.TraktApi.PostToTrakt(String url, Object data, CancellationToken cancellationToken, TraktUser traktUser) at Trakt.Api.TraktApi.RefreshUserAuth(TraktUser traktUser, CancellationToken cancellationToken) at Trakt.Api.TraktApi.SetRequestHeaders(HttpRequestOptions options, TraktUser traktUser, CancellationToken cancellationToken) at Trakt.Api.TraktApi.GetFromTrakt(String url, CancellationToken cancellationToken, TraktUser traktUser) at Trakt.Api.TraktApi.SendGetAllWatchedMoviesRequest(TraktUser traktUser, CancellationToken cancellationToken) at Trakt.ScheduledTasks.SyncLibraryTask.SyncMovies(User user, TraktUser traktUser, ISplittableProgress`1 progress, CancellationToken cancellationToken) at Trakt.ScheduledTasks.SyncLibraryTask.SyncUserLibrary(User user, TraktUser traktUser, ISplittableProgress`1 progress, CancellationToken cancellationToken) at Trakt.ScheduledTasks.SyncLibraryTask.Execute(CancellationToken cancellationToken, IProgress`1 progress) at Emby.Server.Implementations.ScheduledTasks.ScheduledTaskWorker.ExecuteInternal(TaskOptions options)</posttotrakt>
-
Hello, Since the last plugin update this week (3.3.1.0), Trakt no longer updates my collection. It does scrobble and it does seem to download. I have re authenticated both users to Trakt both it still fails. I have attached the Emby log file that seems to show its an authentication api issue? Tried going back to 3.3.0.0 and all works. Any help please? thanks, Neil. Log.txt
-
Hi I'm having some trouble getting Emby to pull and sync the data of how much I have watched of a video from Trakt. I'm using Trakt on Kodi, Plex, and Emby. Between Kodi and Plex everything works no matter where I watch the video, I can continue watching from where I left of using any of the services. However, in Emby it does not seem to pull the data from Trakt because it will not update the progress of a video watched on any of the other platforms. What does work is starting to watch a video on Emby and then continue watching on any of the other two platforms. And when i play a video in Emby I can go to Trakt.tv and it correctly states which movie is playing and the progress. So It can communicate with Trakt and send/receive some data. I'm getting no Errors when running the scheduled Trakt tasks in Emby. I've tried uninstalling the plugin and reinstalling it, as well as deleting the Trakt.xml file on my system. I've also tried changing the few settings there are in the Trakt plugin but nothing seems to work. I just updated Emby to the latest stable release but it didn't help. Here is my log from Emby and a picture of my settings. I would really appreciate any help with this issue. 2018-08-30 19:19:42.111 Info Main: Application path: C:\Users\Anon\AppData\Roaming\Emby-Server\system\EmbyServer.dll 2018-08-30 19:19:42.115 Info Main: Emby Command line: C:\Users\Anon\AppData\Roaming\Emby-Server\system\EmbyServer.dll Operating system: Microsoft Windows NT 6.2.9200.0 64-Bit OS: True 64-Bit Process: True User Interactive: True Processor count: 8 Program data path: C:\Users\XXX\AppData\Roaming\Emby-Server\programdata Application directory: C:\Users\Anon\AppData\Roaming\Emby-Server\system 2018-08-30 19:19:42.254 Info Main: Tray icon path: C:\Users\Anon\AppData\Roaming\Emby-Server\system\electron\embytray 2018-08-30 19:19:42.273 Info App: Application version: 3.5.2.0 2018-08-30 19:19:42.275 Info App: Loading assemblies 2018-08-30 19:19:42.285 Info App: File C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\Emby.Server.CinemaMode.dll has version 1.0.2.0 2018-08-30 19:19:42.285 Info App: File C:\Users\Anon\AppData\Roaming\Emby-Server\system\plugins\Emby.Server.CinemaMode.dll has version 1.0.2.0 2018-08-30 19:19:42.285 Info App: File C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\IMVDb.dll has version 1.0.1.0 2018-08-30 19:19:42.286 Info App: File C:\Users\Anon\AppData\Roaming\Emby-Server\system\plugins\IMVDb.dll has version 1.0.1.0 2018-08-30 19:19:42.286 Info App: File C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\OpenSubtitles.dll has version 1.0.2.0 2018-08-30 19:19:42.286 Info App: File C:\Users\Anon\AppData\Roaming\Emby-Server\system\plugins\OpenSubtitles.dll has version 1.0.2.0 2018-08-30 19:19:42.290 Info App: Loading Emby.Server.CinemaMode, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\Emby.Server.CinemaMode.dll 2018-08-30 19:19:42.290 Info App: Loading IMVDb, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\IMVDb.dll 2018-08-30 19:19:42.290 Info App: Loading OpenSubtitles, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\OpenSubtitles.dll 2018-08-30 19:19:42.290 Info App: Loading Trakt, Version=3.2.1.0, Culture=neutral, PublicKeyToken=null from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\plugins\Trakt.dll 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.Api, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.WebDashboard, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.Model, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.Common, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.Controller, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.Providers, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Photos, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Server.Implementations, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Server.MediaEncoding, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Dlna, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.LocalMetadata, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Notifications, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading MediaBrowser.XbmcMetadata, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Server.Connect, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.290 Info App: Loading Emby.Server.Sync, Version=3.5.2.0, Culture=neutral, PublicKeyToken=null 2018-08-30 19:19:42.400 Info SqliteUserRepository: Sqlite version: 3.24.0 2018-08-30 19:19:42.401 Info SqliteUserRepository: Sqlite compiler options: COMPILER=msvc-1500,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3,ENABLE_FTS4,ENABLE_FTS5,ENABLE_JSON1,ENABLE_RTREE,MAX_TRIGGER_DEPTH=100,TEMP_STORE=1,THREADSAFE=1 2018-08-30 19:19:42.423 Info SqliteUserRepository: Default journal_mode for C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\users.db is wal 2018-08-30 19:19:42.425 Info SqliteUserRepository: PRAGMA synchronous=1 2018-08-30 19:19:42.438 Info AuthenticationRepository: Default journal_mode for C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\authentication.db is wal 2018-08-30 19:19:42.438 Info AuthenticationRepository: PRAGMA synchronous=1 2018-08-30 19:19:42.493 Info ActivityRepository: Default journal_mode for C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\activitylog.db is wal 2018-08-30 19:19:42.493 Info ActivityRepository: PRAGMA synchronous=1 2018-08-30 19:19:42.495 Info SqliteDisplayPreferencesRepository: Default journal_mode for C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\displaypreferences.db is wal 2018-08-30 19:19:42.495 Info SqliteDisplayPreferencesRepository: PRAGMA synchronous=1 2018-08-30 19:19:42.591 Info SqliteItemRepository: Default journal_mode for C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\library.db is wal 2018-08-30 19:19:42.591 Info SqliteItemRepository: PRAGMA synchronous=1 2018-08-30 19:19:42.722 Info HttpServer: Calling ServiceStack AppHost.Init 2018-08-30 19:19:42.952 Info HttpServer: Adding HttpListener prefix http://+:8096/ 2018-08-30 19:19:42.952 Info HttpServer: Adding HttpListener prefix https://+:8920/ 2018-08-30 19:19:43.067 Info Skia: SkiaSharp version: 1.60.0.0 2018-08-30 19:19:43.103 Info TaskManager: Daily trigger for Chapter image extraction set to fire at 2018-08-31 02:00:00, which is 400.281604645 minutes from now. 2018-08-30 19:19:43.106 Info TaskManager: Daily trigger for Rotate log file set to fire at 2018-08-31 00:00:00, which is 280.28155316 minutes from now. 2018-08-30 19:19:43.137 Info MediaEncoder: FFMpeg: C:\Users\Anon\AppData\Roaming\Emby-Server\system\ffmpeg.exe 2018-08-30 19:19:43.137 Info MediaEncoder: FFProbe: C:\Users\Anon\AppData\Roaming\Emby-Server\system\ffprobe.exe 2018-08-30 19:19:43.137 Info MediaEncoder: Validating media encoder at C:\Users\Anon\AppData\Roaming\Emby-Server\system\ffmpeg.exe 2018-08-30 19:19:43.139 Info MediaEncoder: Running C:\Users\Anon\AppData\Roaming\Emby-Server\system\ffmpeg.exe -decoders 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: mpeg2video 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: h264_qsv 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: hevc_qsv 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: mpeg2_qsv 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: vc1_qsv 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: h264_cuvid 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: hevc_cuvid 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: mpeg2_cuvid 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: mpeg4_cuvid 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: vc1_cuvid 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: vp8_cuvid 2018-08-30 19:19:43.175 Info MediaEncoder: Decoder available: vp9_cuvid 2018-08-30 19:19:43.177 Info MediaEncoder: Decoder available: ac3 2018-08-30 19:19:43.177 Info MediaEncoder: Decoder available: aac 2018-08-30 19:19:43.177 Info MediaEncoder: Decoder available: mp3 2018-08-30 19:19:43.177 Info MediaEncoder: Decoder available: h264 2018-08-30 19:19:43.177 Info MediaEncoder: Decoder available: hevc 2018-08-30 19:19:43.179 Info MediaEncoder: Running C:\Users\Anon\AppData\Roaming\Emby-Server\system\ffmpeg.exe -encoders 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libx264 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libx265 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: mpeg4 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: msmpeg4 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libvpx 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libvpx-vp9 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: aac 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libmp3lame 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libopus 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libvorbis 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: srt 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: h264_nvenc 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: hevc_nvenc 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: h264_qsv 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: hevc_qsv 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: libwebp 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: ac3 2018-08-30 19:19:43.210 Info MediaEncoder: Encoder available: h264_amf 2018-08-30 19:19:43.211 Info MediaEncoder: Running C:\Users\Anon\AppData\Roaming\Emby-Server\system\ffmpeg.exe -protocols 2018-08-30 19:19:43.236 Info MediaEncoder: Encoder validation complete 2018-08-30 19:19:43.236 Info MediaEncoder: ffmpeg supported protocols: async,bluray,cache,concat,crypto,data,ffrtmpcrypt,ffrtmphttp,file,ftp,gopher,hls,http,httpproxy,https,mmsh,mmst,pipe,rtmp,rtmpe,rtmps,rtmpt,rtmpte,rtmpts,rtp,srtp,subfile,tcp,tls,udp,udplite 2018-08-30 19:19:43.238 Info App: ServerId: b0148fd6b4214e85abb91631be87c0d1 2018-08-30 19:19:43.269 Info App: Starting entry point MediaBrowser.WebDashboard.ServerEntryPoint 2018-08-30 19:19:43.269 Info App: Entry point completed: MediaBrowser.WebDashboard.ServerEntryPoint. Duration: 0.0004433 seconds 2018-08-30 19:19:43.269 Info App: Starting entry point Emby.Dlna.Main.DlnaEntryPoint 2018-08-30 19:19:43.438 Info App: Entry point completed: Emby.Dlna.Main.DlnaEntryPoint. Duration: 0.1681176 seconds 2018-08-30 19:19:43.438 Info App: Starting entry point Emby.Server.Connect.ConnectEntryPoint 2018-08-30 19:19:43.439 Info App: Loading data from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\connect.txt 2018-08-30 19:19:43.444 Info App: Loading data from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\wan.dat 2018-08-30 19:19:43.459 Info App: Entry point completed: Emby.Server.Connect.ConnectEntryPoint. Duration: 0.0214253 seconds 2018-08-30 19:19:43.459 Info App: Core startup complete 2018-08-30 19:19:43.459 Info App: Post-init migrations complete 2018-08-30 19:19:43.459 Info App: Starting entry point Emby.Security.PluginSecurityManager 2018-08-30 19:19:43.459 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 4.06E-05 seconds 2018-08-30 19:19:43.459 Info App: Starting entry point Emby.Server.CinemaMode.IntrosEntryPoint 2018-08-30 19:19:43.459 Info App: Entry point completed: Emby.Server.CinemaMode.IntrosEntryPoint. Duration: 0.0001536 seconds 2018-08-30 19:19:43.459 Info App: Starting entry point Trakt.ServerMediator 2018-08-30 19:19:43.460 Info App: Entry point completed: Trakt.ServerMediator. Duration: 0.0010109 seconds 2018-08-30 19:19:43.460 Info App: Starting entry point MediaBrowser.Api.ApiEntryPoint 2018-08-30 19:19:43.460 Info App: Entry point completed: MediaBrowser.Api.ApiEntryPoint. Duration: 4.04E-05 seconds 2018-08-30 19:19:43.460 Info App: Starting entry point Emby.Server.Implementations.News.NewsEntryPoint 2018-08-30 19:19:43.461 Info App: Entry point completed: Emby.Server.Implementations.News.NewsEntryPoint. Duration: 0.0002143 seconds 2018-08-30 19:19:43.461 Info App: Starting entry point Emby.Server.Implementations.LiveTv.EmbyTV.EntryPoint 2018-08-30 19:19:43.463 Info App: Loading live tv data from C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\livetv\timers 2018-08-30 19:19:43.526 Info Dlna: Registering publisher for urn:schemas-upnp-org:device:MediaServer:1 on 192.168.1.2 2018-08-30 19:19:43.543 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/description.xml. UserAgent: 2018-08-30 19:19:43.544 Info Dlna: Registering publisher for urn:schemas-upnp-org:device:MediaServer:1 on fe80::34eb:99aa:b679:ba7%20 2018-08-30 19:19:43.558 Info HttpServer: HTTP GET http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/description.xml. UserAgent: 2018-08-30 19:19:43.576 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo240.png. UserAgent: 2018-08-30 19:19:43.576 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 34ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/description.xml 2018-08-30 19:19:43.576 Info HttpServer: HTTP Response 200 to fe80::34eb:99aa:b679:ba7%20. Time: 18ms. http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/description.xml 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo120.png. UserAgent: 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo240.png. UserAgent: 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo120.png. UserAgent: 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo48.png. UserAgent: 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo48.png. UserAgent: 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/connectionmanager/connectionmanager.xml. UserAgent: 2018-08-30 19:19:43.577 Info HttpServer: HTTP GET http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/connectionmanager/connectionmanager.xml. UserAgent: 2018-08-30 19:19:43.578 Info HttpServer: HTTP Response 200 to fe80::34eb:99aa:b679:ba7%20. Time: 1ms. http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo240.png 2018-08-30 19:19:43.578 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 1ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo48.png 2018-08-30 19:19:43.578 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/contentdirectory/contentdirectory.xml. UserAgent: 2018-08-30 19:19:43.578 Info HttpServer: HTTP GET http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/contentdirectory/contentdirectory.xml. UserAgent: 2018-08-30 19:19:43.578 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 2ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo240.png 2018-08-30 19:19:43.579 Info HttpServer: HTTP Response 200 to fe80::34eb:99aa:b679:ba7%20. Time: 2ms. http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo120.png 2018-08-30 19:19:43.579 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 2ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo120.png 2018-08-30 19:19:43.579 Info HttpServer: HTTP Response 200 to fe80::34eb:99aa:b679:ba7%20. Time: 2ms. http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/icons/logo48.png 2018-08-30 19:19:43.588 Info HttpServer: HTTP Response 200 to fe80::34eb:99aa:b679:ba7%20. Time: 11ms. http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/connectionmanager/connectionmanager.xml 2018-08-30 19:19:43.588 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 11ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/connectionmanager/connectionmanager.xml 2018-08-30 19:19:43.590 Info HttpServer: HTTP Response 200 to fe80::34eb:99aa:b679:ba7%20. Time: 11ms. http://[fe80::34eb:99aa:b679:ba7]:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/contentdirectory/contentdirectory.xml 2018-08-30 19:19:43.590 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 11ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/contentdirectory/contentdirectory.xml 2018-08-30 19:19:43.641 Info App: Entry point completed: Emby.Server.Implementations.LiveTv.EmbyTV.EntryPoint. Duration: 0.1806394 seconds 2018-08-30 19:19:43.641 Info App: Starting entry point Emby.Server.Implementations.Library.DeviceAccessEntryPoint 2018-08-30 19:19:43.642 Info App: Entry point completed: Emby.Server.Implementations.Library.DeviceAccessEntryPoint. Duration: 0.0003543 seconds 2018-08-30 19:19:43.642 Info App: Starting entry point Emby.Server.Implementations.IO.LibraryMonitorStartup 2018-08-30 19:19:43.658 Info App: Entry point completed: Emby.Server.Implementations.IO.LibraryMonitorStartup. Duration: 0.0168546 seconds 2018-08-30 19:19:43.659 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint 2018-08-30 19:19:43.659 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint. Duration: 0.0005349 seconds 2018-08-30 19:19:43.659 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ExternalPortForwarding 2018-08-30 19:19:43.661 Info LibraryMonitor: Watching directory D:\Library\TV Shows 2018-08-30 19:19:43.661 Info LibraryMonitor: Watching directory D:\Library\Movies 2018-08-30 19:19:43.661 Info LibraryMonitor: Watching directory E:\Library\Movies 2018-08-30 19:19:43.661 Info LibraryMonitor: Watching directory D:\Library\Anime 2018-08-30 19:19:43.661 Info LibraryMonitor: Watching directory E:\Library\TV Shows 2018-08-30 19:19:43.683 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ExternalPortForwarding. Duration: 0.0243254 seconds 2018-08-30 19:19:43.683 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.KeepServerAwake 2018-08-30 19:19:43.684 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.KeepServerAwake. Duration: 0.00016 seconds 2018-08-30 19:19:43.684 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier 2018-08-30 19:19:43.685 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier. Duration: 0.0011381 seconds 2018-08-30 19:19:43.685 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.RecordingNotifier 2018-08-30 19:19:43.686 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.RecordingNotifier. Duration: 0.0009809 seconds 2018-08-30 19:19:43.686 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ServerEventNotifier 2018-08-30 19:19:43.688 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ServerEventNotifier. Duration: 0.002059 seconds 2018-08-30 19:19:43.688 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.StartupWizard 2018-08-30 19:19:43.718 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.StartupWizard. Duration: 0.0298191 seconds 2018-08-30 19:19:43.718 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.SystemEvents 2018-08-30 19:19:43.718 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.SystemEvents. Duration: 0.0005214 seconds 2018-08-30 19:19:43.718 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UdpServerEntryPoint 2018-08-30 19:19:43.720 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UdpServerEntryPoint. Duration: 0.0014491 seconds 2018-08-30 19:19:43.720 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UsageEntryPoint 2018-08-30 19:19:43.722 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UsageEntryPoint. Duration: 0.0018392 seconds 2018-08-30 19:19:43.722 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier 2018-08-30 19:19:43.722 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier. Duration: 0.0001344 seconds 2018-08-30 19:19:43.722 Info App: Starting entry point Emby.Server.Implementations.Devices.DeviceManagerEntryPoint 2018-08-30 19:19:43.723 Info App: Entry point completed: Emby.Server.Implementations.Devices.DeviceManagerEntryPoint. Duration: 0.0014606 seconds 2018-08-30 19:19:43.723 Info App: Starting entry point Emby.Server.Implementations.Collections.CollectionManagerEntryPoint 2018-08-30 19:19:43.725 Info App: Entry point completed: Emby.Server.Implementations.Collections.CollectionManagerEntryPoint. Duration: 0.0016475 seconds 2018-08-30 19:19:43.725 Info App: Starting entry point Emby.Server.Implementations.Activity.ActivityLogEntryPoint 2018-08-30 19:19:43.729 Info App: Entry point completed: Emby.Server.Implementations.Activity.ActivityLogEntryPoint. Duration: 0.0043844 seconds 2018-08-30 19:19:43.729 Info App: Starting entry point Emby.Server.MediaEncoding.Api.ApiEntryPoint 2018-08-30 19:19:43.730 Info App: Entry point completed: Emby.Server.MediaEncoding.Api.ApiEntryPoint. Duration: 0.0009206 seconds 2018-08-30 19:19:43.730 Info App: Starting entry point Emby.Notifications.Notifications 2018-08-30 19:19:43.731 Info App: Entry point completed: Emby.Notifications.Notifications. Duration: 0.0006679 seconds 2018-08-30 19:19:43.731 Info App: Starting entry point MediaBrowser.XbmcMetadata.EntryPoint 2018-08-30 19:19:43.731 Info App: Entry point completed: MediaBrowser.XbmcMetadata.EntryPoint. Duration: 0.0001993 seconds 2018-08-30 19:19:43.731 Info App: Starting entry point Emby.Security.PluginSecurityManager 2018-08-30 19:19:43.731 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 5.06E-05 seconds 2018-08-30 19:19:43.731 Info App: Starting entry point Emby.Server.Sync.SyncManagerEntryPoint 2018-08-30 19:19:43.735 Info App: Sqlite version: 3.24.0 2018-08-30 19:19:43.735 Info App: Sqlite compiler options: COMPILER=msvc-1500,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3,ENABLE_FTS4,ENABLE_FTS5,ENABLE_JSON1,ENABLE_RTREE,MAX_TRIGGER_DEPTH=100,TEMP_STORE=1,THREADSAFE=1 2018-08-30 19:19:43.736 Info App: Default journal_mode for C:\Users\Anon\AppData\Roaming\Emby-Server\programdata\data\sync14.db is wal 2018-08-30 19:19:43.737 Info App: PRAGMA synchronous=1 2018-08-30 19:19:43.739 Info App: Entry point completed: Emby.Server.Sync.SyncManagerEntryPoint. Duration: 0.0073519 seconds 2018-08-30 19:19:43.739 Info App: Starting entry point Emby.Server.Sync.SyncNotificationEntryPoint 2018-08-30 19:19:43.740 Info App: Entry point completed: Emby.Server.Sync.SyncNotificationEntryPoint. Duration: 0.0014659 seconds 2018-08-30 19:19:43.740 Info App: All entry points have started 2018-08-30 19:19:43.964 Info HttpClient: GET https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog 2018-08-30 19:19:44.045 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/description.xml. UserAgent: UPnP/1.0 DLNADOC/1.50 Platinum/1.0.5.13 2018-08-30 19:19:44.045 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 0ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/description.xml 2018-08-30 19:19:44.146 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/contentdirectory/contentdirectory.xml. UserAgent: UPnP/1.0 DLNADOC/1.50 Platinum/1.0.5.13 2018-08-30 19:19:44.147 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 0ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/contentdirectory/contentdirectory.xml 2018-08-30 19:19:44.147 Info HttpServer: HTTP GET http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/connectionmanager/connectionmanager.xml. UserAgent: UPnP/1.0 DLNADOC/1.50 Platinum/1.0.5.13 2018-08-30 19:19:44.147 Info HttpServer: HTTP Response 200 to 192.168.1.2. Time: 0ms. http://192.168.1.2:8096/dlna/b0148fd6b4214e85abb91631be87c0d1/connectionmanager/connectionmanager.xml 2018-08-30 19:19:44.261 Info HttpServer: HTTP GET http://localhost:8096/web/strings/en-US.json?v=1535649584257. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.261 Info HttpServer: HTTP GET http://localhost:8096/web/bower_components/emby-webcomponents/strings/en-us.json?v=1535649584257. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.276 Info HttpServer: HTTP Response 200 to ::1. Time: 16ms. http://localhost:8096/web/strings/en-US.json?v=1535649584257 2018-08-30 19:19:44.277 Info HttpServer: HTTP Response 200 to ::1. Time: 16ms. http://localhost:8096/web/bower_components/emby-webcomponents/strings/en-us.json?v=1535649584257 2018-08-30 19:19:44.508 Info HttpServer: HTTP GET http://localhost:8096/emby/system/info/public. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.548 Info HttpServer: HTTP Response 200 to ::1. Time: 40ms. http://localhost:8096/emby/system/info/public 2018-08-30 19:19:44.557 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.629 Info App: App Activity: app: Emby Mobile, version: 3.5.2.0, deviceId: TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY4LjAuMzQ0MC4xMDYgU2FmYXJpLzUzNy4zNnwxNTM1MzkwNTIwMzIw, deviceName: Chrome 2018-08-30 19:19:44.652 Info HttpServer: HTTP Response 200 to ::1. Time: 95ms. http://localhost:8096/emby/System/Info 2018-08-30 19:19:44.657 Info HttpServer: HTTP POST http://localhost:8096/emby/Sessions/Capabilities/Full. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.659 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.659 Info HttpServer: HTTP GET http://localhost:8096/emby/DisplayPreferences/usersettings?userId=2408de7513d7427a9349a0aae9134a03&client=emby. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.662 Info HttpServer: WS http://localhost:8096/embywebsocket?api_key=6e6443bf43054dc28cfe19e42ee6e362&deviceId=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY4LjAuMzQ0MC4xMDYgU2FmYXJpLzUzNy4zNnwxNTM1MzkwNTIwMzIw. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.695 Info HttpServer: HTTP Response 200 to ::1. Time: 36ms. http://localhost:8096/emby/DisplayPreferences/usersettings?userId=2408de7513d7427a9349a0aae9134a03&client=emby 2018-08-30 19:19:44.725 Info HttpServer: HTTP Response 204 to ::1. Time: 68ms. http://localhost:8096/emby/Sessions/Capabilities/Full 2018-08-30 19:19:44.727 Info HttpServer: HTTP Response 200 to ::1. Time: 69ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03 2018-08-30 19:19:44.728 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.729 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03 2018-08-30 19:19:44.732 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.732 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03 2018-08-30 19:19:44.733 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.734 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03 2018-08-30 19:19:44.739 Info HttpServer: HTTP GET http://localhost:8096/web/bower_components/emby-webcomponents/themes/logowhite.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.740 Info HttpServer: HTTP Response 304 to ::1. Time: 1ms. http://localhost:8096/web/bower_components/emby-webcomponents/themes/logowhite.png 2018-08-30 19:19:44.755 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.868 Info HttpServer: HTTP Response 200 to ::1. Time: 114ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views 2018-08-30 19:19:44.869 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.870 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views 2018-08-30 19:19:44.878 Info HttpServer: HTTP GET http://localhost:8096/emby/LiveTv/Programs/Recommended?userId=2408de7513d7427a9349a0aae9134a03&IsAiring=true&limit=1&ImageTypeLimit=1&EnableImageTypes=Primary%2CThumb%2CBackdrop&EnableTotalRecordCount=false&Fields=ChannelInfo%2CPrimaryImageAspectRatio. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.916 Info HttpServer: HTTP Response 200 to ::1. Time: 39ms. http://localhost:8096/emby/LiveTv/Programs/Recommended?userId=2408de7513d7427a9349a0aae9134a03&IsAiring=true&limit=1&ImageTypeLimit=1&EnableImageTypes=Primary%2CThumb%2CBackdrop&EnableTotalRecordCount=false&Fields=ChannelInfo%2CPrimaryImageAspectRatio 2018-08-30 19:19:44.923 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Video. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.923 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Audio. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.924 Info HttpServer: HTTP GET http://localhost:8096/emby/Shows/NextUp?Limit=24&Fields=PrimaryImageAspectRatio%2CSeriesInfo%2CDateCreated%2CBasicSyncInfo&UserId=2408de7513d7427a9349a0aae9134a03&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&EnableTotalRecordCount=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.927 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.927 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=767bffe4f11c93ef34b805451a696a4e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:44.965 Info HttpServer: HTTP Response 200 to ::1. Time: 41ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Audio 2018-08-30 19:19:45.002 Info HttpServer: HTTP Response 200 to ::1. Time: 79ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Video 2018-08-30 19:19:45.010 Info HttpServer: HTTP Response 200 to ::1. Time: 83ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805 2018-08-30 19:19:45.012 Info HttpServer: HTTP Response 200 to ::1. Time: 85ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=767bffe4f11c93ef34b805451a696a4e 2018-08-30 19:19:45.014 Info HttpServer: HTTP Response 200 to ::1. Time: 90ms. http://localhost:8096/emby/Shows/NextUp?Limit=24&Fields=PrimaryImageAspectRatio%2CSeriesInfo%2CDateCreated%2CBasicSyncInfo&UserId=2408de7513d7427a9349a0aae9134a03&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&EnableTotalRecordCount=false 2018-08-30 19:19:46.109 Info TaskManager: StartupTrigger fired for task: Check for application updates 2018-08-30 19:19:46.109 Info TaskManager: StartupTrigger fired for task: Sync library to trakt.tv 2018-08-30 19:19:46.109 Info TaskManager: StartupTrigger fired for task: Import playstates from Trakt.tv 2018-08-30 19:19:46.109 Info TaskManager: StartupTrigger fired for task: Check for plugin updates 2018-08-30 19:19:46.110 Info TaskManager: Queueing task SyncFromTraktTask 2018-08-30 19:19:46.110 Info TaskManager: Queueing task SystemUpdateTask 2018-08-30 19:19:46.110 Info TaskManager: Queueing task PluginUpdateTask 2018-08-30 19:19:46.110 Info TaskManager: Queueing task SyncLibraryTask 2018-08-30 19:19:46.115 Info TaskManager: Executing Sync library to trakt.tv 2018-08-30 19:19:46.115 Info TaskManager: Executing Check for application updates 2018-08-30 19:19:46.115 Info TaskManager: Executing Import playstates from Trakt.tv 2018-08-30 19:19:46.115 Info TaskManager: Executing Check for plugin updates 2018-08-30 19:19:46.155 Info HttpClient: GET https://api.trakt.tv/sync/watched/movies 2018-08-30 19:19:46.169 Info TaskManager: Check for application updates Completed after 0 minute(s) and 0 seconds 2018-08-30 19:19:46.186 Info TaskManager: Check for plugin updates Completed after 0 minute(s) and 0 seconds 2018-08-30 19:19:46.190 Info TaskManager: ExecuteQueuedTasks 2018-08-30 19:19:46.190 Info TaskManager: ExecuteQueuedTasks 2018-08-30 19:19:46.383 Info HttpClient: GET https://api.trakt.tv/sync/watched/movies 2018-08-30 19:19:46.532 Info HttpClient: GET https://api.trakt.tv/sync/collection/movies?extended=metadata 2018-08-30 19:19:47.059 Info HttpClient: GET https://api.trakt.tv/sync/watched/shows 2018-08-30 19:19:47.202 Info Trakt: Trakt.tv watched Movies count = 0 2018-08-30 19:19:47.202 Info Trakt: Trakt.tv watched Shows count = 1 2018-08-30 19:19:47.307 Info Trakt: Movies to add to Collection: 9 2018-08-30 19:19:47.320 Info HttpClient: POST https://api.trakt.tv/sync/collection 2018-08-30 19:19:47.328 Info TaskManager: Import playstates from Trakt.tv Completed after 0 minute(s) and 1 seconds 2018-08-30 19:19:47.332 Info TaskManager: ExecuteQueuedTasks 2018-08-30 19:19:47.563 Info Trakt: Movies to set watched: 0 2018-08-30 19:19:47.563 Info Trakt: Movies to set unwatched: 0 2018-08-30 19:19:47.570 Info HttpClient: GET https://api.trakt.tv/sync/watched/shows 2018-08-30 19:19:47.716 Info HttpClient: GET https://api.trakt.tv/sync/collection/shows?extended=metadata 2018-08-30 19:19:47.965 Info HttpServer: HTTP GET http://localhost:8096/emby/Sessions?ActiveWithinSeconds=960. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.966 Info HttpServer: HTTP GET http://localhost:8096/emby/ScheduledTasks. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.968 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.972 Info HttpServer: HTTP GET http://localhost:8096/emby/News/Product?StartIndex=0&Limit=4. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.972 Info HttpServer: HTTP Response 200 to ::1. Time: 4ms. http://localhost:8096/emby/System/Info 2018-08-30 19:19:47.972 Info HttpServer: HTTP GET http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2018-08-29T17%3A19%3A47.962Z&hasUserId=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.974 Info HttpServer: HTTP GET http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2018-08-23T17%3A19%3A47.963Z&hasUserId=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.981 Info HttpServer: HTTP Response 200 to ::1. Time: 9ms. http://localhost:8096/emby/News/Product?StartIndex=0&Limit=4 2018-08-30 19:19:47.981 Info HttpServer: HTTP GET http://localhost:8096/emby/LiveTv/Recordings?UserId=2408de7513d7427a9349a0aae9134a03&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.989 Info HttpServer: HTTP Response 200 to ::1. Time: 16ms. http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2018-08-29T17%3A19%3A47.962Z&hasUserId=true 2018-08-30 19:19:47.989 Info HttpServer: HTTP GET http://localhost:8096/emby/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:47.991 Info HttpServer: HTTP Response 200 to ::1. Time: 26ms. http://localhost:8096/emby/Sessions?ActiveWithinSeconds=960 2018-08-30 19:19:47.994 Info HttpServer: HTTP Response 200 to ::1. Time: 20ms. http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2018-08-23T17%3A19%3A47.963Z&hasUserId=false 2018-08-30 19:19:47.997 Info HttpServer: HTTP Response 200 to ::1. Time: 16ms. http://localhost:8096/emby/LiveTv/Recordings?UserId=2408de7513d7427a9349a0aae9134a03&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop 2018-08-30 19:19:48.000 Info HttpServer: HTTP Response 200 to ::1. Time: 34ms. http://localhost:8096/emby/ScheduledTasks 2018-08-30 19:19:48.011 Info HttpServer: HTTP Response 200 to ::1. Time: 22ms. http://localhost:8096/emby/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true 2018-08-30 19:19:48.024 Info HttpServer: HTTP GET http://localhost:8096/emby/Packages/Updates?PackageType=System. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:48.041 Info HttpServer: HTTP GET http://localhost:8096/emby/Packages/Updates?PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:48.043 Info Trakt: Episodes to add to Collection: 3 2018-08-30 19:19:48.067 Info HttpClient: POST https://api.trakt.tv/sync/collection 2018-08-30 19:19:48.083 Info HttpServer: HTTP Response 200 to ::1. Time: 59ms. http://localhost:8096/emby/Packages/Updates?PackageType=System 2018-08-30 19:19:48.088 Info HttpServer: HTTP GET http://localhost:8096/web/css/images/logoblack.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:48.089 Info HttpServer: HTTP Response 304 to ::1. Time: 0ms. http://localhost:8096/web/css/images/logoblack.png 2018-08-30 19:19:48.099 Info HttpServer: HTTP Response 200 to ::1. Time: 58ms. http://localhost:8096/emby/Packages/Updates?PackageType=UserInstalled 2018-08-30 19:19:48.214 Error Trakt: TraktResponse not Found:{"ids":{"tvdb":267440}} 2018-08-30 19:19:48.215 Info Trakt: Episodes to set watched: 0 2018-08-30 19:19:48.215 Info Trakt: Episodes to set unwatched: 0 2018-08-30 19:19:48.216 Info TaskManager: Sync library to trakt.tv Completed after 0 minute(s) and 2 seconds 2018-08-30 19:19:48.219 Info TaskManager: ExecuteQueuedTasks 2018-08-30 19:19:49.645 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:49.645 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:49.652 Info HttpServer: HTTP Response 200 to ::1. Time: 7ms. http://localhost:8096/emby/System/Logs 2018-08-30 19:19:49.654 Info HttpServer: HTTP Response 200 to ::1. Time: 9ms. http://localhost:8096/emby/System/Configuration 2018-08-30 19:19:50.523 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:50.523 Info HttpServer: HTTP Response 200 to ::1. Time: 0ms. http://localhost:8096/emby/System/Configuration 2018-08-30 19:19:50.527 Info HttpServer: HTTP POST http://localhost:8096/emby/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:50.538 Info ServerConfigurationManager: Saving system configuration 2018-08-30 19:19:50.542 Info HttpServer: HTTP Response 204 to ::1. Time: 15ms. http://localhost:8096/emby/System/Configuration 2018-08-30 19:19:50.658 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Endpoint. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:50.661 Info HttpServer: HTTP Response 200 to ::1. Time: 3ms. http://localhost:8096/emby/System/Endpoint 2018-08-30 19:19:53.602 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:53.603 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views 2018-08-30 19:19:53.639 Info HttpServer: HTTP GET http://localhost:8096/web/thirdparty/jstree/themes/default/32px.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:53.639 Info HttpServer: HTTP Response 304 to ::1. Time: 0ms. http://localhost:8096/web/thirdparty/jstree/themes/default/32px.png 2018-08-30 19:19:53.639 Info HttpServer: HTTP GET http://localhost:8096/web/thirdparty/jstree/themes/default/throbber.gif. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:53.639 Info HttpServer: HTTP Response 304 to ::1. Time: 0ms. http://localhost:8096/web/thirdparty/jstree/themes/default/throbber.gif 2018-08-30 19:19:53.643 Info HttpServer: HTTP GET http://localhost:8096/emby/LiveTv/Channels?limit=0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:53.650 Info HttpServer: HTTP Response 200 to ::1. Time: 7ms. http://localhost:8096/emby/LiveTv/Channels?limit=0 2018-08-30 19:19:53.663 Info HttpServer: HTTP GET http://localhost:8096/emby/Library/MediaFolders. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:53.665 Info HttpServer: HTTP Response 200 to ::1. Time: 3ms. http://localhost:8096/emby/Library/MediaFolders 2018-08-30 19:19:54.831 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:54.832 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:54.832 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Configuration 2018-08-30 19:19:54.834 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Logs 2018-08-30 19:19:54.868 Info HttpServer: HTTP GET http://localhost:8096/emby/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:54.868 Info HttpServer: HTTP Response 200 to ::1. Time: 0ms. http://localhost:8096/emby/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true 2018-08-30 19:19:57.780 Info HttpServer: HTTP GET http://localhost:8096/emby/ScheduledTasks?isHidden=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:57.781 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/ScheduledTasks?isHidden=false 2018-08-30 19:19:59.200 Info HttpServer: HTTP POST http://localhost:8096/emby/ScheduledTasks/Running/5e47e7d3542ace9c367691a65cb31e86. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:59.201 Info TaskManager: Executing Import playstates from Trakt.tv 2018-08-30 19:19:59.201 Info HttpServer: HTTP Response 204 to ::1. Time: 1ms. http://localhost:8096/emby/ScheduledTasks/Running/5e47e7d3542ace9c367691a65cb31e86 2018-08-30 19:19:59.201 Info HttpClient: GET https://api.trakt.tv/sync/watched/movies 2018-08-30 19:19:59.206 Info HttpServer: HTTP GET http://localhost:8096/emby/ScheduledTasks?isHidden=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:19:59.206 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/ScheduledTasks?isHidden=false 2018-08-30 19:19:59.378 Info HttpClient: GET https://api.trakt.tv/sync/watched/shows 2018-08-30 19:19:59.565 Info Trakt: Trakt.tv watched Movies count = 0 2018-08-30 19:19:59.565 Info Trakt: Trakt.tv watched Shows count = 1 2018-08-30 19:19:59.663 Info TaskManager: Import playstates from Trakt.tv Completed after 0 minute(s) and 0 seconds 2018-08-30 19:19:59.666 Info TaskManager: ExecuteQueuedTasks 2018-08-30 19:20:00.217 Info HttpServer: HTTP POST http://localhost:8096/emby/ScheduledTasks/Running/b1a52e63d5fb09335557d4f1e6402299. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:00.218 Info TaskManager: Executing Sync library to trakt.tv 2018-08-30 19:20:00.218 Info HttpServer: HTTP Response 204 to ::1. Time: 0ms. http://localhost:8096/emby/ScheduledTasks/Running/b1a52e63d5fb09335557d4f1e6402299 2018-08-30 19:20:00.218 Info HttpClient: GET https://api.trakt.tv/sync/watched/movies 2018-08-30 19:20:00.221 Info HttpServer: HTTP GET http://localhost:8096/emby/ScheduledTasks?isHidden=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:00.222 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/ScheduledTasks?isHidden=false 2018-08-30 19:20:00.403 Info HttpClient: GET https://api.trakt.tv/sync/collection/movies?extended=metadata 2018-08-30 19:20:00.928 Info Trakt: Movies to add to Collection: 9 2018-08-30 19:20:00.929 Info HttpClient: POST https://api.trakt.tv/sync/collection 2018-08-30 19:20:01.217 Info Trakt: Movies to set watched: 0 2018-08-30 19:20:01.217 Info Trakt: Movies to set unwatched: 0 2018-08-30 19:20:01.217 Info HttpClient: GET https://api.trakt.tv/sync/watched/shows 2018-08-30 19:20:01.502 Info HttpClient: GET https://api.trakt.tv/sync/collection/shows?extended=metadata 2018-08-30 19:20:01.762 Info Trakt: Episodes to add to Collection: 3 2018-08-30 19:20:01.762 Info HttpClient: POST https://api.trakt.tv/sync/collection 2018-08-30 19:20:01.945 Error Trakt: TraktResponse not Found:{"ids":{"tvdb":267440}} 2018-08-30 19:20:01.945 Info Trakt: Episodes to set watched: 0 2018-08-30 19:20:01.945 Info Trakt: Episodes to set unwatched: 0 2018-08-30 19:20:01.945 Info TaskManager: Sync library to trakt.tv Completed after 0 minute(s) and 1 seconds 2018-08-30 19:20:01.949 Info TaskManager: ExecuteQueuedTasks 2018-08-30 19:20:04.755 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.756 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views 2018-08-30 19:20:04.757 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.760 Info HttpServer: HTTP Response 200 to ::1. Time: 3ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Views 2018-08-30 19:20:04.780 Info HttpServer: HTTP GET http://localhost:8096/emby/LiveTv/Programs/Recommended?userId=2408de7513d7427a9349a0aae9134a03&IsAiring=true&limit=1&ImageTypeLimit=1&EnableImageTypes=Primary%2CThumb%2CBackdrop&EnableTotalRecordCount=false&Fields=ChannelInfo%2CPrimaryImageAspectRatio. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.781 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/LiveTv/Programs/Recommended?userId=2408de7513d7427a9349a0aae9134a03&IsAiring=true&limit=1&ImageTypeLimit=1&EnableImageTypes=Primary%2CThumb%2CBackdrop&EnableTotalRecordCount=false&Fields=ChannelInfo%2CPrimaryImageAspectRatio 2018-08-30 19:20:04.796 Info HttpServer: HTTP GET http://localhost:8096/web/bower_components/emby-webcomponents/themes/logowhite.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.797 Info HttpServer: HTTP Response 304 to ::1. Time: 0ms. http://localhost:8096/web/bower_components/emby-webcomponents/themes/logowhite.png 2018-08-30 19:20:04.804 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Video. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.805 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Audio. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.805 Info HttpServer: HTTP GET http://localhost:8096/emby/Shows/NextUp?Limit=24&Fields=PrimaryImageAspectRatio%2CSeriesInfo%2CDateCreated%2CBasicSyncInfo&UserId=2408de7513d7427a9349a0aae9134a03&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&EnableTotalRecordCount=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.805 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.805 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=767bffe4f11c93ef34b805451a696a4e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:04.807 Info HttpServer: HTTP Response 200 to ::1. Time: 4ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Video 2018-08-30 19:20:04.814 Info HttpServer: HTTP Response 200 to ::1. Time: 9ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805 2018-08-30 19:20:04.831 Info HttpServer: HTTP Response 200 to ::1. Time: 27ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Audio 2018-08-30 19:20:04.833 Info HttpServer: HTTP Response 200 to ::1. Time: 28ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=767bffe4f11c93ef34b805451a696a4e 2018-08-30 19:20:04.840 Info HttpServer: HTTP Response 200 to ::1. Time: 35ms. http://localhost:8096/emby/Shows/NextUp?Limit=24&Fields=PrimaryImageAspectRatio%2CSeriesInfo%2CDateCreated%2CBasicSyncInfo&UserId=2408de7513d7427a9349a0aae9134a03&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&EnableTotalRecordCount=false 2018-08-30 19:20:08.110 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/f137a2dd21bbc1b99aa5c0f6bf02a805. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:08.116 Info HttpServer: HTTP Response 200 to ::1. Time: 6ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items/f137a2dd21bbc1b99aa5c0f6bf02a805 2018-08-30 19:20:08.131 Info HttpServer: HTTP GET http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items?SortBy=SortName&SortOrder=Ascending&IncludeItemTypes=Movie&Recursive=true&Fields=PrimaryImageAspectRatio%2CMediaSourceCount%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&StartIndex=0&Limit=100&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:08.158 Info HttpServer: HTTP Response 200 to ::1. Time: 27ms. http://localhost:8096/emby/Users/2408de7513d7427a9349a0aae9134a03/Items?SortBy=SortName&SortOrder=Ascending&IncludeItemTypes=Movie&Recursive=true&Fields=PrimaryImageAspectRatio%2CMediaSourceCount%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&StartIndex=0&Limit=100&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805 2018-08-30 19:20:10.948 Info HttpServer: HTTP GET http://localhost:8096/emby/Sessions?ActiveWithinSeconds=960. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.950 Info HttpServer: HTTP Response 200 to ::1. Time: 2ms. http://localhost:8096/emby/Sessions?ActiveWithinSeconds=960 2018-08-30 19:20:10.950 Info HttpServer: HTTP GET http://localhost:8096/emby/ScheduledTasks. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.951 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.952 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/ScheduledTasks 2018-08-30 19:20:10.952 Info HttpServer: HTTP GET http://localhost:8096/emby/News/Product?StartIndex=0&Limit=4. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.952 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Info 2018-08-30 19:20:10.952 Info HttpServer: HTTP GET http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2018-08-29T17%3A20%3A10.943Z&hasUserId=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.952 Info HttpServer: HTTP GET http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2018-08-23T17%3A20%3A10.943Z&hasUserId=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.953 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/News/Product?StartIndex=0&Limit=4 2018-08-30 19:20:10.953 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2018-08-29T17%3A20%3A10.943Z&hasUserId=true 2018-08-30 19:20:10.954 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2018-08-23T17%3A20%3A10.943Z&hasUserId=false 2018-08-30 19:20:10.954 Info HttpServer: HTTP GET http://localhost:8096/emby/LiveTv/Recordings?UserId=2408de7513d7427a9349a0aae9134a03&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.955 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/LiveTv/Recordings?UserId=2408de7513d7427a9349a0aae9134a03&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop 2018-08-30 19:20:10.956 Info HttpServer: HTTP GET http://localhost:8096/emby/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.956 Info HttpServer: HTTP Response 200 to ::1. Time: 0ms. http://localhost:8096/emby/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true 2018-08-30 19:20:10.990 Info HttpServer: HTTP GET http://localhost:8096/emby/Packages/Updates?PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:10.992 Info HttpServer: HTTP GET http://localhost:8096/emby/Packages/Updates?PackageType=System. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:11.023 Info HttpServer: HTTP Response 200 to ::1. Time: 31ms. http://localhost:8096/emby/Packages/Updates?PackageType=System 2018-08-30 19:20:11.024 Info HttpServer: HTTP Response 200 to ::1. Time: 34ms. http://localhost:8096/emby/Packages/Updates?PackageType=UserInstalled 2018-08-30 19:20:20.642 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:20.643 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 2018-08-30 19:20:20.644 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Configuration 2018-08-30 19:20:20.644 Info HttpServer: HTTP Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Logs 2018-08-30 19:20:21.432 Info HttpServer: HTTP GET http://localhost:8096/emby/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36
- 18 replies
-
I got my annual "What you've watched this year" email from Trakt and realized Emby hasn't been syncing with Trakt since August. I made sure I'm using the newest version... 3.4... and updated the plugin with a new trakt api key... still not syncing. How can I troubleshoot this? Thanks! Jeremy
-
Hi all,Sorry for my English. I use Emby for Windows 4.2.1.0 and Trakt plugin 3.3.5.0 and I have filled in the Authentication PIN But When I perform "Import playstates from Trakt.tv" or "Sync library to trakt.tv",they all fail Here is the logs: Thank you for your help.
-
We sat down to watch a movie the other day and the pre-show trailer it showed was for Dumbo. We didn't watch Dumbo. But Trakt suddenly showed that Dumbo had been watched... and so did Emby.... Is it marking trailers for movies as if they were the movie?
-
Is it possible to generate a Collection in Emby by pulling from Trakt, using either one or both of 'collected' or 'watched' status in Trakt? Alternatively, to allow marking 'collected' or 'watched' as Favorites. I can see how to do it manually: 1. Pull Sync from Trakt, 2. Filter Playstate Played, 3. Manually mark each series as Favorite or add to a Collection. But am not sure if there is an auto-generate method to do this. The logic is: When moving to a new server with new content it can be handy for each user to mark the TV shows they like. Kind regards
-
Hi, i'm currently having problems with trakt plugin. None of my movies are being sync'ed to trakt collection. https://trakt.tv/users/overboardkiller/collection. I have moved from Windows to Unraid and installed emby with trakt plugin. I have set up the plugin. with User account, what folders to sync and ticked Sync Collection during Scheduled Task I don't see any problem with the log. other then it saying 0 movies to add to collection. Emby Version 4.2.1.0 Trakt plugin Version 3.3.5.0 Deleted plugin - deleted trakt Config.xml - Restarted Emby - reinstalled plug in - Restarted again and still not working. 2019-10-16 19:43:49.129 Info TaskManager: Executing Sync library to trakt.tv 2019-10-16 19:43:49.129 Info HttpServer: HTTP Response 204 to <WorkIp>. Time: 2ms. http://Overboard:8096/emby/ScheduledTasks/Running/b1a52e63d5fb09335557d4f1e6402299 2019-10-16 19:43:49.131 Info HttpClient: POST https://api.trakt.tv/oauth/token 2019-10-16 19:43:49.147 Info HttpServer: HTTP GET http://Overboard:8096/emby/ScheduledTasks?isHidden=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 2019-10-16 19:43:49.150 Info HttpServer: HTTP Response 200 to <WorkIp>. Time: 3ms. http://Overboard:8096/emby/ScheduledTasks?isHidden=false 2019-10-16 19:43:49.606 Info HttpClient: GET https://api.trakt.tv/sync/watched/movies 2019-10-16 19:43:50.207 Info HttpClient: GET https://api.trakt.tv/sync/collection/movies?extended=metadata 2019-10-16 19:43:50.908 Info Trakt: Movies to add to collection: 0 2019-10-16 19:43:50.908 Info Trakt: Movies to remove from collection: 0 2019-10-16 19:43:50.908 Info Trakt: Movies to set watched: 0 2019-10-16 19:43:50.908 Info Trakt: Movies to set unwatched: 0 2019-10-16 19:43:50.908 Info HttpClient: GET https://api.trakt.tv/sync/watched/shows 2019-10-16 19:43:51.499 Info HttpClient: GET https://api.trakt.tv/sync/collection/shows?extended=metadata 2019-10-16 19:43:54.382 Info Trakt: Episodes to add to Collection: 0 2019-10-16 19:43:54.382 Info Trakt: Episodes to remove from Collection: 0 2019-10-16 19:43:54.382 Info Trakt: Episodes to set watched: 0 2019-10-16 19:43:54.382 Info Trakt: Episodes to set unwatched: 0 2019-10-16 19:43:54.382 Info TaskManager: Sync library to trakt.tv Completed after 0 minute(s) and 5 seconds 2019-10-16 19:43:54.385 Info TaskManager: ExecuteQueuedTasks
-
Trakt plugin help - Watched status syncing from downloaded play at incorrect date/time
invader posted a topic in Plugins
Hi there, Situation is that I watched an episode today from a downloaded/synced file on the iOS Emby app. Emby server had the episode marked as watched (which is great I wasn't sure it would do this). I ran both Trakt scheduled tasks and it synced the watch to Trakt however the time and date of the watch is "Monday 1 January 0001 at 10:05AM." I'd also like to say thank you so much for your support recently. I've just moved over to Emby from Plex and I'm amazed at how good it is. I came to Emby for the Trakt plugin but I'm finding so many other cool features and a really appreciate that the developers actually listen to the community. Rather than reducing features, they're being added. Woo hoo -
Hi there. Strange issue, then I go to the Trakt plugin settings, as soon as I change the user in the drop down "Configure Trakt for:" I get the Emby loading circle and it never stops. It doesn't appear to be saving the settings properly but it's hard to know.