Recommended Posts

So 11Mbps -- that is a what like 1.3MBps, that does not seem all that high. Do you forget some zeros or is that Mbps?

This is from the details of the file

1.PNG

And this is the site I got it from

http://www.demo-worl...on-trailers.php

Just tried playing a 1080p .mkv and it freezes for a second every 5 seconds or so

raspbmc is still beta though so..

Can WinSCP into it which saves shutting down and editing in linux vm

Capture.PNG

SSH no problems too

55.PNG

top command

221.PNG

That was off a VM using the vmxnet3 driver so that is why it shows 1000 and 10,000, and connected 10,000Mb/s ;) - no I don't have a 10Gb network running, which would be sweet though ;) I would assume the os is trimmed down, so you might not have ethtool - but you should be able to add it if not currently installed. There are all kinds of ways to set that in linux, windows is where its a pain in the ass to view your duplex. Unless your driver allows you to set it, there is really no way to set specific combinations of speed and duplex. As to cpu use?? hmm what are you doing? What is the current load? Do a top command, what does it show for load? budman@ubuntu:~$ top top - 13:34:19 up 2 days, 2:50, 1 user, load average: 0.13, 0.11, 0.12

Managed to install ethtool via apt-get install but running the command ethtool eth0 brings back

-bash: ethtool: command not found

Try:

-> whereis ethtool

If that doesn't work, do;

-> find / -name "ethtool"

Say it's in /usr/bin/ethtool, open a terminal and type /usr/bin/ethtool

Anyway I see you're now enjoying how much of an absolute pain the device is :p you're lucky you're using sound over HDMI because sound over analogue is very poppy and clicky, although you get the same kinda problem with HDMI in that it will skip parts of the song (like first 2 seconds of the beginning etc).

I haven't done anything with mine in quite a while, was thinking about a music player for car but until the ALSA drivers are actually out of alpha (I doubt it ever will if I'm honest) it's not feasible.

Thanks, whereis worked :)

looks like xbmc.bin is using most of the CPU, not limited to the Pi from a quick Google, others are thinking its a GPU driver issue, but probably not if its here too

pi@raspbmc:/sbin$ /sbin/ethtool eth0
Settings for eth0:
	    Supported ports: [ TP MII ]
	    Supported link modes:   10baseT/Half 10baseT/Full
							    100baseT/Half 100baseT/Full
	    Supports auto-negotiation: Yes
	    Advertised link modes:  10baseT/Half 10baseT/Full
							    100baseT/Half 100baseT/Full
	    Advertised pause frame use: Symmetric Receive-only
	    Advertised auto-negotiation: Yes
	    Link partner advertised link modes:  10baseT/Half 10baseT/Full
											 100baseT/Half 100baseT/Full
	    Link partner advertised pause frame use: Symmetric
	    Link partner advertised auto-negotiation: Yes
	    Speed: 100Mb/s
	    Duplex: Full
	    Port: MII
	    PHYAD: 1
	    Transceiver: internal
	    Auto-negotiation: on
Cannot get wake-on-lan settings: Operation not permitted
	    Current message level: 0x00000007 (7)
Cannot get link status: Operation not permitted

normally when you install a new package, you have to restart the shell session to see it in the path.

According to your load in top, the box isn't doing much of anything. 0.02 is nothing.

normally when you install a new package, you have to restart the shell session to see it in the path.

According to your load in top, the box isn't doing much of anything. 0.02 is nothing.

But the CPU usage is 75%, so it is doing quite a bit :p

Well your one process there that xmbc.bin is using cpu yes, but since your load is .02 - that means that is really the only thing using it. And when other processes ask for cpu time they are getting it. So its not over taxed or anything, just the process is doing something is all.

Now if you have high cpu by a process, and high load then tells me you got things in contention for cpu time, and your box could be overloaded - more things wanting cpu time, and not being able to get it. But that does not seem to be the case with your output.

Not sure what xmbc.bin is doing - but until is shows as load, there is nothing all that wrong with a process using cpu time. Only when that process HOGS the cpu time do you have a problem ;)

As you can see from this

top - 14:05:10 up 29 days, 13:31, 3 users, load average: 2.09, 1.62, 1.26

You got some load on this box, processes are asking for cpu time and having to wait while other processes finish, so the load goes UP.

Well your one process there that xmbc.bin is using cpu yes, but since your load is .02 - that means that is really the only thing using it. And when other processes ask for cpu time they are getting it. So its not over taxed or anything, just the process is doing something is all.

Now if you have high cpu by a process, and high load then tells me you got things in contention for cpu time, and your box could be overloaded - more things wanting cpu time, and not being able to get it. But that does not seem to be the case with your output.

Not sure what xmbc.bin is doing - but until is shows as load, there is nothing all that wrong with a process using cpu time. Only when that process HOGS the cpu time do you have a problem ;)

As you can see from this

top - 14:05:10 up 29 days, 13:31, 3 users, load average: 2.09, 1.62, 1.26

You got some load on this box, processes are asking for cpu time and having to wait while other processes finish, so the load goes UP.

Ah right I think I understand, so its not the same as a windows process that was showing 80% CPU, it just means that xbmc.bin is using more of the CPU time than other processes? But not necessarily a bad thing so long as other processes can jump in when needed

When I leave xbmc on the homescreen, xbmc.bin drops to about 28% cpu, but any other screen, even info screen and its back up to 80-95%

Load average is based on a bit of an old system and makes sense for single cpu and core systems only, if you've got 2 cores then you can in theory go up to a load of 2.0 instead of 1.0 etc. but it gives an overall basic idea of usage.

If for example you get X11 and fluxbox for the pi and try to move a window, you'll see the load rocket up to well over 1.0 and X11 will look frozen for a while.

"so its not the same as a windows process that was showing 80% CPU"

Nothing wrong with a windows process showing 80% cpu either. Depends on what priority its running at for example. If its running at low priority, then anything can take that cpu away from it.

Back in the day when running dnetc (distributed cracking project back a few years) Always saw 100% cpu usage, whatever cpu was not being used the dnetc client would use, but at lowest priority -- so it would give it back to anything that asked.

Same goes for the @home, and search for SETI projects - those clients all use up 100% if you let them. And just give it back when something needs it.

Having a process use 100% cpu does not have to mean the the machine is non responsive -- comes down to what the load is.

"so its not the same as a windows process that was showing 80% CPU"

Nothing wrong with a windows process showing 80% cpu either. Depends on what priority its running at for example. If its running at low priority, then anything can take that cpu away from it.

Back in the day when running dnetc (distributed cracking project back a few years) Always saw 100% cpu usage, whatever cpu was not being used the dnetc client would use, but at lowest priority -- so it would give it back to anything that asked.

Same goes for the @home, and search for SETI projects - those clients all use up 100% if you let them. And just give it back when something needs it.

Having a process use 100% cpu does not have to mean the the machine is non responsive -- comes down to what the load is.

Got you, basically why leave the CPU idle when something could be using it, so long as it gives way to anything that asks when needed

Well so far I can boot and be watching a standard def avi in around 30-50 seconds (ish) I haven't timed it yet, but very acceptable and the fact that it boots right into xbmc is great

Still having problems with full HD stuttering or freezing every now and then though but hopefully updates will sort that out

The addon for tvcatchup (UK digital freeview) installs and runs, but not even 1fps on any of the channels

http://www.dynebolic.org/

Just found that. Apparently v1 and v2 will run on a P1 with 64MB RAM and the kernel has been modified to run real-time... I dare say it'd be a pain in the ass to port it to the pi but I'm wondering if it'd increase performance.

Yep you won't get ANY webcam or TV capture/viewer device showing you video well at all because there is absolutely no hardware accelleration (well only h.264), I've tried with webcams and just gave up, you can use say python to record an image frame and it'll work (slowly) and complete but not view a video.

http://www.dynebolic.org/

Just found that. Apparently v1 and v2 will run on a P1 with 64MB RAM and the kernel has been modified to run real-time... I dare say it'd be a pain in the ass to port it to the pi but I'm wondering if it'd increase performance.

Yep you won't get ANY webcam or TV capture/viewer device showing you video well at all because there is absolutely no hardware accelleration (well only h.264), I've tried with webcams and just gave up, you can use say python to record an image frame and it'll work (slowly) and complete but not view a video.

Yea, I've had enough of xbmc for today :p

Back to normal linux for the rest of the night now, gonna have a try getting my wifi working with wheezy, then gonna try Arch or something

Need more sdcards, it takes that long to get one distro working moderately well that I don't want to wipe it :D

I`ll no doubt get faster and faster at setting them up as I learn

Make backup images of the SD on your PC using dd (dd if=/dev/sdf of=/home/user/RPi_BACKUP1.bk bs=8M) or put the images onto a hard drive, use an IDE/SATA -> USB cable and put the /boot/ directory on the SD card and modify it to use /dev/sda as the root partition in cmdline.txt

Make backup images of the SD on your PC using dd (dd if=/dev/sdf of=/home/user/RPi_BACKUP1.bk bs=8M) or put the images onto a hard drive, use an IDE/SATA -> USB cable and put the /boot/ directory on the SD card and modify it to use /dev/sda as the root partition in cmdline.txt

Running Windows on my PC, might be able to do the backups with a VM, I like the idea of the HDD though, means I would be able to edit the startup to boot from any image ?

Managed to get my wifi up by editing /etc/network/interfaces with my wireless info and then running sudo ifup wlan0

Bit of a b*tch only having 2 x USB ports, I don't have a hub yet so have to keep swapping between mouse and wifi or keyboard and mouse etc lol

Yep, if you use GPT then you can have say 21 partitions on it, 10 for the boot partitions (that you can get rid of), 10 for the main root partitions and 1 for swap, then you just need to edit cmdline.txt to change the root device (Although if it's using a different version kernel or named kernel you'd need to move the boot files from that OS over to there)

Yep, if you use GPT then you can have say 21 partitions on it, 10 for the boot partitions (that you can get rid of), 10 for the main root partitions and 1 for swap, then you just need to edit cmdline.txt to change the root device (Although if it's using a different version kernel or named kernel you'd need to move the boot files from that OS over to there)

Great thanks, once I get a bit more familiar with things I think I`ll do that

Just found this one the raspberry pi forums,

The same tool that you use to create the sdcards with (win32diskimager) can also be used to backup your sdcards via windows, just put the sdcard into the windows USB port > browse to "save destination" in win32diskimager > hit "read" :D

So I can swap and choose as I like now without losing anything or having to open a VM

Here is a video of Raspbian booting, browsing, and playing a couple of python windowed games, excuse the freezing of the video, since WP7.5 update it's ruined the camera recording

http://www.youtube.com/watch?v=N73WQ-F-7j4

--------------

Just flashed this image, boots straight to xbmc, faster than raspbmc and tvcatchup streaming works well

XBian 0.1 Features

------------------------------

- Fits on a 2GB SD card

- Low RAM usage (XBMC idle it uses 22 - 27 MB ram)

- Low CPU usage (XBMC idle it uses +/- 60%)

- Very smooth UI (XBMC idle @ 1366x768 +/- 57 FPS, @ 1920x1080 +/- 35 FPS)

- Auto mount USB

- Boot's up very fast

- Hard Float binaries (hardfp)

- Overclock without overvolting (arm_freq = 850, sdram_freq = 500, core_freq=450)

- Workaround for a kernel bug which hangs the Raspberry Pi under heavy network/disk loads (again, many thanks to DarkBasic).

- Boot's up XBMC automatically

http://www.raspberry...hp?f=35&t=12893

EDIT - It can play those HD samples that Raspbmc had trouble with, and plays 1080p .mkvs better too, although still what looks like buffering problems, freezing every 5 seconds then playing fine

It doesn't have any problems playing the video, but seems to have problems keeping it going without interuption, the investigation continues but after flashing the above, it really seems like better coding can fix it

Here is the Pi playing another HD sample, you see the stalling issue, but this one seems to sort itself out part way through and play the rest without any problem (Had to use my camera to record thanks to MS breaking my phone so no HD recording for this one)

http://www.youtube.com/watch?v=w8FF_GFCh7w

This topic is now closed to further replies.
  • Posts

    • Five things you might have missed during Apple's WWDC 2026 by Aditya Tiwari Image: Apple Apple's annual developer event, WWDC 2026, happened from June 8 through June 12. We have already covered several new features and updates that the iPhone maker unveiled during the official keynote. Apple took Google's help and finally announced the upgraded Siri AI personal assistant, which now comes with an app. Moreover, a truckload of Apple Intelligence features took the center stage. That said, this year's WWDC is a bit different, and you might have noticed or missed the following stuff: Apple's ongoing unification of platforms Image: Apple One thing Apple is widely known for is its seamless hardware-software ecosystem. The company added a new chapter in 2020, when it began the Apple Silicon transition and launched macOS 11 Big Sur with native ARM support. Some major changes happened last year as well, when Apple renamed all of its operating systems to version 26 and introduced the Liquid Glass design language. Until WWDC 2025, Apple keynotes had dedicated segments for iOS, iPadOS, macOS, watchOS, and other operating systems, in which the company discussed each in detail. The WWDC 2026 keynote was different, and Apple allotted most of the screen time to Apple Intelligence and Siri. It didn't even publish separate press releases on its website for different operating systems. While it might seem surprising at first, it shows how Apple plans to move forward with its software ecosystem. Be it the Liquid Glass changes, child safety updates, or other features, they are mostly rolling out across multiple platforms. In other words, Apple is slowly blurring the line between its operating systems and achieving feature parity wherever possible. It's easy to rule out that someone in Apple's marketing team forgot to press the publish button. Everything is a calculated move when it comes to a company like Apple. Putting Apple Intelligence left, right, and center hints that the OS itself is no longer the product anymore. It's Siri, not Pepsi Time and again, various Apple products have been compared to unrelated things and turned into meme material. You might have heard about the "cheese grater" Mac Pro or the "trash can" Mac Pro, to name a few. It's Siri's turn this time. The upgraded AI assistant got a fresh logo, and people have started comparing it with Pepsi. There are other contenders, such as the Sony Ericsson logo and the Yin and Yang symbol. Shot on iPhone. Edited on Mac Image: Apple Apple has been putting the iPhone's camera muscles to the test on various occasions. Even NASA astronauts took it to Space earlier this year and captured some out-of-this-world photos. Recently, Apple TV streamed the first major live sporting event shot entirely on iPhone 17 Pro: an MLS match featuring the LA Galaxy vs. the Houston Dynamo FC. The 'Pro' iPhone has also been used to shoot Apple events in recent years. It's "Scary Fast" Mac event in 2023 was among the earliest attempts, and the tradition trickled down to the WWDC 2026 keynote, which ended with the tag line "Shot on iPhone. Edited on Mac." It's unsurprising to see Apple flexing the camera capabilities of its Pro models, especially when it has been baking professional-grade features, including ProRes RAW and Genlock. Hints for the foldable Apple has been sitting on the foldable iPhone for so long. There is still confusion over when the company will make it official. A recent report said that the iPhone Fold might get delayed as Apple is struggling to perfect its hinge mechanism. But Apple has been dropping hints here and there. A developer dug into the iOS 27 beta code and found internal references about device folding states. As verified by Macworld, the code includes references to "foldState" and "angleDegrees" internal status values, which are apparently designed to tell apps if a device is folded and at what angle. As of now, no other Apple device uses these states. The publication also found internal code suggesting Apple has been testing a device with both Touch ID and Dynamic Island, a combo that doesn't exist today. Last event as Apple CEO Image: Apple Tim Cook's bond with Apple is now almost three decades old, having started in 1998 as the SVP of Worldwide Operations. Back in August 2011, Steve Jobs stepped down as Apple CEO months before his passing, and Cook took charge. Now, the baton has been passed to the hardware chief, John Ternus, who will take over the role on September 1. WWDC 2026 is the last major Apple Event for Tim Cook as CEO. We have seen so much during Cook's tenure over the years, much of which defines Apple as we know it today. From new hardware product lines like Apple Watch, AirPods, Apple Vision Pro, and Apple Silicon, to boosting Apple's services business with Apple Music, Apple TV, Apple Pay, Apple Arcade, Apple Fitness+, Apple Care One, and more. That said, the first developer betas for Apple's latest operating systems are now available. You can check if your device is supported on iOS 27, iPadOS 27, macOS 27 Golden Gate, watchOS 27, and other platforms. What's your favorite feature that Apple announced this year at WWDC 2026? Tell us in the comments.
    • Trailer park trash “sport “, fits the current White House
    • KataLib 5.3.0.0 by Razvan Serea KataLib is more than just a music player — it's a complete audio suite designed for music lovers and creators alike. It combines a powerful audio player, a flexible metadata editor, a capable audio converter, and a music library manager into one streamlined application. Core Features: Audio Player Enjoy seamless playback of virtually any audio format or even streaming video files. DJ Mode lets you mix tracks with manual or automatic crossfades. You can also load and save WinAmp-style playlists for quick access to your favorite sets. Audio Converter Convert between a wide range of audio formats effortlessly. Trim or normalize your output automatically, and even extract audio from streaming video sources. Ideal for preparing files for different devices or platforms. Metadata Editor View and edit ID3v2 tags and other metadata. Batch edit multiple files at once, and fetch missing information directly from the MusicBrainz database. You can also apply or update album art with ease. Music Library Manager Organize your entire audio collection, search across tracks instantly, and download cover images from the internet — or use your own custom artwork. KataLib makes it easy to keep your library tidy and enriched with useful info. Supported Formats: KataLib supports a wide range of both lossy and lossless audio formats: Input: OPUS, AAC, FLAC, M4A, MP3, MP4, MPC, APE, AIF, MKV, AVI, MOV, FLV, WEBM, Ogg Vorbis, WAV, WAVPack, WMA, AC3, OGA, MP2, MPGA, MPEG, DTS, M4B, DSD (DFS) Output: OPUS, FLAC, M4A, MP3, Ogg Vorbis, WAV Under the hood, KataLib uses the trusted FFmpeg engine for audio conversion and media playback, ensuring compatibility with virtually all mainstream media formats. KataLib 5.3.0.0 changelog: Added Option to select the Zoom level of the Oscilloscope visualizer. The taskbar button of the app now displays the progress of its processing tasks. The metadata text of the Visualization Video can now be aligned by the user. We can now reorder the order of the Visualizers and Metadata, in the Visualization Video Setup dialog, by removing any item and adding it again. It will be added at the end. Changed The font size of the Visualization Video can now be more than 30 points. Updated yt-dlp library to version 2026... Fixed Opening the Visualization Video Setup dialog could fail if the settings were wrong. Sometimes there were false duplicates in the Rename Tracks dialog. Tracks without metadata appeared without title in the Recent menu. Download: KataLib 5.3.0.0 | 90.0 MB (Open Source) Links: KataLib Home Page | Github | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • EA Sports UFC 6 review: Brutal, satisfying, and surprisingly accessible to newcomers by Pulasthi Ariyasinghe EA’s UFC series of fighting games has been putting out games for over 10 years now, but it’s a series I have never spent any time with. As a PC guy, the series being console-exclusive is the primary reason for that. The latest entry to the series, EA Sports UFC 6, is still not coming to PC, but I have an Xbox now. When EA reached out to see if I could have a crack at the game and give my opinion about it, I finally got the chance to see what this franchise is about. I have spent about a week playing UFC 6 on the Xbox Series X. Despite my lackluster skill with fighting games, I still have fun with entries like Street Fighter and Tekken. I quickly came to realize this is a different kind of fighting game, not the arcade titles I am usually dabbling with. Most of the week that I spent playing UFC 6 was in the career mode, trying not to get knocked out while slowly improving my combos and reactions. The review below will be from the perspective of a newcomer to the series and an amateur fighting game fan, so please forgive any mistyped lingo or series-staple mechanics I am not comprehending. In the Ring Getting a solid hit in UFC 6 is satisfying. It’s probably the most satisfying impact reaction I have seen in a fighting game. The ripples in the muscles, the spray of sweat (and blood), the meaty sound, and the subsequent stumble all carry a lot of weight. If I miss a heavy swing like that, though, I already know that I'm in for a world of hurt from the incoming counters. The fighting is a real treat. The actions aren’t as snappy as arcade titles, so a miss feels like a much bigger mistake here. This slowness did take some getting used to, but I felt the improvement in my abilities even after a few drills with basic punch and kick combos. If I’m not deliberate with my actions in the ring, whether it be a hasty retreat or a flying punch, the possibility of getting instantly knocked out is always there. The head, chest, and legs all come with their own health bars, so guarding just one area is just asking for trouble. A few hits to the head, and it's game over. Meanwhile, you won’t even be able to stay on your feet if they get damaged enough, drastically lowering the total amount of stamina available for the rest of the match. I was also encountering a large range of fighting styles to customize my own fighter with. There are a huge number of real-life superstars here from multiple eras. It’s not as exaggerated as Street Fighter or Tekken, but the way they move, evade, throw punches, or even take steps is based on their real-life counterparts. I can see this being a big draw for any mixed martial arts fan. One feature I was surprised to see here was the 'Flow State' ability. As rounds progress, a power-up meter can give a temporary boost to the unique fighting style of the selected fighter, essentially boosting what they are good at. There is an entire visual effect that kicks in when activating this, too. The surprising part was seeing something like this in a game that feels like it’s aiming to be more of a simulator than an arcade fighter. My skill level is too low to use this exactly how the game wants me to, so I ended up triggering it whenever the opponent did it as well. Streamlined vs Authentic When I first started it up, UFC 6 asked me about my experience with the series. Being genuinely new, I took its advice and opted for a lowered difficulty level and 'Streamlined' controls. Quickly, I realized that this wasn’t for me. My chosen fighters were throwing random attacks, no matter what combination the game was trying to teach me. Win streaks were happening, and I was already getting bored out of my mind just a few matches in. Turning off this mode and switching to 'Authentic' controls fixed everything right up. I was now able to control my fighter with more precision than I expected. I could control each arm and leg, which body part my attacks would aim at, and the fully customizable controls for setting up unorthodox moves were a cherry on top. None of these made me an expert at the game, but at least I was being beaten up fairly. This is not a point against UFC 6, though. Giving the option for anyone to enjoy the game is always a good thing in my eyes. There is a lot of customizability in the difficulty, with everything from slow-motion reactions to specific assists being offered as toggles. If I had a friend coming over and wanted to try a quick 1v1, the streamlined controls option is one I’d consider to make it a light and fun fight. The one part of the fighting that did not click with me was the grappling. Being taken to the ground brings in an entirely new control mechanism involving mounts and submissions that feel more like quick-time events than the heavy, tactical fighting I had seen so far while standing. The game wants me to hold sticks in certain directions to change the position or pull off submissions, trying to do the opposite actions of the opponent. Even though I tried to get used to this gameplay, it just felt like a momentum killer, and I eventually just wanted to get back on my feet to get back into the action. Legacy and Career It was UFC 6’s career mode that I wanted to play the most when I started it up. I grew up with EA Sports games, and taking my team from the ground to the top has always been my favorite task. UFC 6 has that same option but also offers a more cinematic entrance to the career experience than I expected with ‘The Legacy’ mode. This mini-campaign follows an up-and-coming fighter, Chris Carter, who is attempting to reach the heights his father had reached in the sport. Starting with a small-time gym and coach, the story follows both his growth in the space as well as the growing rivalry with a friend and fighter, Danny Lopez. The fights in this mode are very good at introducing a newcomer like me to the sport and its varying techniques. Cinematics land between the major fights, showing the growing tension between the two fighters as the years go by, feeling the pressure to not miss out on the hard-earned chances. The dialogue can be a little corny at times, especially when the bar fights kick off, but I largely enjoyed the storyline. At the end of it, I was pretty much familiar with all the mechanics of the career mode, unlocking new skills and moves, and how I needed to approach fights, both outside and inside the ring. This story mode isn’t a very lengthy one, so don’t expect an hour-long campaign. Once the conclusion is reached, Carter’s journey continues as if it’s a normal career playthrough, though I decided to start over from scratch now that I have some know-how about the basics. The career mode is very streamlined, which is to be expected considering there isn’t a team to manage like in other EA Sports games. It’s the journey of one fighter. When a fight comes up in the calendar, I could choose how many weeks I dedicate to preparing for it at the gym. A longer prep time gives the opportunity to get my fighter’s fitness up (giving a bonus during fights), earn more money and points for unlocking new skills, and gain more fans to fast-track the rise to stardom. While that sounds like a lot of things to manage, it’s more like a few clicks. There is a social media menu that sometimes pops up with canned replies I can send to fans, and the sponsors are once again a single click away from being assigned as finished. It’s the training aspect that adds a gameplay angle. Using the money from winnings and sponsorships, I was hiring different types of trainers and learning fancier moves to use in the ring. One small thing I appreciated was that it was possible to injure each other during these training sessions. If a trainer goes down in a bad way while sparring, they won’t be available for the remainder of training. If my fighter is injured, it takes valuable time and resources to heal and recuperate. Just like in real life, it makes sense not to go so hard during training sessions and save that energy for the main event. Every training or sponsorship activity I took part in used up the days and weeks I had before the next fight, bringing a balancing element to the whole ordeal. There were times I simulated most of these to just get to the next fight, but the grind for gaining even the slightest bit of advantage while trying not to overdo it is an enjoyable one. Outside of quick fights and career modes, UFC 6 also introduces an almost museum-like mode to explore a trio of fighters considered to be legends of the sport: Max Holloway, Alex Pereira, and Zhang Weili. The aptly named Hall of Legends mode is unlike everything else seen in the game. Each of these fighters has entire levels dedicated to them that I could walk around in and explore their journey into the UFC. This includes footage from real-life fights and interviews about their original inspirations and training methods. Each of these spaces is almost like an interactive documentary. Once the highlights are done, the mode offers the opportunity to take over a deciding fight from the superstars. It’s an impressive transition. Going from the real-life televised event with crowds and commentary to immediately taking over in the game has some real hype behind it. Performance and visuals It’s clear to see that UFC 6 is going for a photo-realism look with its visuals compared to any other fighting game. The fighters don’t look great in selection screens. But inside the arenas, under the flood lights, surrounded by crowds, and facing an opponent, the visuals are more than impressive. As ghastly as it is to witness, things like blood spraying into the mat and muscles reddening as they get pummeled keep improving the immersion. The fluid animations help sell the illusion even further. A missed kick carries the momentum to require a corrective step. Hard punches that glance off blocks give off the air of a hit that still took some wind off the opponent’s guard. The special moves with flips and spins look mega awkward when missing, just as they do in real life. Suffice to say, the Frostbite Engine powering this game is one of the biggest strengths of EA development studios. Playing on the Xbox Series X, the 60 FPS gameplay did not miss the mark or cause any slowdowns that I could detect. I still wish this series were on PC to see just how far the developer can push the engine. One area I continue to have issues with, surprisingly enough, is the menus. The game has fast loading screens, but almost every menu I click through has a large amount of noticeable lag before it registers. This is immensely painful in the career mode, since I have to go through multiple menus between fights to train and do sponsorships, and having a 3-second pause when selecting a simple move between pages is the only time that made me quit the game. Thanks to Xbox’s quick resume, though, I was able to instantly jump back in the next day to the same point (and wade through more laggy menus). Conclusion My primary mission going into this EA Sports UFC 6 review as a newcomer to the series was to find out if this is a good jumping-in point for someone like me. Suffice it to say, the game passed that test with flying colors. Despite the high skill ceiling, the legacy mode introduction campaign, multiple types of accessible controls, and streamlined career had me picking up the basics and fighting styles much faster than I expected. I wish I had gotten to try out competitive multiplayer during my time with the game, too, but the lack of players in the pre-release version prevented this. The impressive visuals and animations, coupled with the impact physics that let me feel every punch and kick easily, made this the most immersive fighting game I have played. The only part that gave me pause was the grappling gameplay, which killed the momentum in most fights. The Flow State amplifying system didn’t hamper the experience, but I also felt like it made more sense for an arcade fighter, not this. Easily the most annoying thing about UFC 6 was its laggy menus, which I hope get some sort of fix later. Returning series veterans might have a completely different experience from me. But for a new fan like me looking to climb ranks and see fighters get floored in spectacular ways, UFC 6 doesn’t miss a step. EA Sports UFC 6 is releasing on June 19 across Xbox Series X|S and PlayStation 5 for $69.99. Ultimate Edition owners can already jump in via advanced access. This review was conducted on the Xbox Series X version of the game provided by EA.
  • Recent Achievements

    • Week One Done
      ssd21345 earned a badge
      Week One Done
    • Contributor
      MarkHughes4096 went up a rank
      Contributor
    • Dedicated
      jordanspringer earned a badge
      Dedicated
    • Rookie
      Rimplesnort went up a rank
      Rookie
    • One Year In
      Markus94287 earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      486
    2. 2
      +Edouard
      173
    3. 3
      PsYcHoKiLLa
      138
    4. 4
      ATLien_0
      94
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!