![]() |
Transcoding media files - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93) +---- Forum: VideoPlayer Development (https://forum.kodi.tv/forumdisplay.php?fid=240) +---- Thread: Transcoding media files (/showthread.php?tid=332242) |
Transcoding media files - scarface_one - 2018-05-27 With VideoPlayer making great progress towards headless Kodi, I was hoping if we could finally get started on merging transcoding of media files into Kodi. Work on this was done during GSOC 2015 here. Has there been any progress since? If not, I've got some free time, and would be willing to work on trying to get it into Kodi. Note to mods: If this isn't the right sub-forum, feel free to move it. Thanks. RE: Transcoding media files - Klojum - 2018-05-27 As far as I know, there is no all-out focus on transcoding in Kodi at this time. So I'd say all help is welcome, and as you already know the Kodi code is available through Github. ![]() RE: Transcoding media files - RockerC - 2018-05-28 Checkout the work/code by mANm (Mark Muth) from 2015, but note I read somewhere that FFmpeg recently removed its own transcoding software (ffserver) so should probably try not to depend on that as a dependency. https://forum.kodi.tv/showthread.php?tid=221503 https://github.com/MarkMuth/xbmc/commits/gsoc2015-2 RE: Transcoding media files - scarface_one - 2018-05-29 Thanks, I'm looking at it RE: Transcoding media files - da-anda - 2018-05-29 transcoding is in the pipline AFAIK. But for it to work, the core cleanup has to be finished first. So videoplayer needs to completely be de-coupled from any UI component etc, so that it can be instantiated multiple times (for PIP) and standalone in the background (for transcoding). FernetMenta is currently working hard to get rid of the tangled mess around our videoplayer component. So once this is finished (no ETA) we can start working on implementing transcoding and PIP Transcoding media files - Koying - 2018-05-29 VideoPlayer for transcoding? Interesting concept ![]() I would have expected decoupling of ffmpeg from VP, instead... RE: Transcoding media files - da-anda - 2018-05-30 @Koying well, playback would have to run through the same pipeline as local playback, wouldn't it (inputstream, demuxers, external subs/audio tracks, ...) and this is all bound to VP, isn't it? Transcoding itself will likely be done by ffmpeg - so basically "only" the output target of the player would change from local to a transcoder. That's at least how I understood it. I could ofc be wrong on that. Transcoding media files - Koying - 2018-05-30 Well, technically, why not, but that seems strange to use the player to do transcoding, architectually. Separation of Concerns, anyone ![]() |