Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. SDMattman

    Trying to build a low cost low power server for my mom

    I'm actually planning on using an old second gen i3 machine to get her going. It's fast enough to transcode x264 1080p content to a Roku. It even sort of works on x265, but it makes the proc sweat, and if there's any hiccup the playback catches up with the transcoding. It'll get her started - and she'll either fall in love with it and I'll build out something better, or it won't click and all I'm out is my time (I have this stuff laying around). I was really hoping to start her out with something better out of the gate, but it might be better this way (for now).
  3. quickmic

    emby for kodi next gen skip credits

    Correct, it's not finally implemented yet. Not sure if Emby server reports the credit markers, it didn't in the past. How did you generate the credit markers on Emby sever? I never got it working.
  4. Lessaj

    Need help opening ports on router

    It's not unusual for a WAN IP to change, even without a reboot of the device, and it's not a problem to get around this by using a DDNS. You may need to contact your ISP and find out if they allow opening a port, for it work for a short while and then stop either your WAN IP changed again or they're actively blocking after a short time.
  5. RanmaCanada

    How to kill 4K Transcodes

    Anyone who is not using hardware transcoding for 4k should just block non 4k capable users out from those libraries. Software transcoding 4k is absurd, and you should be using hardware, either Quicksync or NVENC. Both make trivial work of 4k transcoding. Even my old i3-8130u could handle 3 4k transcodes without a problem. If your hardware is not up to the task, upgrade. Heck an inexpensive N100 system will smoke an 8 core Ryzen in number of trancodes when using Quicksync.
  6. Luke apply this in the latest beta, working great, well done Luke!
  7. quickmic

    embyforkodi (next-gen) 10.X.X support

    I'll review that, I could imagine you are right. If Kodi requests the same content (nearly simultaneous) twice (which it shouldn't, makes no sense) it would wipe the first or second request. In the past I played a bit using thread ids but according to my research there was an issue. As mentioned before, I send "redirects" and followup request hasn't the same thread id. I could think of a counter as id... Keeping the globals()["DelayedContent"] would solve this issue, but it would fill up the memory. Ergo not an option. I need to think about it.
  8. mattl1979

    Now Playing Not Showing

    With v4.8.5 and Symfonium 10, I do see the individual log entries, i.e. user started/stopped playing media. For the Now Playing, it works ~75% of the time. Seems to be no pattern to that remaining 25%. It's definitely better than the first 4.8.x, but not as good as 4.7. I know this doesn't help you or Tolriq much, but I figured I would say that there is progress!
  9. Today
  10. It has been better then tonight its crashed twice. Part of the slowness was the seedbed. They were having load balancing issues and they said its fixed. So I had that working. Changed everyone's settings as above. I dont know which of these you might need it crashed. Came back up crashed less then an hour later and took several attempts to come back online. embyserver-63849690476.txt embyserver-63849695936.txt embyserver-63849697655.txt embyserver.txt
  11. quickmic

    embyforkodi (next-gen) 10.X.X support

    Before I review this issue, some background info. All this delayedcontent thingies are actually workarounds. Kodi has a timeout setting in advancedsetting.xml -> curlclienttimeout. This setting is adjustable in plugin settings. Problem 1: In waiting (for response) state, Kodi is blocking (at least for POST requests). Means the complete plugin code is stalled. No notification, no api calls nothing is processed. Problem 2: POST requests are completely blocking. Not even xbmc.api's are accepted/processed while Kodi's curl waiting for POST request response. Ergo, the timeout setting must be quite low, otherwise the plugin (and Kodi) can do nothing at this point until some response is received by Kodi (actually Kodi's curl). There was an issue reported that Kodi freezes on playback stop for e.g. 120 seconds when I intentionally set the timeouts to 120 seconds. Kodi called an URL (could be a Emby server query, could be something else not responsive). Whatever was called, it was not responding. So I switched to a very low timeout setting, but there is another issue. The plugin uses a selection messagebox for e.g. multicontent-selection or transcoding-stream-selection waiting for user input. This message box comes up on GET requests (not for POST due as described, POST are complete blocking) and is processed in the internal webserver. Obviously 2 seconds are not enough for the user selection, so I need to send Kodi something back lower than the curlclienttimeout settings not running into timeouts. The only option I found was a redirect to the same (internal webserver) URL but with the prefix "delayed_content". -> "http://127.0.0.1:57342/delayed_content/blabla" A loop if you want. Each loop checks if the user input was done and finally send the actual redirect to Emby server's stream URL but there was another issue. The redirects are limited to a certain number, I think it was 10 or 50 (default settings). Therefore I use the Kodi's url parameter extension "redirect-limit=1000" for Urls e.g. http://127.0.0.1:57342/picture/2a38697ffc1b428b943aa1b6014e2263/p-131797-0-p-95d8e34261a7fa0548e08ba545ddf287|redirect-limit=1000 This increases the redirect limit. For images (even if there is no user input), 2 seconds could be too low. Depends on Emby server responsiveness and Emby server isn't the fastest at some points. Especially when Emby server is busy with scanning etc. Also images could include overlays which the plugin injects. e.g. for bookmark images. This takes also time to process. btw, you may noticed, if a user cancelled a selection (for multicontent), the internal/plugins webserver cannot send a 404 to Kodi. This would result in a Kodi message -> content not found. Therefore I send back a "fake content" ->"BlankWAV" in the code and it's exactly that. A blank wav audio file, fully valid but 0 seconds. Kodi is happy, that it got content, even it's just a dummy and no Kodi message pops up. sideinfo executebuiltin has also an option to wait for processed. This also stalls all plugins. If the executebuiltin triggers a plugin command, Kodi will freeze as the plugin cannot respond. All that, I learned the hard way and is not nice. I would call it Kodi bugs.
  12. generiq

    Ffmpeg and dolby vision

    Just saw this article https://www.phoronix.com/news/FFmpeg-Dolby-Vision-Progress Well done @softworkz and the team. And of course I need to mention hassn and his work on libplacebo.
  13. d00zah

    Episode Recordings

    Glad I could help.
  14. Nikomajor

    Need help opening ports on router

    Tried using the new port after changing the port rules on the router, network settings on the Emby Server and setting up a firewall exception. The port was open on canyouseeme for a very short while before the "Connection timed out" error started again. In fact while typing this out it was reported as open before reverting to the previous error. I've also noticed that my WAN IP changed overnight. If I remember correctly, it was a xxx.xxx.xx.99 & now it is xxx.xxx.xx.198
  15. Use gpu-next instead of gpu Looking at your stats, hardware acceleration appears to be failing, or being misreported
  16. hoopsdavis

    Episode Recordings

    I was able to get everything setup. @d00zah Thanks
  17. auroraemby

    How to kill 4K Transcodes

    it does not work, he won't update it. Emby won't add it so...........
  18. seashell

    embyforkodi (next-gen) 10.X.X support

    So the issue seems to be a race condition in the DelayedContent handling. I'm not sure if Kodi 21 is multi-threaded in some area involving image fetching that Kodi 20.5 was not. What I'm seeing is that in webservice.py around line 512 (sorry, I've got some edits so it likely isn't the exact line number) where it starts the loading process for the artwork into the cache a second call to this function is being made before the first call to the function is complete. So globals()['DelayedContent'][QueryData['DelayedContentId']] = "" is performed again possibly wiping out the just loaded data and a second load operation is performed. Here's the lines around 512 I mean. if QueryData['Type'] == 'picture': if Payload not in ArtworkCache[1]: Then regardless of how that collision works out it sets up two parallel calls to send_delayed_content. The first one will be happy and will call client.send(DelayedContent[DelayedContentId]) and then del globals()["DelayedContent"][DelayedContentId] so when the second call comes along the key is gone and the else clause is triggered so xbmc.log(f"EMBY.hooks.webservice: Delayed content not found {DelayedContentId}", 3) # LOGERROR client.send(sendNoContent) gets executed which makes Kodi sad. Of course sometimes they will be close enough that both calls can return the data before the first one does the delete. So why is Kodi loading the same image twice so close together? No idea. But it is. And since the DelayContent system is stateful it needs to be thread safe. I did a quick kludge by making DelayedContent Entries [whatever_they_were_before,1] on creation and then when the second call comes along it updates the counter. Then when the del call comes it checks if the count is 1 and deletes it if it is or decrements the counter if not. With that I've not seen the content not found errors or the odd Kodi failed directory loads on my PC. Have not tried on the TV box. There are other places DelayedContent is manipulated in that file though, and I wasn't super careful to trace it all or see if any other files interact with it. Since this code is called threaded the global variables should be protected with mutexes as well.
  19. I found a workaround for this, though it truly is a workaround and won't be suitable for everybody. I'm setting up the comskipper plugin, and I noticed that comskip has the ability to extract CC and emit an SRT file. For the experiments I've done do far, the SRT extraction looks pretty accurate. I just have to do CC with SRT instead of Default EiA_608 for now.
  20. crossfire13148

    New Statistics plugin

    well this is "looking" right.... The problem now is i purposely have not added the episode from 19 april, S10E19, which is the 149th episode, so i AM NOT at 100%, so this should be saying 148/149 Emby IS snowing this episode missing under "missing episodes"
  21. Jey2024

    Subtitle offset not working in latest release

    Hi @LukeI'm having the same issue. In my video, I have the subtitle English (PGSSUB), which is working great, but if I switch to English (SDH SRT), I'm seeing a subtitle offset option. However, pressing + / - does not change the offset value at all, and it remains at 0. Do you still have the logs I sent you last week? This should be easily reproducible by downloading any SRT file and trying to change the offset values in the latest Android app.
  22. Luke

    Issue with 4.8.5.0

    Hi, as we discussed in the other topic, when you uninstall / reinstall, if you intend to make a fresh start then you also need to delete the server data folder: Emby Server Data Folder
  23. Luke

    Issue with 4.8.5.0

    The store has a review process so it will always run a little behind.
  24. Luke

    Filtering movies by subgenres

    Hi, I've not seen sub-genres on moviedb or tvdb.
  25. Hi there, please attach the complete emby server and ffmpeg log files. thanks.
  26. Jey2024

    Unpack directory in library

    Thanks. The manual method will always work, but I'm working on automating the connection of quite a number of system, that's why I wanted to automate this.
  27. Hi, overnight my synology package updated to 4.8.50. I have had emby working for years. For some unknown reason, mid playback now, the stream is going from direct playback to transcoding (which I don't want) and then failing seconds later (usually after the playback repeats the same 5 second segment it is playing about 3x over) and then says too many errors on screen and skips to the next episode. Any ideas why the update would suddenly cause this? 2024-04-25 23:53:01.300 Info Server: http/1.1 Response 200 to host2. Time: 2133ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/27.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:01.329 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/28.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:01.676 Error HttpClient: Error getting response from http://192.168.1.97:60006/upnp/control/renderer_dvc/AVTransport *** Error Report *** Version: 4.8.5.0 Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3 Operating system: Linux version 3.10.108 (root@build3) (gcc version 8.5.0 (GCC) ) #42962 SMP Mon May 29 14:36:28 CST 2023 Framework: .NET 6.0.25 OS/Process: x64/x64 Runtime: system/System.Private.CoreLib.dll Processor count: 4 Data path: /config Application path: /system System.Net.Http.HttpRequestException: System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.IO.IOException: The response ended prematurely. at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) --- End of inner exception stack trace --- at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) at System.Net.Http.DecompressionHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) at System.Net.Http.HttpClient.<SendAsync>g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken) at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod) Source: System.Net.Http TargetSite: Void MoveNext() InnerException: System.IO.IOException: The response ended prematurely. Source: System.Net.Http TargetSite: Void MoveNext() at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) 2024-04-25 23:53:01.688 Error DLNA: Error updating device info for Front Study *** Error Report *** Version: 4.8.5.0 Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3 Operating system: Linux version 3.10.108 (root@build3) (gcc version 8.5.0 (GCC) ) #42962 SMP Mon May 29 14:36:28 CST 2023 Framework: .NET 6.0.25 OS/Process: x64/x64 Runtime: system/System.Private.CoreLib.dll Processor count: 4 Data path: /config Application path: /system System.Net.Http.HttpRequestException: System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.IO.IOException: The response ended prematurely. at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) --- End of inner exception stack trace --- at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod) at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod) at Emby.Dlna.PlayTo.SsdpHttpClient.PostSoapDataAsyncToString(String url, String soapAction, ReadOnlyMemory`1 postData, String header, Boolean logRequest, CancellationToken cancellationToken) at Emby.Dlna.PlayTo.SsdpHttpClient.SendCommandWithNodeValuesResponseAsync(String url, DeviceService service, String command, ReadOnlyMemory`1 postData, CancellationToken cancellationToken, String firstNodeName, String[] secondLevelNodes, String[] addEscapeWorkaroundToNodes, Boolean logRequest, String header) at Emby.Dlna.PlayTo.Device.GetPositionInfo(TransportCommands avCommands, CancellationToken cancellationToken) at Emby.Dlna.PlayTo.Device.TimerCallback(Object sender) Source: System.Net.Http TargetSite: Void MoveNext() InnerException: System.IO.IOException: The response ended prematurely. Source: System.Net.Http TargetSite: Void MoveNext() at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) 2024-04-25 23:53:02.149 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:02.187 Info Server: http/1.1 Response 204 to host2. Time: 38ms. POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress 2024-04-25 23:53:02.822 Info Server: http/1.1 Response 200 to host2. Time: 1493ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/28.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:02.827 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/29.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:04.364 Info Server: http/1.1 Response 200 to host2. Time: 1537ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/29.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:04.370 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/30.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:05.766 Info Server: http/1.1 Response 200 to host2. Time: 1396ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/30.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:05.771 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/31.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:07.333 Info Server: http/1.1 Response 200 to host2. Time: 1562ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/31.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:07.339 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/32.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:08.793 Info Server: http/1.1 Response 200 to host2. Time: 1455ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/32.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:08.800 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/33.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:10.461 Info Server: http/1.1 Response 200 to host2. Time: 1661ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/33.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:10.468 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/34.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:11.916 Info Server: http/1.1 Response 200 to host2. Time: 1448ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/34.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:11.921 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/35.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:12.170 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:12.181 Info Server: http/1.1 Response 204 to host2. Time: 11ms. POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress 2024-04-25 23:53:13.416 Info Server: http/1.1 Response 200 to host2. Time: 1495ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/35.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:13.420 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/36.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:14.804 Info Server: http/1.1 Response 200 to host2. Time: 1384ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/36.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:14.809 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/37.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:16.162 Info Server: http/1.1 Response 200 to host2. Time: 1352ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/37.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:16.167 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/38.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:17.602 Info Server: http/1.1 Response 200 to host2. Time: 1435ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/38.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:17.614 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/39.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:18.905 Info Server: http/1.1 Response 200 to host2. Time: 1292ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/39.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:18.910 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/40.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:20.440 Info Server: http/1.1 Response 200 to host2. Time: 1530ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/40.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:20.443 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/41.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:21.977 Info Server: http/1.1 Response 200 to host2. Time: 1533ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/41.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:21.989 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/42.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:22.182 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:22.191 Info Server: http/1.1 Response 204 to host2. Time: 9ms. POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress 2024-04-25 23:53:23.483 Info Server: http/1.1 Response 200 to host2. Time: 1494ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/42.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:23.487 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/43.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:24.925 Info Server: http/1.1 Response 200 to host2. Time: 1439ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/43.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:24.933 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/44.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:26.259 Info Server: http/1.1 Response 200 to host2. Time: 1326ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/44.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:26.267 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/45.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:27.551 Info Server: http/1.1 Response 200 to host2. Time: 1283ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/45.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:27.557 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/46.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:29.191 Info Server: http/1.1 Response 200 to host2. Time: 1634ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/46.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:29.207 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/47.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:30.692 Info Server: http/1.1 Response 200 to host2. Time: 1486ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/47.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:30.701 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/48.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:32.181 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:32.186 Info Server: http/1.1 Response 204 to host2. Time: 5ms. POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress 2024-04-25 23:53:32.280 Info Server: http/1.1 Response 200 to host2. Time: 1579ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/48.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:32.289 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/49.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:33.962 Info Server: http/1.1 Response 200 to host2. Time: 1673ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/49.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:33.969 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/50.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:35.406 Info Server: http/1.1 Response 200 to host2. Time: 1437ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/50.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:35.415 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/51.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:36.904 Info Server: http/1.1 Response 200 to host2. Time: 1489ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/51.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:36.914 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/52.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:38.460 Info Server: http/1.1 Response 200 to host2. Time: 1546ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/52.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:38.466 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/53.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:39.918 Info Server: http/1.1 Response 200 to host2. Time: 1451ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/53.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:39.922 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/54.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:41.408 Info Server: http/1.1 Response 200 to host2. Time: 1486ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/54.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:41.418 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/55.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:42.180 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:42.182 Info Server: http/1.1 Response 204 to host2. Time: 2ms. POST http://192.168.1.1:8096/emby/Sessions/Playing/Progress 2024-04-25 23:53:42.863 Info Server: http/1.1 Response 200 to host2. Time: 1445ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/55.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:42.871 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/56.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:44.349 Info Server: http/1.1 Response 200 to host2. Time: 1478ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/56.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:44.356 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/57.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:45.625 Info Server: http/1.1 Response 200 to host2. Time: 1269ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/57.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:45.631 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/58.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:47.074 Info Server: http/1.1 Response 200 to host2. Time: 1443ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/58.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:47.085 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/59.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:48.425 Info Server: http/1.1 Response 200 to host2. Time: 1340ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/59.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:48.431 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/60.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:49.878 Info Server: http/1.1 Response 200 to host2. Time: 1447ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/60.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:49.885 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/61.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:50.444 Info Server: http/1.1 Response 500 to host2. Time: 560ms. GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/61.ts?PlaySessionId=cefeefc6254542688630b4f6890aba51 2024-04-25 23:53:50.636 Info Server: http/1.1 DELETE http://192.168.1.1:8096/emby/Videos/ActiveEncodings?playSessionId=cefeefc6254542688630b4f6890aba51&deviceId=ff857a7b03e1e4ac. Connection=keep-alive, Host=host3, User-Agent=Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003), Accept-Encoding=gzip, Content-Type=application/x-www-form-urlencoded, Content-Length=0, X-Emby-Device-Id=ff857a7b03e1e4ac, X-Emby-Device-Name=Shield%20Lounge, X-Emby-Token=f44f04491e444072b80a32a6fc9e9b8f, X-Emby-Client-Version=2.1.10g, X-Emby-UserId=d84b4d5dd9e44732abc55f15c4b5a8c4, X-Emby-Client=AndroidTv 2024-04-25 23:53:50.642 Info App: ProcessRun 'StreamTranscode d9618a': Stopping ffmpeg process with q command for /config/transcoding-temp/6C28DB/6C28DB_27.ts 2024-04-25 23:53:50.644 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Items/27631/PlaybackInfo?format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:50.650 Info App: User policy for promnitz. EnablePlaybackRemuxing: True EnableVideoPlaybackTranscoding: True EnableAudioPlaybackTranscoding: True 2024-04-25 23:53:50.650 Info SessionManager: Removing playSession cefeefc6254542688630b4f6890aba51 from session a9867b1215aacc63d43819288b8fdc53 2024-04-25 23:53:50.650 Info SessionManager: Adding playSession 3e1639332264427f9f4c1e53d6a7cfe7 to session a9867b1215aacc63d43819288b8fdc53 2024-04-25 23:53:50.651 Info Server: http/1.1 Response 200 to host2. Time: 8ms. POST http://192.168.1.1:8096/emby/Items/27631/PlaybackInfo?format=json 2024-04-25 23:53:50.720 Info Server: http/1.1 POST http://192.168.1.1:8096/emby/Sessions/Playing. UserAgent: Dalvik/2.1.0 (Linux; U; Android 11; SHIELD Android TV Build/RQ1A.210105.003) 2024-04-25 23:53:50.724 Info SessionManager: Playback start reported by app AndroidTv 2.1.10g playing Phones. Started at 129596 ms 2024-04-25 23:53:50.742 Info Server: http/1.1 Response 204 to host2. Time: 22ms. POST http://192.168.1.1:8096/emby/Sessions/Playing 2024-04-25 23:53:50.744 Info Trakt: Playback Started 2024-04-25 23:53:50.835 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/master.m3u8?DeviceId=ff857a7b03e1e4ac&MediaSourceId=f03c239985beeffbb1c490dd4e5ece99&StartTimeTicks=1295960000&PlaySessionId=3e1639332264427f9f4c1e53d6a7cfe7&api_key=x_secret2_x&VideoCodec=h264,mpeg2video,hevc,h265&AudioCodec=aac_latm,mp4a_latm,aac,mp3&VideoBitrate=999808000&AudioBitrate=192000&MaxHeight=2176&AudioStreamIndex=1&CopyTimestamps=true&SegmentContainer=ts&MinSegments=2&AllowInterlacedVideoStreamCopy=True&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=2&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline,high10&h264-level=52&hevc-profile=Main,Main10&aac_latm-audiochannels=2&mp4a_latm-audiochannels=2&aac-audiochannels=2&mp3-audiochannels=2&TranscodeReasons=DirectPlayError,DirectPlayError&AllowVideoStreamCopy=false. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=gzip 2024-04-25 23:53:50.841 Info Server: http/1.1 Response 200 to host2. Time: 8ms. GET http://192.168.1.1:8096/emby/videos/27631/master.m3u8?DeviceId=ff857a7b03e1e4ac&MediaSourceId=f03c239985beeffbb1c490dd4e5ece99&StartTimeTicks=1295960000&PlaySessionId=3e1639332264427f9f4c1e53d6a7cfe7&api_key=x_secret2_x&VideoCodec=h264,mpeg2video,hevc,h265&AudioCodec=aac_latm,mp4a_latm,aac,mp3&VideoBitrate=999808000&AudioBitrate=192000&MaxHeight=2176&AudioStreamIndex=1&CopyTimestamps=true&SegmentContainer=ts&MinSegments=2&AllowInterlacedVideoStreamCopy=True&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=2&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline,high10&h264-level=52&hevc-profile=Main,Main10&aac_latm-audiochannels=2&mp4a_latm-audiochannels=2&aac-audiochannels=2&mp3-audiochannels=2&TranscodeReasons=DirectPlayError,DirectPlayError&AllowVideoStreamCopy=false 2024-04-25 23:53:50.845 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/main.m3u8?DeviceId=ff857a7b03e1e4ac&MediaSourceId=f03c239985beeffbb1c490dd4e5ece99&StartTimeTicks=1295960000&PlaySessionId=3e1639332264427f9f4c1e53d6a7cfe7&api_key=x_secret2_x&VideoCodec=h264,mpeg2video,hevc,h265&AudioCodec=aac_latm,mp4a_latm,aac,mp3&VideoBitrate=999808000&AudioBitrate=192000&MaxHeight=2176&AudioStreamIndex=1&CopyTimestamps=true&SegmentContainer=ts&MinSegments=2&AllowInterlacedVideoStreamCopy=True&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=2&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline,high10&h264-level=52&hevc-profile=Main,Main10&aac_latm-audiochannels=2&mp4a_latm-audiochannels=2&aac-audiochannels=2&mp3-audiochannels=2&TranscodeReasons=DirectPlayError,DirectPlayError&AllowVideoStreamCopy=false. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=gzip 2024-04-25 23:53:50.849 Info Server: http/1.1 Response 200 to host2. Time: 4ms. GET http://192.168.1.1:8096/emby/videos/27631/main.m3u8?DeviceId=ff857a7b03e1e4ac&MediaSourceId=f03c239985beeffbb1c490dd4e5ece99&StartTimeTicks=1295960000&PlaySessionId=3e1639332264427f9f4c1e53d6a7cfe7&api_key=x_secret2_x&VideoCodec=h264,mpeg2video,hevc,h265&AudioCodec=aac_latm,mp4a_latm,aac,mp3&VideoBitrate=999808000&AudioBitrate=192000&MaxHeight=2176&AudioStreamIndex=1&CopyTimestamps=true&SegmentContainer=ts&MinSegments=2&AllowInterlacedVideoStreamCopy=True&BreakOnNonKeyFrames=True&SubtitleStreamIndexes=2&ManifestSubtitles=vtt&h264-profile=high,main,baseline,constrainedbaseline,high10&h264-level=52&hevc-profile=Main,Main10&aac_latm-audiochannels=2&mp4a_latm-audiochannels=2&aac-audiochannels=2&mp3-audiochannels=2&TranscodeReasons=DirectPlayError,DirectPlayError&AllowVideoStreamCopy=false 2024-04-25 23:53:50.862 Info Server: http/1.1 GET http://192.168.1.1:8096/emby/videos/27631/hls1/main/43.ts?PlaySessionId=3e1639332264427f9f4c1e53d6a7cfe7. Connection=keep-alive, Host=host3, User-Agent=Emby/2.1.10g (Linux;Android 11) ExoPlayerLib/2.18.7, Accept-Encoding=identity 2024-04-25 23:53:50.939 Info App: ProcessRun 'StreamTranscode cb96a3' Execute: /bin/ffmpeg -loglevel +timing -y -print_graphs_file "/config/logs/ffmpeg-transcode-cb96a365-8cdb-41c6-8327-e03b0b4e2a10_1graph.txt" -copyts -start_at_zero -f matroska,webm -ss 00:02:09.000 -c:v:0 h264 -noautorotate -i "/video/TV Kids/Bluey (2018)/Season 3/Bluey.(2018).S03E16.Phones.WEBDL-1080p.x264.AAC - BTN.mkv" -map 0:0 -map 0:1 -sn -c:v:0 libx264 -g:v:0 75 -maxrate:v:0 4069635 -bufsize:v:0 8139270 -sc_threshold:v:0 0 -keyint_min:v:0 75 -r:v:0 25 -pix_fmt:v:0 yuv420p -preset:v:0 veryfast -profile:v:0 high -x264opts:v:0 "subme=0:me_range=4:rc_lookahead=10:partitions=none" -crf:v:0 23 -c:a:0 copy -metadata:s:a:0 language=eng -disposition:a:0 default -max_delay 5000000 -avoid_negative_ts disabled -f segment -map_metadata -1 -map_chapters -1 -segment_format mpegts -segment_list "/config/transcoding-temp/362EAA/362EAA.m3u8" -segment_list_type m3u8 -segment_time 00:00:03.000 -segment_start_number 43 -individual_header_trailer 0 -write_header_trailer 0 -segment_write_temp 1 "/config/transcoding-temp/362EAA/362EAA_%d.ts" -map 0:2 -map 0:0 -an -c:v:0 copy -c:s:0 webvtt -max_delay 5000000 -avoid_negative_ts disabled -f segment -map_metadata -1 -segment_format webvtt -segment_list "/config/transcoding-temp/362EAA/362EAA_s2.m3u8" -segment_list_type m3u8 -segment_time 00:00:03.000 -segment_start_number 43 -break_non_keyframes 1 -individual_header_trailer 1 -write_header_trailer 0 -write_empty_segments 1 -segment_write_temp 1 -min_frame_time 00:02:09.000 "/config/transcoding-temp/362EAA/362EAA_s2_%d.vtt" 2024-04-25 23:53:51.053 Info App: AppendExtraLogData - Read graph file: /config/logs/ffmpeg-transcode-d9618a6b-9558-4945-8974-f0031f9b1d04_1graph.txt 2024-04-25 23:53:51.055 Info App: AppendExtraLogData - Deserialized GraphData fileStream: 13,314.000 bytes Graph Count: 2 2024-04-25 23:53:51.055 Info App: AppendExtraLogData - File Deleted 2024-04-25 23:53:51.059 Info App: ProcessRun 'StreamTranscode d9618a' Process exited with code 0 - Succeeded 2024-04-25 23:53:51.065 Info Server: http/1.1 Response 204 to host2. Time: 429ms. DELETE http://192.168.1.1:8096/emby/Videos/ActiveEncodings?playSessionId=cefeefc6254542688630b4f6890aba51&deviceId=ff857a7b03e1e4ac
  1. Load more activity
×
×
  • Create New...