![]() |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
when i watch youtube with fullscreen mode. What are those screen settings? Three differend mode? Thanks
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Version 1.3.0 will be in extras-devel soon.
Changelog: * Added option to show related videos when playback is finished. * Added option to share videos via email. * Larger thumbnails in video lists. * Configurable scrolling speed. * Small UI tweaks. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Marxian, was that the update made available one or 2 days ago? It showed as update
Btw, do you intend to put up the Open Video Player in the Store? If you do, I'm sure quite a number of us would buy it. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
Also, when I try to sign into My Chanel, it kicks me back to the opening window of Cute Tube... ?? |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Pulled down the latest update (Maemo) today. New widget looks good, looks like there's no settings for the widget, but I can just see something when I touch the screen on the settings menu. The Media Content and Appearance bars just show up when you hold your finger on the screen.
Not sure if this is a CSSU v Stock Maemo 5 problem or if it's the theme and font colours that I'm using. I'll try a few more tricks when I get a chance. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Got the last update. Can see what's going on now, thanks Marxian.
With regards to my problem ages ago (Youtube videos not downloading), since I was forced to do a reflash a couple weeks ago, even that issue has now been resolved. I'm now running stock kernel (no overclocking) and I'm surprised how well things are going with regards to playing videos. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
Sigh, too bad on the OVP, liked it a lot, would gladly support your work. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
I'm getting intermittent corrupt downloads now. This started happening after a recent qmltube upgrade. Anybody else getting this? Quite annoying after downloading a 100mb lecture..
edit: i've gone back to ver 1.27, the last version i didn't have any (download) problems with. will report back if this doesn't 'fix' the problem. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
I have some fail transfers items. How can I do something to remove it? I select all & cancel it, but restart it will be there. the fail transfers is empty, that is no word to show. I want to clear but ...
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Can you login to dailymotion? Doesn't seem to work - my password is always refused.
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Sometimes Cutetube seems to start the same video twice, one slightly after the other while the audio overlaps. You hear 2 audio streams and even if you stop one video, the other one seems to keep running in the background regardless, since you can hear the audio. The only way to stop it is to close Cutetube.
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
not able to log in onto youtube account anymore after the latest update. Hitting the username and password login doesnt respond with no display of cursor.....any help wud be appreciated. Thank You.
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Why did you remove the function that allowed to scroll videos in...how to say, an "integer way", one at a time. Now when scrolling videos you may see half of the thumbnail. It was much more precise and readable as it was before (v1.0.7 I believe).
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
cutetubeQML is no longer functional for me, so i don't know if youtube are rolling out more changes and my country got them first.
the symptoms are: downloads are corrupt (ffmpeg doesn't recognise the format) cannot stream using gstreamer, have to use mplayer as the streaming player. I went back to an old version and that didn't solve the problem. I did apt-get purge which didn't remove the config directory, so i rm -fr'd the config directory. I reinstalled the latest version and while my settings were now back to default, all the problems remained. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
for what it's worth, i fixed all the problems above by selecting '480p' instead of '360p (normal)' in the download quality setting. no idea.
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Sometimes 'related' frames at the end of videos block further usage of Cutetube, you cannot close them nor select any of those vids. Sorry if it was already mentioned. Also, the issue after playing a couple of videos, the next one starts several times 'flashing' in a weird way and not being possible to stop until closing Cutetube from taskmanager, is somewhat annoying... these both bugs went in since last update. Great work tough, and thanks for the continuous work and suppor, Marxian! (BTW, I'm talking about N900 version)
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Hi I have some bad download item in transfer list.
Now, I fix it. If you want to delete it, follow below. open X Terminal sqlite3 /home/user/cuteTube-QML/cuteTube-QML.sqlite sqlite> .database seq name file --- --------------- ---------------------------------------------------------- 0 main /home/user/cuteTube-QML/cuteTube-QML.sqlite sqlite> .tables downloads sqlite> select * from downloads; |||0|0|0|0|0|0 |||0|0|0|0|0|0 |||0|0|0|0|0|0 |||0|0|0|0|0|0 |||0|0|0|0|0|0 |||0|0|0|0|0|0 |||0|0|0|0|0|0 |||0|0|0|0|0|0 sqlite> .schema CREATE TABLE downloads (videoId TEXT UNIQUE, title TEXT, thumbnail TEXT, convertToAudio INTEGER, youtube INTEGER, dailymotion INTEGER, youporn INTEGER, xvideos INTEGER, xhamster INTEGER); sqlite> .explain sqlite> select * from downloads where dailymotion=0; vide title thum conv yout dailymotion yo xvideos xhamster ---- ------------- ---- ---- ---- ------------- -- ------------- ---------- 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sqlite> delete from downloads where dailymotion=0; sqlite> select * from downloads; sqlite>.quit So that fail download items are discard. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
when i choose download quality 480p the video is lagging hugely when playing in kmplayer and media player doesn.t recognize it how can i play 480p videos without problems ?
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
I get this too, it only takes three play of a video till it acts as if two videos are playing at the same time so I have to close it or use mplayer. (but mplayer plays videos slow speed sometimes) |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
hi guys! i really cannot watch videos through cutetube or nvideo app... i don't know why... is something wrong with youtube privacy or problem is in my device pls help. p.s. I can watch dailymotion videos and also download them... but I want youtube...
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
I just bought this App and I'm disappointed, my videos are set to 480p as I heard that N9 has problems with 720p playbacks, but now after downloading these videos to the phone, they play about 3 times, tomorrow you try play the videos, they all corrupt saying format cannot be played. What's gpoing on?
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
It seems that Cute tube event feed doesn't worked for me. It used to work for awhile but now it doesn't work at all. I am quite clueless what's going on
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
Are you overclocked, by any chance? I've been using stock kernel since my last reflash and haven't had any serious probs with downloads. Had one or two failures out of 100+., whereas when I was running overclocked kernel I couldn't get any Youtube vids to download at all. |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
any way to download xtube video files over 3g as it always fails for me but over wifi is fine i do not have content lock as tube8 ect runs fine and other adult sites work well.
maybe there is a config file to edit any help appreciated i am on o2 |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
xtube is not working. it keeps on searching but gives no result. i change the .config file to "true" from "false" still nothing. previously it worked. suddenly it stopped
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
mine was wierd as config didn't work as you said but when i rechecked config it was listed twice. scroll right to the bottom of file and it is there again so double check and make both xtube entry's true hope this helps.
regarding my issue vids show but dont download over 3g |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Quote:
[General] youtubeDownloadQuality=hq homescreen=homepage pauseWhenMinimized=true mediaPlayer=cutetubePlayer defaultSite=youtube enableXTube=true xtubeQuality=mobile uploadAttribute=Uploaded via cuteTube showRelatedVideos=true [Transfers] defaultTransferStatus=queued downloadPath=/home/user/MyDocs/.documents/cuteTube-QML/ xtubeDownloadPath=/home/user/MyDocs/.documents/cuteTube-QML/XTube/ transferPriority=downloads [Search] safeSearch=false recentSearches=Undertaker rikishi stonecold, Greatest wwe matches, The most dangerous place, Mdk3, Michael shutdown exploitation, Hack N900, Use gsm internet for free, Hack gsm network, Gun gun agneepath searchOrder=relevance [Appearance] theme=dark activeColor=#066bbe activeColorString=color8 gradientColor=black gradientColorHigh=#524e4e language=en [System] screenOrientation=auto maximumFlickVelocity=2000 [Accounts] youtubeUsername= youtubeAccessToken= dailymotionUsername= dailymotionAccessToken= dailymotionRefreshToken= facebookAccessToken= twitterAccessToken= twitterTokenSecret= [Media] youtubeDownloadQuality=hq homescreen=homepage pauseWhenMinimized=true mediaPlayer=cutetubePlayer defaultSite=youtube enableXTube=true xtubeQuality=mobile uploadAttribute=Uploaded via cuteTube showRelatedVideos=true |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
im just about to buy cuteTube...looking at developer abandon this project..maybe ill just stick to youtube mobile..
|
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
I copy/paste the password from microB but it still fails.
To confirmation - I checked with tcpdump : I can see api.dailymotion.com calls, but it still fails In .config/cuteTube-QML/cuteTube-QML.conf I see I could fillup the following : dailymotionUsername= dailymotionAccessToken= dailymotionRefreshToken= Any idea how to do that? According to what I've read about dailymotion API, I might need cutetube client id + a secret. It seems comfirmed by http://code.google.com/p/ytd-meego/s...ailsDialog.qml |
Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
Heads up, email from cutetube devs
Quote:
|
| All times are GMT. The time now is 06:39. |
vBulletin® Version 3.8.8