Page 1 of 1

looking for a profile for VLC IOS

PostPosted: Fri Mar 13, 2015 6:49 pm
by saraseb
Hi,

The recent update of VLC on IOS is not capable to decode AC3 audio.

Would someone have a profile to transcode AC3 to AAC?

Cheers,
Seb

Re: looking for a profile for VLC IOS

PostPosted: Thu Mar 26, 2015 5:02 pm
by peter1212
add this at the end of profiles.xml above </Profiles>

  Code:
    <Profile id="23" name="VLC for iOS" extendsProfileId="1">
      <Transcoding>
        <Video targetContainer="mpegts" targetACodec="aac">
           <Matches container="*" aCodec="ac3" />
        </Video>
      </Transcoding>
    </Profile>

Re: looking for a profile for VLC IOS

PostPosted: Sun Mar 29, 2015 7:21 am
by saraseb
Thanks,

it works. the audio is well converted.

I noticed that the subtitles and multi language options disappear.

Any idea?

Seb

Re: looking for a profile for VLC IOS

PostPosted: Sun Mar 29, 2015 6:42 pm
by atc98092
When transcoding occurs, you lose the ability to select captions and multiple audio tracks. Nothing you can do about that unfortunately.

Re: looking for a profile for VLC IOS

PostPosted: Mon Mar 30, 2015 7:02 pm
by saraseb
Thanks for the info.

That's pity because I have many mkvs with multi languages in ac3.

Seb

Re: looking for a profile for VLC IOS

PostPosted: Fri Apr 03, 2015 7:19 pm
by peter1212
Modify audio tracks in mkv with "mkvmerge GUI" before playing.

You could try "burned in" subs by adding HardSubsTranscoding to Profile:

  Code:
<HardSubsTranscoding>
    <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="aac" aBitrate="384" DAR="16:9" />
</HardSubsTranscoding>