Menu

Main Menu
Talk Get Daily Search

Member's Online

    User Name
    Password

    [ANNOUNCE] zoutube a youtube browser and player now in extras-devel

    Reply
    Page 8 of 9 | Prev |   6     7   8   9   | Next
    Edsal | # 71 | 2010-06-25, 18:28 | Report

    say what ! anybody speaking english here i have no idea what's being said !

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Edsal | # 72 | 2010-06-25, 18:29 | Report

    my zoutube not working and that's all i can say i hope it get's fix soon .

    Edit | Forward | Quote | Quick Reply | Thanks

     
    tho | # 73 | 2010-06-25, 20:43 | Report

    I have attached my modified file to this post, unzip it and transfer it onto your N900.
    Install rootsh if you not already have and open the terminal window.
    enter the following commands exactly as shown (they are case sensitive).

    sudo gainroot

    cd /opt/zoutube/

    mv zoutube ztbackup

    (if you have transferred it using mass storage mode without putting it into a subfolder, the following should work)

    cp /home/user/MyDocs/zoutube ./ (don't forget the dot)

    chmod 755 zoutube (to make sure the permissions are set correctly)

    And you are done.

    Edit | Forward | Quote | Quick Reply | Thanks
    Attached Files
    File Type: zip zoutube.zip (6.7 KB, 295 views)
    The Following 5 Users Say Thank You to tho For This Useful Post:
    cwkwong, HellFlyer, jcharpak, locolyric, phap

     
    Hoxzer | # 74 | 2010-06-25, 21:04 | Report

    Originally Posted by daperl View Post
    ] ...
    Code:
            format_priorities = [
                    '22/2000000/9/0/115', # 1280x720
                    '35/640000/9/0/115',  # 640x360
                    '18/512000/9/0/115',  # 480x270
                    '34/0/9/0/115',       # 320x180
                    '5/0/7/0/0',          # 320x180
            ]

    Seems like we might have a problem right here. You see zoutube prints out:

    "formats available: ['34/640x360/9/0/115', '5/320x240/7/0/0']" (random sample)

    While none of these are included in format_priorities.
    This seems to result in variable 'format' never getting a value. Then again I haven't read the whole code.

    Part I'm refering to:
    Code:
            for wanted in format_priorities:
                if wanted in formats_available:
                    format, rest_ = wanted.split('/', 1)
                    fmt_id = int(format)
                    available.append(fmt_id)
    edit1:

    I managed to get the quality selector to work. by changing
    Code:
            format_priorities = [
                    '22/2000000/9/0/115', # 1280x720
                    '35/640000/9/0/115',  # 640x360
                    '18/512000/9/0/115',  # 480x270
                    '34/0/9/0/115',       # 320x180
                    '5/0/7/0/0',          # 320x180
            ]
    to

    Code:
      
            format_priorities = [
                    '22/2000000/9/0/115', # 1280x720
                    '35/854x480/9/0/115',
                    '34/640x360/9/0/115',
     #               '35/640000/9/0/115',  # 640x360
                    '18/512000/9/0/115',  # 480x270
     #               '34/0/9/0/115',       # 320x180
      #              '5/0/7/0/0',          # 320x180
                    '5/320x240/7/0/0',
            ]
    Only "bad quality" will show up, that is due to the line:
    " if fmt != 22 and fmt != 35 and fmt != 34:"
    fmt=18 is still missing. Could be a broken parser.

    edit2: Can somebody confirm that fmt 18 isn't even included in the webpage source? Seems like it is a default option and it is available format for all videos.

    edit3: If that's the case then
    line 176-178
    Code:
     
                else:
                    formats_available = []
            print "formats available: %r" % (formats_available,)
            # This is the proritized list of formats that zoutube will
    should be changed to:
    Code:
                else:
                    formats_available = []
            #add the default format (18)
            formats_available.append('18/512000/9/0/115')
            print "formats available: %r" % (formats_available,)
            # This is the proritized list of formats that zoutube will
    edit4: Included an attachment with patched zoutube(from 0.2-3) file and the patch itself for closer inspection.

    Refer tho's post for installation instructions. (remember to thank him!)

    Originally Posted by tho View Post
    I have attached my modified file to this post, unzip it and transfer it onto your N900.
    Install rootsh if you not already have and open the terminal window.
    enter the following commands exactly as shown (they are case sensitive).

    sudo gainroot

    cd /opt/zoutube/

    mv zoutube ztbackup

    (if you have transferred it using mass storage mode without putting it into a subfolder, the following should work)

    cp /home/user/MyDocs/zoutube ./ (don't forget the dot)

    chmod 755 zoutube (to make sure the permissions are set correctly)

    And you are done.

    Edit | Forward | Quote | Quick Reply | Thanks
    Attached Files
    File Type: zip zoutube 6-26-2010.zip (7.1 KB, 253 views)

    Last edited by Hoxzer; 2010-06-26 at 14:15.
    The Following 2 Users Say Thank You to Hoxzer For This Useful Post:
    jaeezzy, phap

     
    tho | # 75 | 2010-06-29, 18:47 | Report

    Thanks Hoxzer, your modified file works great.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    locolyric | # 76 | 2010-07-10, 14:35 | Report

    thanks for the modding for zoutube and now my zoutube working well.

    May i know good quality always go for 480p if the source provide the format?

    Edit | Forward | Quote | Quick Reply | Thanks

     
    jaeezzy | # 77 | 2010-07-10, 15:22 | Report

    thanks hoxzer now thats what I'm talking about.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    phap | # 78 | 2010-07-16, 07:53 | Report

    ahhhh... finally _I have Zoutube working ! Great!
    Thanks to tho and Hoxzer!

    Only problem is that' it's a blit slow to load page you searched for. Mytube is much faster by me.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    MohammadAG | # 79 | 2010-07-28, 09:32 | Report

    Media player shows "No connection to server for me". Download takes me to a blank page/redirect.
    I was going to update the package with the above fix but it still seems to be broken :/

    Edit | Forward | Quote | Quick Reply | Thanks

     
    kazuki | # 80 | 2010-07-28, 23:08 | Report

    Mine too, just happened the last few days. I remember it was still working fine last week.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Page 8 of 9 | Prev |   6     7   8   9   | Next
vBulletin® Version 3.8.8
Normal Logout