Results 1 to 9 of 9

Thread: Evaluating Mezzmo, couple of questions

  1. #1

    Default Evaluating Mezzmo, couple of questions

    Hi,

    i'm currently trying out Mezzmo as Media server. So far it works quite well, but I do have a few issues:

    - when files get transcoded to H264 format, it seems as if streaming doesnt start until transcoding is complete. Once the file is 100% transcoded I can view it ok...

    - Transcoding HD ts files causes audio / video to go out of sync. Or at leat so it seems on the TV. These are .ts files I've taken from my Humax decoder.

    - Itunes music files (m4a) plays 'too slow' (like playing a 45rpm record at 33rpm)... Other music (mp3) plays fine.

    I'm currently streaming this to my tv (Philips PFL7605) using the Philips 8000 series profile.

    TV and MediaServer are connected using a 200Mbs HomePlug.

    Are there any settings I need to changes to get these things working correctly?

    Tnx in advance...

  2. #2

    Default

    I found out what the problem was with the m4a files. They were being transcoded to something the TV didnt quite understand (or implemented correctly...). I change the profile so that m4a now get transcoded to mp3 files. New problem with this is that the bitrate is too low. I got it to transcode to a fix bitrate of 192K by using:
    <ffmpegadditional>-ab 192k</ffmpegadditional>

    Is there a way to use to original bitrate of the m4a file?

    Alsop, the audio sync issue seems to be cased by the TV and/or the network. When opening the Transcoded file in VLC-player, audio is fine...
    Any clues as to what is going on?

  3. #3

    Default

    Also, when I fast forward in a movie being streamed, the 'steps' are rather small. Is there a way to make FastForward 'faster'? Meaning, stepping ahead 1 minute instead of a sec? (or something like that?).

  4. #4
    Join Date
    Dec 2010
    Posts
    76

    Default

    You have to hold key down

  5. #5
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    11,642

    Default

    Can you please send a message to support (at) conceiva (dot) com and we'll send you an updated device profile and also an updated version of FFmpeg that may fix some of the transcoding issues.

    The original rate of the m4a should be used if you didn't specify any <bitrate> in the MP3 container. What does your current MP3 transcoding container look like?

    Mezzmo Android: Install it on your tablet, smartphone, Android TV or Amazon Fire to browse and stream files from your Mezzmo library to all your devices. Full details at http://www.conceiva.com/products/mez...mo_android.asp
    Mezzmo for Kodi Add-on: Install it into Kodi to stream files from your Mezzmo library directly in Kodi. Full details at http://www.mezzmo.com/wiki/doku.php?...odi_user_guide
    Mezzmo for Roku App: Install it onto your Roku to stream files from your Mezzmo library. Full details at http://www.mezzmo.com/wiki/doku.php?...oku_user_guide
    Wiki: User Guides & Reference Manual at http://www.mezzmo.com/wiki
    Facebook: http://www.facebook.com/Mezzmo.DLNA.Server
    Twitter: https://twitter.com/conceiva_mezzmo
    Web: http://www.mezzmo.com

  6. #6

    Default

    my current mp3 container looks like:
    <avcontainer id="mp3" name="mp3" encode="1" mimetype="audio/mp3" baseline="1" dlnaprofile="MP3">
    <audio>
    <format id="mp3" encode="1" codec="libmp3lame">
    </format>
    </audio>
    <ffmpegadditional>-ab 192k</ffmpegadditional>
    </avcontainer>
    So basically i just enabled the 'encode' flags and added the ffmepadditional -ab setting. Otherwise FFmpeg uses the default -ab which is 64k...

    I also disabled the transcoding to LPCM as that seemed to be causing the problem in the first place, while original mp3 files played ok.

  7. #7
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    11,642

    Default

    Try something like this instead - it may give you better results:

    Code:
            <avcontainer id="mp3" name="mp3" encode="1" mimetype="audio/mp3" baseline="1" dlnaprofile="MP3" preferredtranscoded="1" supportschunked="0">
                    <audio>
                            <format id="mp3" encode="1" codec="libmp3lame" preferredtranscoded="1">
    				<maxbitrate>320000</maxbitrate>
                                    <bitrate>192000</bitrate>
    				<maxsamplingrate>48000</maxsamplingrate>
    				<minsamplingrate>11025</minsamplingrate>
    				<samplingrate>48000</samplingrate>
    				<samplingrate>44100</samplingrate>
    				<samplingrate>32000</samplingrate>
                            </format>
                    </audio>
            </avcontainer>

    Mezzmo Android: Install it on your tablet, smartphone, Android TV or Amazon Fire to browse and stream files from your Mezzmo library to all your devices. Full details at http://www.conceiva.com/products/mez...mo_android.asp
    Mezzmo for Kodi Add-on: Install it into Kodi to stream files from your Mezzmo library directly in Kodi. Full details at http://www.mezzmo.com/wiki/doku.php?...odi_user_guide
    Mezzmo for Roku App: Install it onto your Roku to stream files from your Mezzmo library. Full details at http://www.mezzmo.com/wiki/doku.php?...oku_user_guide
    Wiki: User Guides & Reference Manual at http://www.mezzmo.com/wiki
    Facebook: http://www.facebook.com/Mezzmo.DLNA.Server
    Twitter: https://twitter.com/conceiva_mezzmo
    Web: http://www.mezzmo.com

  8. #8

    Default

    thanks, that indeed improved the mp3 encoding. I also recieved the email with new ffmpeg, will give that a try later. But then again, I suspect that realtime transcoding with H264 is not going to be an option anyways, due to the required processing time. On my pc it takes about 7minutes to transcode a 1minute file...

    Last question, if I have a pc with 2 users on it, and I want 2 Mezzmo Services running, do I need two licenses? Or is it a license per machine?

  9. #9
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    11,642

    Default

    Real-time transcoding of high-def files (and I suspect that most h264 files are high-def) does require a quad-core CPU.

    The license is per a running copy of the server, so if you have two servers running at the same time, you need two licenses. If you have 2 users, but only one server is running at any given point in time, then you need just one license.

    Mezzmo Android: Install it on your tablet, smartphone, Android TV or Amazon Fire to browse and stream files from your Mezzmo library to all your devices. Full details at http://www.conceiva.com/products/mez...mo_android.asp
    Mezzmo for Kodi Add-on: Install it into Kodi to stream files from your Mezzmo library directly in Kodi. Full details at http://www.mezzmo.com/wiki/doku.php?...odi_user_guide
    Mezzmo for Roku App: Install it onto your Roku to stream files from your Mezzmo library. Full details at http://www.mezzmo.com/wiki/doku.php?...oku_user_guide
    Wiki: User Guides & Reference Manual at http://www.mezzmo.com/wiki
    Facebook: http://www.facebook.com/Mezzmo.DLNA.Server
    Twitter: https://twitter.com/conceiva_mezzmo
    Web: http://www.mezzmo.com

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •