| Prev |   9     10   11   12     13   21 | Next | Last
maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Multimedia (https://talk.maemo.org/forumdisplay.php?f=32)
-   -   [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client (https://talk.maemo.org/showthread.php?t=71826)

NightShift79 2011-04-15 19:37

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
no big thing at the moment... just have a look at it if you find the time.
I'm glad I got the comments back instead :P

Keep up the great work!
Thanks.

Alfred 2011-04-15 21:18

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Non latin characters are not supported in search bar(well, there aren't other places, where i could put them anyways) and i guess search doen't work for me at all. I'll try reinstalling

Makeclick 2011-04-16 00:50

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
when i install this it's do always same thing.. (i even reinstall my os and try again). It won't start the video and it show up this way on terminal:

~ $ /opt/usr/bin/qmltube
Unsupported date format character at 1 (%-d.%-m.)
file:///opt/usr/share/qmltube/qml/qmltube/settings.js:14: Error: attempt to write a readonly database Unable to fetch row
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
QNetworkReplyImpl::_q_startOperation was called more than once
process 2234: arguments to dbus_message_new_method_call() were incorrect, assertion "destination == NULL || _dbus_check_is_valid_bus_name (destination)" failed in file dbus-message.c line 1077.
This is normally a bug in some application using the D-Bus library.
process 2234: arguments to dbus_message_set_auto_start() were incorrect, assertion "message != NULL" failed in file dbus-message.c line 2492.
This is normally a bug in some application using the D-Bus library.
process 2234: arguments to dbus_message_iter_init_append() were incorrect, assertion "message != NULL" failed in file dbus-message.c line 2073.
This is normally a bug in some application using the D-Bus library.
QDBusConnection: error: could not send message to service "com.nokia." path "/com/nokia/" interface "org.freedesktop.DBus.Introspectable" member "Introspect":

casketizer 2011-04-16 01:44

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
German still not showing in 0.3.9. :)
Even tho I have set my device language to gerrman, I prefer apps like this in english. So I would REALLY appreaciate if you made any localizations optional or at least easily disable-able (lol does that word make any sense?).
Hope Nightshift79 isn't offended, I'm sure many other ppl appreciate localization....

dagee04 2011-04-16 01:48

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Is there any way to delete videos from our playlist? Can't figure it out.

Makeclick 2011-04-16 02:01

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by Makeclick (Post 989539)
when i install this it's do always same thing.. (i even reinstall my os and try again). It won't start the video and it show up this way on terminal:

M'kay.. I started it as root and i delete my account (it has written wrong in the first time). I can't change any setting if i don't run as root... but now it working :)

NightShift79 2011-04-16 10:51

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by casketizer (Post 989550)
German still not showing in 0.3.9. :)
Even tho I have set my device language to gerrman, I prefer apps like this in english. So I would REALLY appreaciate if you made any localizations optional or at least easily disable-able (lol does that word make any sense?).
Hope Nightshift79 isn't offended, I'm sure many other ppl appreciate localization....

translation still doesn't workin 0.3.9.
Don't you have to set the translator in main.cpp. But I'm afraid I have less to none coding skills..

I think the idea of makin' translation optional is a nice one.
Maybe you can fiddle with a translation menu, so one could easily choose which language (.qm file) he wants to get loaded.

corduroysack 2011-04-16 11:20

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
been using this last couple of days and must say it's brilliant, very smooth, it even dl'd a video that the other cutetube wouldn't for some reason :)

maxximuscool 2011-04-16 11:29

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
I must say KUDO the updates makes the QML cuteTube brilliant and buttery smooth. Fantastic work buddy.

You did it. This is smoother than what Nokia can produce. Quality stuff. Great work. :) I'm satisfied

NightShift79 2011-04-16 11:31

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
seems like I got the translation working somehow.
What I did was:

adding
Code:

#include <QTranslator>

//#ifdef Q_WS_MAEMO_5
//#include <QtOpenGL/QGLWidget>
//#endif

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    app.setApplicationName("FMRadio");

    //Added translation:
    QTranslator translator;

    translator.load("/opt/usr/share/qmltube/qml/qmltube/i18n/qml_de");
    app.installTranslator(&translator);
   
    QmlApplicationViewer viewer;

That seems to make qmltube use the german translation file.
But it seems not all parts are correctly translated.
I'll check the linguist files again.

Learning is fun :)

marxian 2011-04-16 11:37

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by NightShift79 (Post 989767)
seems like I got the translation working somehow.
What I did was:

adding
Code:

#include <QTranslator>

//#ifdef Q_WS_MAEMO_5
//#include <QtOpenGL/QGLWidget>
//#endif

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    app.setApplicationName("FMRadio");

    //Added translation:
    QTranslator translator;

    translator.load("/opt/usr/share/qmltube/qml/qmltube/i18n/qml_de");
    app.installTranslator(&translator);
   
    QmlApplicationViewer viewer;

That seems to make qmltube use the german translation file.
But it seems not all parts are correctly translated.
I'll check the linguist files again.

Learning is fun :)

I did add a few translations of my own using my trusty German dictionary. ;) Also, there were some strings that were not marked for translation in the earlier release.

I haven't used Qt translations before, so I was unaware (until late last night, when I found a Meego Wiki entry) of having to load the translation in the main.cpp file. According to the documentation on QML internationalisation, the QML runtime should find the .qm files automatically, so it seems that they missed out some vital info. :/

Introduction
The QML runtime automatically loads a translation from the i18n subdirectory of the root QML file, based on the system language. The translations are held in QM files that must be generated from TS files.


It should be fairly easy to make translation optional, but it may require a restart of the application for any changes to take effect.

gionni88 2011-04-16 12:14

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
http://warmi.net/docs/qt_4.6.3/html/tools-i18n.html

This is a nice example of translations with doesn't require code changing to include new translations.

From my experience translated files are not seen if their names are different from appname.LANGUAGECODE.qm .

To automatically change language I code like this:
Code:

#include <QApplication>
#include "mainwindow.h"
#include <QtSystemInfo/QSystemInfo>
#include <QTranslator>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QtMobility::QSystemInfo *systemInfo;
    QTranslator translator;

    if (systemInfo->currentLanguage() == "it")
  {
        translator.load("appname.it", "/opt/appname");
        a.installTranslator(&translator);
    }

    MainWindow w;
    w.show();

    return a.exec();
}

appname.it.qm is the translated file.


QML version of cuteTube rules.

NightShift79 2011-04-16 12:26

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
1 Attachment(s)
I have overworked the translation files. Now almost everything is in proper german ;)

But I noticed some parts that aren't translated. They are not in the .ts file.

http://img833.imageshack.us/img833/8...1041614201.png
http://img231.imageshack.us/img231/4...1041614203.png
http://img855.imageshack.us/img855/9...1041614212.png

That qmltube is really of the hook!

marxian 2011-04-16 12:37

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Thanks. :) I'll include your amendments in the next release. I was concerned about marking some of the settings-related strings for translation, incase it messed up the database. I'll add them and do some testing to ensure they are safe. There are also some C++ strings that need to be marked.

romanianusa 2011-04-16 17:33

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Not sure if this happened to everyone but i can't click on comments and related videos to view them? This is the latest update

slender 2011-04-16 17:39

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
imo people reporting bugs should state if they are running cssu.

cloudstrife1ph 2011-04-16 18:13

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
@marxian

are you still continuing the development of the older cutetube or are you moving on now with this one? so i can uninstall the older one...

MyNokiaN900 2011-04-16 18:24

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
I have installed successfully, even updated recently, logged successfully but nothing is working for me. Clicking on any of the icons results in "No Videos" message. I have CSSU, I also have original Cutetube installed. Is that an issue?

marxian 2011-04-16 18:45

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by romanianusa (Post 990021)
Not sure if this happened to everyone but i can't click on comments and related videos to view them? This is the latest update

That is a change that I had to make due to a weird bug that resulted from disabling OpenGL acceleration. You can use a swipe gesture to switch between info, comments and related videos.


Quote:

Originally Posted by cloudstrife1ph (Post 990031)
@marxian

are you still continuing the development of the older cutetube or are you moving on now with this one? so i can uninstall the older one...

The old cuteTube will still be maintained for the time being, but there will not be any new features.


Quote:

Originally Posted by MyNokiaN900 (Post 990039)
I have installed successfully, even updated recently, logged successfully but nothing is working for me. Clicking on any of the icons results in "No Videos" message. I have CSSU, I also have original Cutetube installed. Is that an issue?

Having the old cuteTube installed should not be an issue, but there are some bugs in the Qt libs installed with the latest CSSU update, so there could well be an issue there. Running cuteTube from xterm with

Code:

run-standalone.sh /opt/usr/bin/qmltube
should reveal some clues.

aanckar 2011-04-16 19:56

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by marxian (Post 990055)
Running cuteTube from xterm with

Code:

run-standalone.sh /opt/usr/bin/qmltube
should reveal some clues.

I had the same "No videos found" problem after the latest CSSU update, but after launching cuteTube with the command you specified once it now works again (the no videos found message is displayed for a second or so then the video lists are loaded) and can be launched normally from the icon.

MyNokiaN900 2011-04-16 20:32

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by aanckar (Post 990111)
I had the same "No videos found" problem after the latest CSSU update, but after launching cuteTube with the command you specified once it now works again (the no videos found message is displayed for a second or so then the video lists are loaded) and can be launched normally from the icon.

Thanks marxian for the script... however it made no difference to me. Still see the message "No videos found"....

Let me remove Cutetube first, I am not keen to remove CSSU... Not a big deal if I can't get it to work, I only downloaded it because there was a XXX version... ;-)

MyNokiaN900 2011-04-16 21:08

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Actually there are errors in X Terminal - Just noticed them.
http://www.mynokian900.com/wp-conten...416-213518.png

QMLtube loaded (aaaah - is this the same program QMLtube and cuteTube-QML)?:confused:

Dante son of Sparda 2011-04-16 21:53

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
run-standalone.sh /opt/usr/bin/qmltube

I have tried to run from xterm but nothing, I can see search videos but there are no my favs again and I got message i xterm:

BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) built-in shell (ash)
Enter 'help' for a list of built-in commands.

~ $ run-standalone.sh /opt/usr/bin/qmltube
Error FODC0002 in tag:trolltech.com,2007:QtXmlPatterns:QIODeviceVari able:src, at line 1, column 445: Premature end of document.

Also I googled about YouTube accounts and from all what I read I can say that there is no more just YouTube accs. I created two new accounts just for youtube without google but it won't work, all time it asked for linking youtube accs with google accs and if I try to skip it than I am not able to log in to new account. So every new account must be linked with google account to be logged into Youtube. And know after all of this, can I ask developer of this great app to fix this problem for us googlers.

Thank you on behalf all of us.

2nd Edit: I just tried something what I prepared today. I made two playlists and added all my favs in there and than I checked in QML and from the first try all my favorites are showen :D

marxian 2011-04-16 22:13

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by MyNokiaN900 (Post 990154)
Actually there are errors in X Terminal - Just noticed them.
http://www.mynokian900.com/wp-conten...416-213518.png

QMLtube loaded (aaaah - is this the same program QMLtube and cuteTube-QML)?:confused:

Those errors that you are seeing are the result of the bugs in the Qt libs installed with the latest CSSU update. :(

m4r0v3r 2011-04-17 22:47

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
I was wondering what bit the audio converts to?

marxian 2011-04-17 23:09

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by m4r0v3r (Post 990744)
I was wondering what bit the audio converts to?

cuteTube just extracts the audio stream from the input video file, so the bitrate is the same as the input, which may differ depending on the video. It is the 'High Quality' (480x270 or 640x360) stream that is used, so the audio is fairly low quality.

TheLongshot 2011-04-18 02:06

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Searching seems to be borked, because I'm not getting the results expected. For example, I search for the game "Zack & Wiki", and I get a bunch of results unrelated to the game. I type it in YouTube and it comes up as expected.

Edit: I do not have CSSU install.

gjoe 2011-04-18 03:09

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by marxian (Post 990196)
Those errors that you are seeing are the result of the bugs in the Qt libs installed with the latest CSSU update. :(

i am also experiencing the same error message.. any solution?

k-wise 2011-04-18 09:08

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Looks like the the 'xtube' integration is broken with the release of 0.3.9? Following a search, just see a list of thumbnails, with no description text. No item in the list can be selected and no video can be played?

marxian 2011-04-18 09:29

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by k-wise (Post 990938)
Looks like the the 'xtube' integration is broken with the release of 0.3.9? Following a search, just see a list of thumbnails, with no description text. No item in the list can be selected and no video can be played?

You need to update xtube aswell. :)

marxian 2011-04-18 09:33

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by TheLongshot (Post 990784)
Searching seems to be borked, because I'm not getting the results expected. For example, I search for the game "Zack & Wiki", and I get a bunch of results unrelated to the game. I type it in YouTube and it comes up as expected.

Edit: I do not have CSSU install.

It looks like I need to remove the ampersand. If you type 'zach wiki', you will get better results. I'll fix it for the next release. :)

k-wise 2011-04-18 10:20

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by marxian (Post 990951)
You need to update xtube aswell. :)

Hi thanks for getting back!
This morning HAM notified me that both cuteTube-QML(0.3.9) and xtube(0.1.4-1) were available for update. I applied both together.

I have since un-installed xtube and re-installed it again. Still the same result.

Anything I should try?
Thanks.

slender 2011-04-18 10:22

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
@k-wise,
Have you installed CSSU?

k-wise 2011-04-18 10:57

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by slender (Post 990978)
@k-wise,
Have you installed CSSU?

Hi,

I have CSSU transistions Tuner, but NOT the actual CSSU update software. The xtube functionality was working until this mornings' update? Strange.

Thanks.

TheLongshot 2011-04-18 13:19

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by marxian (Post 990953)
It looks like I need to remove the ampersand. If you type 'zach wiki', you will get better results. I'll fix it for the next release. :)

Just as a note, I get similar results with "and" as well as "&".

marxian 2011-04-18 13:45

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by TheLongshot (Post 991091)
Just as a note, I get similar results with "and" as well as "&".

I've tweaked the search method, and all will be well in the next release:

http://img705.imageshack.us/img705/2...indow21.th.png http://img823.imageshack.us/img823/7...indow22.th.png

:)

marxian 2011-04-18 17:11

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Quote:

Originally Posted by k-wise (Post 991002)
Hi,

I have CSSU transistions Tuner, but NOT the actual CSSU update software. The xtube functionality was working until this mornings' update? Strange.

Thanks.

It isn't related to the CSSU. It happened to me during testing, but copying the xtube files into my cuteTube directory solved it. There will be updates to both packages soon, so that will fix any problems. :)

The next release will have sharing via facebook:

http://img850.imageshack.us/img850/2...edwindow23.png

http://img857.imageshack.us/img857/7...ebook5goog.png

http://img811.imageshack.us/img811/7...ebook5goog.png

shrijith1 2011-04-18 17:21

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
You are a champ! Waiting for the update.... I cant thank you enough for this wonderful app...

k-wise 2011-04-19 10:48

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
Thanks Marxian! Looking forward to the update!

NightShift79 2011-04-19 20:11

Re: [ANNOUNCE] cuteTube-QML - A feature-rich YouTube client
 
could you post the .ts file for the up comming version so I can update the german translation as well ?


| Prev |   9     10   11   12     13   21 | Next | Last
All times are GMT. The time now is 21:04.

vBulletin® Version 3.8.8