@Alexey I have few questions regarding the downloading.
When I downloaded a video, it doesn't show its name and only shows the word "videoplayback". It's not worthwhile but still is it possible to get the name instead of it.
Second, the audio gets downloaded in m4a format which you must know cannot be skipped. What to do for that?
@Alexey I have few questions regarding the downloading.
When I downloaded a video, it doesn't show its name and only shows the word "videoplayback". It's not worthwhile but still is it possible to get the name instead of it.
Second, the audio gets downloaded in m4a format which you must know cannot be skipped. What to do for that?
Posted via CB10
1. The original video's title is in the clipboard, just select Paste from the context menu. This can't be automated
2. YouTube stores audio tracks in 2 formats: m4a and webm. The former is not seekable, the latter is not supported by BB10. We have to live with that.
1. The original video's title is in the clipboard, just select Paste from the context menu. This can't be automated
2. YouTube stores audio tracks in 2 formats: m4a and webm. The former is not seekable, the latter is not supported by BB10. We have to live with that.
Posted via CB10
@Alexey I was wondering how some YouTube downloader apps change the format so fast and offer mp3 for audio download.
Is it possible to convert the audio like those websites do at the request of downloading?
Regarding mp3 audio: there are tools for conversion from m4a to mp3 but they have to be used by a powerful computer like a server. Mobile devices are not suitable for such a task. I believe those services simply download an audio track and do the conversion in the background.
Regarding 10-sec jump: it still works, but make sure that you aren't playing videos in the Audio Only mode, i.e. the progress bar must be enabled
Regarding mp3 audio: there are tools for conversion from m4a to mp3 but they have to be used by a powerful computer like a server. Mobile devices are not suitable for such a task. I believe those services simply download an audio track and do the conversion in the background.
Regarding 10-sec jump: it still works, but make sure that you aren't playing videos in the Audio Only mode, i.e. the progress bar must be enabled
Posted via CB10
I think smaller files could be converted with an O(1) or O(n) abstract operation and character encoding, but I'm not familiar with the tools and language apis your app was built with.
Regarding mp3 audio: there are tools for conversion from m4a to mp3 but they have to be used by a powerful computer like a server. Mobile devices are not suitable for such a task. I believe those services simply download an audio track and do the conversion in the background.
Regarding 10-sec jump: it still works, but make sure that you aren't playing videos in the Audio Only mode, i.e. the progress bar must be enabled
Posted via CB10
Okay. It was just extravagant to ask for other mp3 formats. It's best what is current.
I listen audio only sometimes but I remember watching few videos that didn't have 10 second jump. I'll have to check it out again.
1. The original video's title is in the clipboard, just select Paste from the context menu. This can't be automated
2. YouTube stores audio tracks in 2 formats: m4a and webm. The former is not seekable, the latter is not supported by BB10. We have to live with that.
Posted via CB10
Just noticed my mistake reading your comment haha. How stupid of me.
Can the app notify about any new uploads from the added channels?
Is it possible to add this notification feature into bbtube?
Posted via CB10
Well it sort of works on the channel list.. just hit the big red "Refresh" button and all your listed channels are showing the new YT videos in the "feed" section... that way you can see what new videos did appear after you checked it out since last time...
If that helps, I don't think a automatic Refresh after every start of the app or a timed refreshing would be in favour because it will cause a heavier load on BBTUBE and your data-use, specially if on limited mobile data contract, may an option if Wifi is detected but why should it be that complicated if you only need to hit the "refresh" button ;-)
I guess we have a bit of misunderstanding here. By "notifications" I'm assuming the normal "bell" in the Hub. It can be implemented but that's a whole nother level of complexity, I don't have time for that, sorry.
otherwise, if BB-nomade got it right then just use the Feed tab after hitting the Refresh button
About the notification I requested earlier, I got that idea to check feed beside the channels, it's good enough. However, the length of the videos in the "feed" list is not given. @Alexey if you are free enough to fix it, great then otherwise with a feature requested or major bug fixing that anyone requests anytime sooner or you do yourself, then fix this as well.
Thanks, the app is great.
Every time I make a search on bbtube, it says results not found despite of the search suggestion popping up. Why?
Posted via CB10
Noticed the very same behaviour today too!
Search word prediction is Ok as usually but no result..
May YouTube changed some on their end but I did had this issue before on a non regular basis...
What protocol are you using to 'get' from youtube? I'd just assume http to udp/tcp.
Can you also fetch the debug info on the videos? Perhaps in parrallel with how you get rss.
The debug infos data is of type 'object', it has a 'len' property which is the video length in seconds.
Posted via CB10
I make async requests to https://www.youtube.com/feeds/videos.xml?channel_id={CHANNEL_ID} URLs, e.g. https://www.youtube.com/feeds/videos...JkRgWHD7HGBa7Q - returns latest videos for a specific channel
These data contain only basic information regarding videos.
To get debug info I would have to make async requests for each video which takes ages to complete
I make async requests to https://www.youtube.com/feeds/videos.xml?channel_id={CHANNEL_ID} URLs, e.g. https://www.youtube.com/feeds/videos...JkRgWHD7HGBa7Q - returns latest videos for a specific channel
These data contain only basic information regarding videos.
To get debug info I would have to make async requests for each video which takes ages to complete
Yea I was thinking that it would have to iterate like that. Lot of work.