Jellyfin Forum
DLNA Profile for transcoding - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: DLNA Profile for transcoding (/t-dlna-profile-for-transcoding)

Pages: 1 2


RE: DLNA Profile for transcoding - TheDreadPirate - 2024-11-04

This seems like a bug. It is reading your profile, but not honoring the profile.

Go ahead and submit a bug report on the plugin's git.

https://github.com/jellyfin/jellyfin-plugin-dlna/issues


RE: DLNA Profile for transcoding - disgustipated - 2024-11-05

(2024-11-04, 08:12 PM)benkenobi221 Wrote: yes it still creates a ts file when transcoding when I want a mp4. I copied the panasonic xml profile and changed the identity so it matches my tv. then I deleted mkv and ts from direct play and changed ts to mp4 in the "transcodingProfile" section. But it still makes a ts file. Maybe you can help with the correct configuration for getting a mp4 when transcoding. I really appreciate your work. You guys are amazing in what you do.

I left this on the github post, try the below for your transcoding profile.

Code:
    <TranscodingProfile container="mkv"
      type="Video"
      videoCodec="mpeg4"
      audioCodec="aac"
      estimateContentLength="false"
      enableMpegtsM2TsMode="false"
      transcodeSeekInfo="Auto"
      copyTimestamps="false"
      context="Streaming"
      enableSubtitlesInManifest="false"
      minSegments="0"
      segmentLength="0"
      breakOnNonKeyFrames="false" />

This should transcode an mkv container to mp4 and aac audio, choose your desired video and audio codec there. it converted the mkv file i was using from h264 to mp4 and aac


RE: DLNA Profile for transcoding - benkenobi221 - 2024-11-05

I copied the line to my profile. It is still making a TS file :-( See my logs and the profile attached. could you send me your profile? Maybe there is something else missing in my profile?