LiveFromKyoto
Member
Microsoft needs to get moving, and fast. The bleeding of Halo/Call of Duty players to Crossy Road has probably already begun.
haha... someone got something really wrong. The new Xbox One update is based on W10 but it's no full W10.
streaming from the xbox one to windows 10 using a wired connection is pretty great, but their wireless streaming experience is awful currently. Even with a good router and a proper surface tablet that can take advantage of a wireless ac connection, the experience is still poor. By constrast, what I do from my PC to my Nvidia shield is a much better experience currently.
Ironically, I use the xbox streaming to do the exact opposite of what this article suggests. I integrated the Xbox streaming app into steam so that my gaming PC can launch and run xbox one games and steam games.
![]()
Until my Xbox One can run steam, and gog galaxy, and origin, and even uplay, it'll never be a proper replacement for a gaming PC.
Well all the people who bought the wii have abandoned the console space in favor of smart phones. If apple can bring them in the living room and let them play all their phone games as well as console level games then yes, the apple tv will challenge the systems.
We are never going to see an Xbox One with full blown Windows 10 on it. There's a reason why Steambox was so disappointing to a lot of people.
Apple TV is a flop anyways.....dont see this doing anything to help it.
Please share how you did this. Some of us would like to do the same!
http://steamcommunity.com/discussions/forum/1/541907675759647418/
start xbox:
Really? I have one and I use it almost every day.
Apple isn't pushing anybody out of the living room so long as they continue to run that shit show they call the app store.
Apple isn't pushing anybody out of the living room so long as they continue to run that shit show they call the app store.
Yeah, I'd like to know too. It's by far the best ecosystem.What is shitty about the App Store?
If Apple iterates on this box every year like they have with everything else I can see the under the hood power in this thing beating out a PS4 in a few years.
I find the free upgrade line amusing. Who in their right mind would offer a priced update for a video game console. :O that would be a first. (The n64 expansion doesn't count) :3
I don't think you know what a steam machine is.
Unleash project xboat.Microsoft's cunning plan to save the Xbox from Apple
Read more: http://www.businessinsider.com/microsoft-xbox-one-vs-apple-tv-2015-9#ixzz3lFGcYaK8
TODAY
Tomorrow, Apple will reportedly introduce a new version of the Apple TV with a new focus on gaming and a Nintendo Wii-like motion controller.
It's seen by many, including the New York Times, as a move to push the Microsoft Xbox One and Sony PlayStation 4 video game consoles out of the living room.
The good news for gamers is that Microsoft has already put a cunning plan to completely change the Xbox One into motion a plan that would save it from whatever Apple comes up with.
The bad news is that it means killing the very concept of the game console as we know it.
The fact that the Apple TV will likely cost $149, versus the Xbox One's $349 and PlayStation 4's $399 doesn't hurt, either.
Microsoft's cunning plan
In the next few months, Microsoft is planning on releasing Windows 10 as a downloadable update to every single one of the 15 million Xbox One consoles it's sold.
To understand why this is so diabolical, here's a little Microsoft history lesson: The whole reason that the Xbox came into being in the first place was to make it super simple to take a console game and also sell it on Windows.
With an Xbox One that's also a Windows 10 PC, it means that it's a games console that could theoretically run any Windows 10 game, too though Microsoft hasn't yet shared many details on what Windows 10 will enable on the new console.
In other words, the Xbox One won't just be a games console. It's your new living room PC just like Microsoft wants the Surface to be your laptop. If there was any question whether Microsoft was serious about becoming a PC maker, that question should be long gone.
At first, Xbox gamers won't notice much difference, except that Microsoft may add a Windows Store that would let you download casual, smartphone-style games from its own cross-platform app store.
But over the next few years, if the Apple TV does diminish the demand for a dedicated video game console in the living room, the Xbox One (or its successors) could turn from a game console into a cheap, effective PC, optimized for gaming and multimedia.
And with the Xbox One-to-Windows 10 streaming, it means that the console is well-positioned to turn into your home's gaming hub.
It means you don't need a super-high-end PC to play the latest titles: Just stream them over the network to your Surface Pro tablet or Lenovo superthin ultrabook and you're playing this year's Batman: Arkham Knight with the best of them, without compromises.
Read more: http://www.businessinsider.com/microsoft-xbox-one-vs-apple-tv-2015-9#ixzz3lFHm5tln
No one is going to subsidize PCs, or an Xbox that is completely open to any software.
You state this a mere sentence after you acknowledge that alienware does just that.
Alienware Alphas are subsidized? By who? Do you have evidence of this?
You can't build a PC as small as the alpha for the prices they run at.
Apple isn't pushing anybody out of the living room so long as they continue to run that shit show they call the app store.
So...no proof. That's all you had to say. No proof.
Really not that complex at all. It's just a giant macro-driven batch file. First, I launch the xbox streaming application on windows 10, using the following command:
next, I launch a program from the batch file called AutoSizer, this lets me save the position and size of the Xbox Streaming window so buttons will be in the same place every time. I have autosizer automatically make the xbox streaming app full screen then close.
Next, I launch an autohotkey script that uses MouseMove to move the position of the mouse and send mouse clicks. (EDIT: One tip - when you do this, use CoordMode to make the XY coordinate you feed your mouse relative to the entire screen, not just active window. This way, even if you lose focus of the xbox streaming window as the batch files open and close, it'll still be clicking in the correct spot of the screen.) I just figured out where the "Xbox streaming" button was, moved the mouse to that button, then clicked, then moved to the "turn on Xbox" button and clicked that, then moved to the "stream" button and clicked that. I saved my autohotkey script as an executable and launch it from my batch file after resizing the xbox streaming application with AutoSizer.
After all that, I took my batch file, and using an online batch to exe converter (like this one: http://www.f2ko.de/en/ob2e.php) turned it into an executable, added it as a non-steam game, then gave it a custom steam banner.
Voila, one click xbox one streaming. I can go from playing a steam game to playing an Xbox One game without ever putting down the controller or changing the channel.
Wow, that's really creative!
Is the end result just an exe file?
Or are AutoSizer and MouseMove operating in the background? (...waiting to be called upon by the batch-file-turned-executable)
MouseMove is a command in autohotkey. I have autohotkey set to start when windows starts, because I use it and eventghost to remap some buttons on my MCE remote. I just send it scripts to execute when I need to. However you can use autohotkey in a variety of ways - it's a very powerful windows macro and remapping tool. You can create macros that themselves compile into executables that you can open from your batchfile if you don't want to keep autohotkey running at all times. In that case, once the macro finishes executing, the autohotkey program closes. Autosizer is installed on the system, the batch file that I turn into an executable opens and closes it as necessary.
I use the following commands pretty extensively, they are very useful for controlling windows through batch files:
Taskkill - Lets you end programs in windows from a command.
Start - lets you run and execute programs from a command line, very useful. You need to properly set up the command, point to the correct startup folder with the /D flag. You can use /wait to make the batch file halt until the started task has ended, which is useful if you want to make sure something finishes before moving on.
within autohotkey, I use the following commands:
MouseMove - moves the mouse cursor to specific locations on an active window or the entire screen. I use CoordMode to make sure the mouse locations I am sending are relative to the entire screen, not a particular window. The command can be instant - i.e. the mouse cursor moves instantly to the desired location, or you can set a movement speed. Using the movement speed is handy if you want to delay an action. Example - because it can take time to connect or turn on my xbox one, I will move the mouse slowly from button to button, exceeding the timeout period, so that the correct actions will be complete by the time I am ready to move on.
MouseClick - This clicks at a specified location relative to either a window or the entire screen. This is the command I use to click buttons on the Xbox One streaming app. A general tip - if you launch the Xbox One streaming app from steam, it'll appear for a moment, then you'll return to the steam interface. This is because what you are actually launching is an executable that is sending batch commands, not the xbox one streaming app itself. When the executable is done sending it's commands, steam thinks the program has ended and returns you to the menu. You can get around this by sending a mouse click command to an area of the screen where the Xbox One streaming app appears, so that it steals focus away from steam. This way, when the command line executable program ends, the Xbox One streaming app still has focus.
In the end, everything is activated from one executable, which I add into steam. If I open the shortcut in steam labeled "Xbox One" it'll run my batch file to open the xbox streaming app, open the streaming tab, turn on my xbox, and set the client to start streaming.
Microsoft needs to get moving, and fast. The bleeding of Halo/Call of Duty players to Crossy Road has probably already begun.
AutoHotKey is good stuff. I use it to control my audio outputs and Afterburner overclocking. Sounds like you're far more advanced than I am, though!
You should make a new topic with an Idiot-Proof guide to making this work. (I mean really, really, dummy it up).
[1] "install this program (link to program)
[2] open up AutoHotKey and copy & paste this text (insert text) and save as ___."
[3] etc
I bet GAF would be interested!
This is more than just spearheading Apple, they are also going after Valve as well with this. Yeah they are trying to combat Apple TV and Steam Machine's at the same time. Wouldn't it be something if users could install Steam on their Xbox One? SteamOS is slowly growing into a Linux powered gaming platform, this could be a problem for Microsoft and Windows down the road in a longer term. Apple is trying to position Apple TV to compete with the PS4 and XBox One.
It makes me wonder if Steam will be installable on Windows 10 for XBox One? Or if this will be a version that has a walled garden level of functionality that will be mandated by Microsoft?
With an Xbox One that's also a Windows 10 PC, it means that it's a games console that could theoretically run any Windows 10 game,
Valve would jump at this. That is basically valves goal. Valve isn't pinning their hopes to any single method of using steam, their grand plan is the steam universe. Steam being everywhere, on every machine. Steam on the Xbox One would be a huge valve victory.
It's all just marketing hype for Apple's announcement. That's all.I doubt that the new Apple TV will have anywhere near the impact on the gaming industry that all of these analysts think it will.
Apple TV is a flop anyways.....dont see this doing anything to help it.
Really? I have one and I use it almost every day.
It's not marketing bullshit, but it doesn't mean xbox is going to be able to run any desktop app, like steam and its games.The timing of this article is a bit peculiar. It's titled "The Xbox One is a Windows 10 Device". While this could very well just be marketing bullshit so MS can say they have X amount of devices with Windows 10 installed, it will be interesting to see what could come of this. I, for one, would definitely be on board with playing scaled down PC exclusives on the XB1.
http://www.ign.com/articles/2015/09/10/the-xbox-one-is-a-windows-10-device
Microsoft needs to get moving, and fast. The bleeding of Halo/Call of Duty players to Crossy Road has probably already begun.
Interesting. I don't see Apple TV being a real threat to the consoles, but competition is always nice. I hope this means that even more Xbox games will come to PC.