Run Any Applications in HTML5? - Google Chromecast

I know VMware is working a technology that will let enterprises run applications in an embedded HTML5 it is called Appblast (see attached Video)
https://www.youtube.com/watch?v=QBxm5CBPeG8
Something like this for stand alone apps on a desktop will bring new possibilities to the chromecast it will allow to present any desktop app on the chromecast....

Related

File Manager?

Has anyone found out if there is a File Manager? One which can access network shares on a wlan? Or one available as an app?
If no, sticking with Android...
There is no local File Manager. Apps that can access remote Network Shares are already available on WP7.5. Given that WP8 allows Apps to launch other Apps that support certain file types you could use one of those Apps (when they are updated to WP8) to grab a Video from your NAS-Box and launch it in the built in Video Player.
StevieBallz said:
... you could use one of those Apps (when they are updated to WP8) to grab a Video from your NAS-Box and launch it in the built in Video Player.
Click to expand...
Click to collapse
Great, thanks for the info. Could not find it googling. And you guessed what I'd like local and/or network share access for: playing media at home from the NAS. Will need to check out Windows Phone 8 at a store, maybe upgrade the phone hardware soon.
hardy81 said:
Great, thanks for the info. Could not find it googling. And you guessed what I'd like local and/or network share access for: playing media at home from the NAS. Will need to check out Windows Phone 8 at a store, maybe upgrade the phone hardware soon.
Click to expand...
Click to collapse
Most NAS boxes currently support UPnP or DLNA servers. This can be played through various software. Before jumping in I'd still wait to see if the required Apps are updated to allow for a seemless transition because at release the Apps are almost certain to not have been updated (given that the SDK was just released yesterday). So the possibility is there but at the moment the Software isn't really.
Might be worth checking wether your Media Files are currently stored in a format supported by the phone, given that similar to iOS WP is pretty picky when it comes to file formats.

Windows Phone 8 questions

Based on what I've seen today it still has no:
- system dictionary for definition lookup(only for predictive text). The Kindle App does nothing when I press & hold on a word, unlike on my iOS device.
- hi-speed media scrubber for music. you know the little round knob on the progress bar that allows you to move the time index to any point in a song or video.
- unified search aka Local Search(apps, music, videos, contacts, emails)
The music app is pretty bad. I had several attempts to build a proper one, but the developer can not interact with the music library, other than playing existing playlists or songs.
You can't make custom playlists(actually you can, but it very, very, VERY complicated and prone to error and simply does not worth the shot), change the order of music inside the list and stuff like that for a third party app, and that sucks.
There are no new APIs for XNA (which is used to access the songs in the phone) so there is no way of making one.
If there is something I can say it is not right on WP, that's the music app.
mcosmin222 said:
The music app is pretty bad. I had several attempts to build a proper one, but the developer can not interact with the music library, other than playing existing playlists or songs.
You can't make custom playlists(actually you can, but it very, very, VERY complicated and prone to error and simply does not worth the shot), change the order of music inside the list and stuff like that for a third party app, and that sucks.
There are no new APIs for XNA (which is used to access the songs in the phone) so there is no way of making one.
If there is something I can say it is not right on WP, that's the music app.
Click to expand...
Click to collapse
Does that imply that there´s the same limitation for video? ...and ...as a result of that a videoplayer with support for more codecs is very unlikely to ever happen?
TarKin said:
Does that imply that there´s the same limitation for video? ...and ...as a result of that a videoplayer with support for more codecs is very unlikely to ever happen?
Click to expand...
Click to collapse
The File-Assosciation feature in WP8 works like this. Your App can define certain file endings (e.g. .mkv) which it can handle. If those are found on a SD-Card or downloaded the according registered App is then started for those files. The App can then do whatever it is it does as long as it keeps to reading the file (the original can't be manipulated although the app could copy it into it's isolated storage and manipulate it their). But there is one Caveat - there are several file extensions that are reserved for the OS which means that 3rd party Apps can't register for them. One of them is .mp3. Avi is another one of those (you can look them up in MSDN).
.mkv on the other hand is an extension that Windows Phone itself does not know so people could build Apps that would be able to consume them. Given that we now have Native Code capabilities writing a decoder or recompiling one written for another platform is possible, though it remains to be seen wether anyone will put the effort into it.
StevieBallz said:
The File-Assosciation feature in WP8 works like this. Your App can define certain file endings (e.g. .mkv) which it can handle. If those are found on a SD-Card or downloaded the according registered App is then started for those files. The App can then do whatever it is it does as long as it keeps to reading the file (the original can't be manipulated although the app could copy it into it's isolated storage and manipulate it their). But there is one Caveat - there are several file extensions that are reserved for the OS which means that 3rd party Apps can't register for them. One of them is .mp3. Avi is another one of those (you can look them up in MSDN).
.mkv on the other hand is an extension that Windows Phone itself does not know so people could build Apps that would be able to consume them. Given that we now have Native Code capabilities writing a decoder or recompiling one written for another platform is possible, though it remains to be seen wether anyone will put the effort into it.
Click to expand...
Click to collapse
ok. i was mainly into psp dev. before, and never had a winphone in my hands so far.
but if you say that´s possible, then i´ll go for the lumia920, reg. for a dev account and see what i can do
StevieBallz said:
The File-Assosciation feature in WP8 works like this. Your App can define certain file endings (e.g. .mkv) which it can handle. If those are found on a SD-Card or downloaded the according registered App is then started for those files. The App can then do whatever it is it does as long as it keeps to reading the file (the original can't be manipulated although the app could copy it into it's isolated storage and manipulate it their). But there is one Caveat - there are several file extensions that are reserved for the OS which means that 3rd party Apps can't register for them. One of them is .mp3. Avi is another one of those (you can look them up in MSDN).
.mkv on the other hand is an extension that Windows Phone itself does not know so people could build Apps that would be able to consume them. Given that we now have Native Code capabilities writing a decoder or recompiling one written for another platform is possible, though it remains to be seen wether anyone will put the effort into it.
Click to expand...
Click to collapse
I haven't had the chance to look over what the native code can do and what it can't do, but it is to be expected that it will have limitations, just like C# has.
You can render images (obviously) and output them using Direct3D which is pretty much what e.g. VLC does on the Desktop. You have complete read access to files on the SD-Card for your registered filetypes. MKV could be registered, MP3 or AVI could not (because they are in use by the system already).
But of course you would not be able to offload processing to the dedicated decoding units like with the built-in Codecs, which will mean more processor utilization and worse battery life. Still as a programmer I don't see too many actual road blocks (but it's a bumpy road to do this to be sure).
@TarKin: before you drop the money perhaps it would be best to start looking into the SDK. I'm not an expert in Multimedia-programming by any measure so you might be able to spot problems in there beforehand.
If you're still going for a L920 with these uncertainties for your use-case: welcome to the family, I'm anxiously awaiting mine.

Beam links/youtube videos to any device from your Windows Phone

Beam links/youtube videos to any device from your Windows Phone
##FREE VERSION NOW AVAILABLE. LOOK BELOW FOR LINKS
Check out the new app BeamLink. It allows you to beam links(youtube videos, blog posts, pdfs, ebooks etc.) from your Windows Phone to any device with a browser. That's right, IPADS, ANDROID TABLETS, WINDOWS TABLETS/DESKTOPS/NOTEBOOKS, SmartTvs, PS3, XBOX360, Mobile Phone and just about any device with a browser. The best part is that Absolutely no set up required. Just point your target device's browser to 'beamlink.in'.
Description from the Store:
THE COOLEST AND QUICKEST WAY TO BEAM LINKS TO YOUR OTHER DEVICES
Are you always watching videos and reading webpages/blogs etc. on your Windows Mobile?
Do you often wish that you could read/watch your links on devices with bigger screens like tablets/desktops/laptops or smart TVs?
But, you don't want to go through the effort of finding that specific webpage/video again?
Well, BeamLink to the rescue!!
All you have to do is open 'BEAMLINK.IN' on a browser and you can 'send' all kinds of links including videos from youtube etc. to it.
NO SETUP REQUIRED! NO ADDITIONAL SOFTWARE REQUIRED!
All you have to do is download the app to your Windows Phone.
Steps:
1) Copy the link you want to beam from your Windows Phone.
2) Open the BeamLink app and use the paste option.
3) Open beamlink.in on the target device's browser and scan the code.
4) Voila!
Note: You can even type a URL to beam. A history of shared URL's is maintained for easy resharing.
SINCE I CANNOT POST LINKS. PLEASE SEARCH FOR BEAMLINK ON WINDOWS MARKETPLACE
I have migrated to a better server to handle the increased users. QR CODE ERROR will occur for a few hours. I'm working on getting it up and running. Sorry for the delay.
******NOW WORKING*******

[WP7/8][Android 4.0+][W8.1] MediaBrowser - Now supporting ChromeCast!!!!

MediaBrowser for Android now supports ChromeCast (03/05/2014)
THIS THREAD IS FOR INFORMATION AND GENERAL QUESTIONS ONLY. FOR SUPPORT VISIT www.mediabrowser3.com/community/
Take your media to the next level...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​
MediaBrowser is more than a media manager. It's a powerful open-source platform that you can use to manage, view, play and control your media on most mainstream hardware...
MediaBrowser consists of a server and any one or more of many clients to view and manage your multimedia collection. You are able to enjoy your TV, Movies, Music, E-Books, Games* and Emulators* around your house in a wonderful 10 foot interface. (*games and emulators can only be run on a machine on which it is installed)
The MediaBrowser Android, WindowsPhone 7/8 and Windows 8.1 clients connect to your MediaBrowser server and allow you to consume your media anywhere you are connected. (Playback not supported on WP7, only library and remote functions)
Don't have MediaBrowser? Visit http://www.mediabrowser3.com/
​
But wait!? You said open-source? but this is in the paid section?
Yes, while the MediaBrowser server and other clients are built on free open-source systems, the android, and windows phone, and windows 8 client applications are not. These 3 clients are the only of many pieces that require any type of purchase to use, if you choose to do so. Read on, and find out about the many other free open-source parts of MediaBrowser.
Developers:
MediaBrowser is an open source project and welcomes developers from all coding backgrounds. If you are a developer and wish to get involved head on over to our github repository and check it out. https://github.com/MediaBrowser
Our plugin store allows developers to make free, premium supporters only, and paid plugins available to users. While MediaBrowser is free, it does support itself on a supporter key system, where for a small donation, users have access to premium and paid plugins, in addition to the free plugins. **Plugins are currently only available for MB server, MB Classic and MB Theater, but you just may be the developer to change that!
And a Linux/OSx mono based server is under development. If you are an experienced Linux/osx dev, and would like to help out or join our team please feel free to stop by this thread here!
Click to expand...
Click to collapse
So what exactly is MediaBrowser?
Media Browser, beginning with version 3, is no longer a single program. It encompasses a large suite of applications all communicating with a central server that manages your library.
No longer locked inside Windows Media Center, Media Browser can now bring your entire media library to not only all of the computers on your network, but also many of your portable devices. Whether it's the Roku in the living room, or your tablet on the back porch, Media Browser will bring your media right to you.
And, we mean right to you as the user profile feature allows you to set up completely different views and options on your library based on who is accessing it. Keep different display styles, parental control levels and watched and favorite status' for all the different members of your household and all of that information travels with the user no matter what client or device they are using.
Start watching something at home on the HTPC and pick it back up where you left off on your phone or tablet on the train.
Click to expand...
Click to collapse
A little History on MediaBrowser?
Some of you may remember VideoBrowser which eventually matured into MediaBrowser and was solely a Windows Media Centre Plugin which allowed a user to display rich and detailed information about their media collections much like other available media front ends. The benefits of using MediaBrowser were having Live TV readily available and a large media collection in the same application. It then started allowing themeing and plugins to enhance the media experience?
MediaBrowser has come on leaps and bounds within the last year or so. Firstly, it’s no longer confined to Windows Media Centre, it’s undergone a complete overhaul, complete recoding and opened up a world of new beginnings for the HTPC world, where the community is always listening to improve the MediaBrowser experience as a whole to the end user.
Click to expand...
Click to collapse
So What’s Changed? Out with the old in with the new!
MediaBrowser now has a brain, a central nervous system which uses its Server Application and currently runs on your Windows based PC or even your server(Linux/Mono server is currently under development). The server is the hub of all things to do with your media collection, from Movies to Music Videos, Books to Games, MB has it all and allows the user to organise and categorize their collections as they deem fit for their use and application. Furthermore, it allows almost any device to connect to it from anywhere, such as Android, Windows Phone, iOS, Roku, Sky’s NowTV box, your favourite web browser, and standalone applications such as MediaBrowser Theatre, Windows 8 and still MediaBrowser Classic(WMC integration). These are all refered to as Apps/Clients within the MB world.
Click to expand...
Click to collapse
Collection Organization - Metadata Compatibility with Plex & XBMC​
The Server and what it does for you?
The server runs on the PC where your media collection is or has fast access to, such as NAS drives, Everything is in place to automatically collect the right metadata information for your media collections including all the art that fanart.tv provides, it stores all this artwork in your item’s folder but can be edited from the metadata manager within the web dashboard. What’s beautiful about MB is that if you use MediaPortal, XBMC, Plex then MB is intelligent enough to understand the metadata structures for those front ends and also integrate with them. We now have many users using MB-Server and XBMC Front End. The server has the right amount of configuration available to not daunt a new comer to the HTPC world and can leave the settings at default, where as a power user can get stuck in and, tweak things the way they want their metadata scraped and saved.
The screen shots below show just how easy it is to edit images and the selection available that MB recognizes and uses.
At the moment, our server currently only runs on windows, however, a linux/OSx mono based server is under development. If you are an experienced Linux/osx dev, and would like to help out or join our team please feel free to stop by this thread here!
Click to expand...
Click to collapse
Poster Editing - Backdrop Editing - Image Editing​
Apps and Accessing the Servers Content
Think about the Apps like shoppers in a mall, where the mall is the MB-Server and the MB-Apps are the customers, shopping around for things they like or want to see. It seems appropriate to call them these as that’s exactly what these MB-Apps do. Just about any handheld device, pad, laptop or pc can access the server using a dedicated app or access via a web browser, which in my eyes make life easy.
MBClassic (Original MB, WMC integration)
MBTheatre (Standalone PC based application)
Win 8 App (Windows Tablet or standalone PC based application for Windows 8)
Android App- (Available on google play and Amazon for Android OS devices and Kindle)
WindowsPhone App (Available in the WindowsPhone Store)
iOS App (Available thru AppStore)
Roku (Available from Roku Store || NowTV box from Sky is available for side loading)
WebClient (Browse your collection from your favourite internet browser thru HTML5)
XBMB3C (XBMC integration using MBServer with XBMC Front End)
Click to expand...
Click to collapse
Android
Windows Phone
MediaBrowser Theater
iOS
View attachment 2499294
WebClient / WebClient on iPad(or any HTML5 enabled device)
XBMB3C
Roku​
​Fanart.tv and MediaBrowser
There has been a long standing partnership with MB and fanart.tv and MB would like to commend them on their hard work over the years and may it continue. I feel it’s only fair that there should be some screen shots to wet your appetite. These Screenshots have been taken from MB-Classic and show just how beautiful fanart has helped to make themes like Subdued(An MBClassic Theme) look beautiful.
Click to expand...
Click to collapse
ClearArt - DiscArt - ThumbArt​
Paid
Free
For more information please visit www.mediabrowser3.com
Or for support visit www.mediabrowser3.com/community/
Git-hub https://github.com/MediaBrowser
Newly supported:
Live TV
We now support live tv through the use of a modular service provider system. You'll need to install a service provider plugin, and at launch we have one, ServerWMC. We'd like to thank krustyreturns for being a part of this.
A next pvr plugin is also in development, and we also have a few more on our wish list - Argus TV, DVBViewer and DVBLink. If you would like to get involved and help develop one of these plugins, please let us know.
So let's get down to live tv. You have the ability to view the guide, watch a channel, and full recording management capabilities. And the web client design is responsive so that you can use it on your smartphone to schedule a recording when you're not home.
Transcoding Engine Improvements
Perhaps just as exciting as live tv, we've made significant improvements to our transcoding service that will really help reduce server cpu usage.
Media Browser Companion (Chrome Extension) Released
https://chrome.google.com/webstore/detail/media-browser-3-companion/egofcbleniceaoleohckegkeepennpcn
Media Browser 3 Chrome Extension Gives You Quick Access to MB3 Notifications and Features
I am pleased to announce the Media Browser 3 Companion for Chrome. With this extension, you can quickly access status updates, latest news, and other important MB3 features without the need to load up the MB3 web client.
Features include:
Notification status icon displays number of unread notifications
Click status icon to review notification details including: new plugins that are available for download and new updates that have completed installation
Status icon turns red if your server is inaccessible so you can restart it ASAP
Restart server remotely through the extension
Link in header takes you directly to your MB3 server web client in case you want to restart
Coming Soon
Image Dump
View attachment 2499326View attachment 2499665View attachment 2499666
Gonna dump more screenshots here of android client
update post 2
Only copy freely content available thru serverWMC just for clarity...
The mb3 server is fantastic and ALL the clients are great.
The dev has done a great job with the windows phone app. Open to suggestions for improvement too. ServerWMC support coming soon, best feature on that is remotely setting recordings in my opinion. That said i don't watch much media on the go...
The android app is cracking on a tablet and the dev is looking to support android media players in the future. Which with serverWMC should make for an impressive cheap mediacenter!!!
Sent by my HTC8X using Tapatalk
Media Browser for Android now supports ChromeCast
TRusselo said:
Media Browser for Android now supports ChromeCast
Click to expand...
Click to collapse
I bought this app so I can get the chromecast support, but whenever I try to play a video the app freeze completely. This happens on My tmo s4 kitkat and nexus 7 2012 kitkat
kawaiichi said:
I bought this app so I can get the chromecast support, but whenever I try to play a video the app freeze completely. This happens on My tmo s4 kitkat and nexus 7 2012 kitkat
Click to expand...
Click to collapse
the second and third line of the post...
THIS THREAD IS FOR INFORMATION AND GENERAL QUESTIONS ONLY. FOR SUPPORT VISIT
www.mediabrowser3.com/community/
Click to expand...
Click to collapse
but...
what speed of router are you using? B/G/N/AC? what type of content? avi, mkv, mpg?
what is the processor speed of the server machine? it has to transcode if the file bitrate exceeds your wifi speed.
the problem is not your phones, it is your server, network, or content.
it works wonderfully on my Bell S4 on a N network, playing all my files, from a AMD FX 8 core server machine (any dual core 2.5 GHz or better should suffice)
Geet work
Sent from my SM-G900F using Tapatalk

Chromecast-based ROM for thin client possible?

I have an old HP Thin Client here and it is virtually worthless (I have run a few distros on it from USB, but minimalist) and was thinking that it might make a great streaming device. (It isn't ARM unfortunately, it is an x86 AMD proc...)
Is there any Chromecast derivatives (or even distros) that would allow for this to be used like a Chromecast?
LinuxAssailant said:
I have an old HP Thin Client here and it is virtually worthless (I have run a few distros on it from USB, but minimalist) and was thinking that it might make a great streaming device. (It isn't ARM unfortunately, it is an x86 AMD proc...)
Is there any Chromecast derivatives (or even distros) that would allow for this to be used like a Chromecast?
Click to expand...
Click to collapse
Can it run desktop Chrome browser? If so, you could use CR Cast extension or LeapCast to make it function like a Chromecast. See FAQ Part 1, 1.e
Note that both of those may need updates to support new apps built on the just-released SDK. Not sure.
Maybe bluestack for Windows and cheap cast.

Categories

Resources