-
Notifications
You must be signed in to change notification settings - Fork 18
Description
With your plugin there's no mention of whether there's support for hardware accelerated transcoding support. Also there's no sign of a method for providing streaming profiles for handling transcoding where it is required.
So I was wondering whether it's possible to implement a system similar to the "StreamingProfiles.xml" file used by MPExtended. For your plugin which is used to implement a server streaming function used by the Kodi PVR client.
Since the client for Kodi may not be locally on the same system and/or have a different configuration setup, as well as hardware specification compared to the plugin host. Which then introduces the possibility to require transcoding of the streaming media. Non hardware accelerated transcoding tends to put a lot of load on the host server's CPU which can lead to issues with the quality or performance of the transcoded media. Modern GPUs or Intel CPUs with recent enough (Intel QuickSync) can hardware accelerate the transcoding operations, with lots of dedicated threaded cores. This as a result causes an decrease in general CPU load, increase in performance and a potential improvement in the transcoding result's quality.
Implementing such a system would allow for the customisation (and/or optimisation) of the transcoding to the situation of the host's hardware configuration.