Firstly, the PmsConfiguration method getProfileDir has been renamed getProfileDirectory. This may impact custom builds.
Secondly, the Player.launchTranscode method now has a new signature:
- Code: Select all
public ProcessWrapper launchTranscode(
String filename,
DLNAResource dlna,
DLNAMediaInfo media,
OutputParams params
) throws IOException;
Note the new DLNAResource argument. The latter change enables a new plugin hook: finalizeTranscoderArgs.
Finally (this is a non-breaking change unless you were relying on a bug), plugin developers might want to take another look at the StartStopListener interface, as it should now more closely reflect the expected behaviour.
