[Resolved] Stuttering on HD channels (direct profile) (1 Viewer)

mrmojo666

MP Donator
  • Premium Supporter
  • January 24, 2006
    603
    182
    Turin
    Home Country
    Italy Italy
    just for clarification,
    am i the only one that can't recode hd tv channels and want to use them in direct mode ?
    am i the only one that have those stutter when use mxplayer with direct streams ?

    i'm asking because i can't see the needing to recode tv streams when i'm at home using wifi (or lan), it saves electricity and also makes me very very happy to watch tv on my 10" tablet at max resolution and quality (the most part of tablets and phones can manage to play 1080 streams without problem outside from ampdroid).

    thank you
     

    mrmojo666

    MP Donator
  • Premium Supporter
  • January 24, 2006
    603
    182
    Turin
    Home Country
    Italy Italy
    hello again,
    i was wondering if it possible to change ampdroid to act as mptvclient in debug mode to avoid the streaming server and read directly the timeshift buffer and recordings from network shares.

    i don't think would be enough to change stream url to something like this "//tvserver/timeshift" that is passed to thiscode?

    Code:
      i.setDataAndType(Uri.parse(mStreamingUrl), "video/*");
     

    DieBagger

    Retired Team Member
  • Premium Supporter
  • September 11, 2007
    2,516
    1,276
    39
    Austria
    Home Country
    Austria Austria
    hello again,
    i was wondering if it possible to change ampdroid to act as mptvclient in debug mode to avoid the streaming server and read directly the timeshift buffer and recordings from network shares.

    i don't think would be enough to change stream url to something like this "//tvserver/timeshift" that is passed to thiscode?

    Code:
      i.setDataAndType(Uri.parse(mStreamingUrl), "video/*");

    Nope that wouldn't be anywhere near that easy, besides who says that the recordings are stored on a shared folder (how about authentication)... It would just introduce more issues and complexity.

    Unfortunately I currently have no idea what the issue is in your case.
     

    mrmojo666

    MP Donator
  • Premium Supporter
  • January 24, 2006
    603
    182
    Turin
    Home Country
    Italy Italy
    WOWOOOOOOOOOOOOOOO!!!!!!

    as you suggest transcoding only audio did the magic!!!!!
    now i'm able to watch live HD tv and HD recordings smooth like silk


    here the profiles bot ffmpeg and vlc the give the same result on my zenithink c91 upgrade tablet

    ....
    <!-- Android VLC profiles -->

    <TranscoderProfile>
    <Name>Android VLC no video transcoding</Name>
    <Description>HD-quality Android profile based on VLC</Description>
    <Bandwidth>15000</Bandwidth>
    <Targets>
    <Target>android</Target>
    </Targets>
    <Transport>http</Transport>
    <MaxOutputWidth>1920</MaxOutputWidth>
    <MaxOutputHeight>1080</MaxOutputHeight>
    <MIME>video/MP2T</MIME>
    <HasVideoStream>true</HasVideoStream>

    <Transcoder>MPExtended.Services.StreamingService.Transcoders.VLCWrapper</Transcoder>
    <TranscoderParameters>
    <path>%mpextended-streaming%\vlc-2.0.2\MPExtended.Libraries.VLCWrapper.exe</path>
    <options>--ffmpeg-hw --sout-ffmpeg-strict=-2</options>
    <encoder>aenc=ffmpeg{aac-profile=low},acodec=mp4a,ab=128,samplerate=48000,channels=2,audio-sync</encoder>
    <muxer>:standard{access=file,mux=ts,dst=#OUT#}</muxer>
    </TranscoderParameters>
    </TranscoderProfile>

    <!-- Android FFMpeg profiles -->
    <TranscoderProfile>
    <Name>Android FFmpeg no video transcoding</Name>
    <Description>HD-quality Android profile based on ffmpeg</Description>
    <Bandwidth>15000</Bandwidth>
    <Targets>
    <Target>android</Target>
    </Targets>
    <Transport>http</Transport>
    <MaxOutputWidth>1280</MaxOutputWidth>
    <MaxOutputHeight>720</MaxOutputHeight>
    <MIME>video/MP2T</MIME>
    <HasVideoStream>true</HasVideoStream>

    <Transcoder>MPExtended.Services.StreamingService.Transcoders.FFMpeg</Transcoder>
    <TranscoderParameters>
    <codecParameters>-codec:v copy -codec:a aac -b:a 128k -ac 2 -strict experimental -async 1 -sn -f mpegts</codecParameters>
    </TranscoderParameters>
    </TranscoderProfile>
    ...........
     

    Users who are viewing this thread

    Top Bottom