TweetFollow Us on Twitter

The Terminal

Volume Number: 20 (2004)
Issue Number: 12
Column Tag: Programming

QuickTime Toolkit

The Terminal: Developing Command-Line QuickTime Tools

by Tim Monroe

Introduction

When you think of QuickTime applications, you're likely to think of high-profile movie editing and playback applications like Final Cut Pro or iMovie or QuickTime Player, which are dripping with glitzy user interfaces and scads of controls for manipulating movie settings. Or maybe you'd think of some more focused utility program like MakeRefMovie or one of the many applications developed in this series of articles to illustrate particular aspects of the QuickTime APIs. Possibly the last thing you'd think of is the lowly command-line tool, that is, a program that can be run in a Terminal window on Mac OS X or using the DOS command line interface on Windows. After all, these tools -- almost by definition -- have no graphical user interface; what can you do with QuickTime with no user interface?

Quite a bit, as it turns out. Although command-line tools cannot directly display visual movie data, they can very easily play sounds and they can be extremely useful for other sorts of movie-related tasks. Indeed, command-line tools can be used for virtually any QuickTime task other than video movie playback, including:

  • creating movies from a set of images
  • modifying existing movies by recompressing or transcoding the movie data
  • adding visual effects to movies
  • reporting information about installed components
  • automating API testing and validation

Command-line tools offer several nice advantages over GUI-based applications. They are generally easier to write, and they are almost always less demanding in terms of memory and other system resources when they are running. They are also easy to execute at specific times (using scheduling facilities like cron) and can easily handle batch processing tasks. If you need to modify a large number of movie files (perhaps to export them under a new format or add copyright information to each of them), you should certainly consider writing a command-line tool instead of a full-fledged GUI-based application.

In this article, I want to take a look at some of the issues involved in writing command-line tools for handling QuickTime-related tasks. In this article we'll get the ball rolling by writing a tool called pics2mov that creates a QuickTime movie from a series of still images. We'll also see how to write a tool, addFilter, that adds a visual effect (such as the film-noise filter) to an existing movie. We've considered both of these tasks in earlier articles, so here we can focus on the specific issues that arise when implementing them with command-line tools.

In an upcoming article, we'll take a look at a few additional topics related to calling QuickTime APIs from command-line tools. We'll consider the Windows side of the coin, and we'll investigate a clever way in which, contrary to my earlier claims, we can indeed display QuickTime video content using command-line tools.

Command-Line Scripting

Before we launch into building our own QuickTime-savvy command-line tools from scratch, let's first take a moment to consider the command-line capabilities of several scripting languages we have investigated in past articles. In particular, let's take a quick second look at AppleScript and Tcl to uncover some useful ways of executing scripts on the command line.

Using AppleScript

In a previous article ("Studio 54" in MacTech, June 2003), we saw how to use AppleScript scripts to drive both our QTShell sample application and the QuickTime Player application. In that case, we used the Script Editor application to create and test our scripts, from which we later created double-clickable applets. It's also possible to compile and execute AppleScript scripts on the command line. Mac OS X provides the osascript command for executing script files that contain text or precompiled scripts written in AppleScript (or in any other language that conforms to the Open Scripting Architecture). For instance, suppose that the file openQTShell contains these lines of text:

tell application "QTShell" open the file "Kritik:cloud.mov" activate end tell

We can execute this script like so:

[Kant:~] monroe% osascript openQTShell

We can also specify lines of AppleScript directly on the command line, like this:

[Kant:~] monroe% osascript -e 'tell app "QTShell" to open \ "Kritik:cloud.mov"'

Multiple -e arguments are allowed, so we can build up multi-line scripts and execute them with a single osascript command. See the osascript(1) manual page for more details.

Using Tcl

We took a look at building QuickTime applications using Tcl/Tk and the QuickTimeTcl extension in two recent articles (in MacTech 2004, nos. 6 and 7). I noted in the first article that QuickTimeTcl can be used as a pure scripting tool, with no Tk-based graphical user interface, but we postponed looking at that way of using Tcl and QuickTimeTcl. Now we can tie up that loose end.

Listing 1 shows a Tcl script listComps.tcl, which prints a list of all installed components.

Listing 1: Finding installed components listComps.tcl #!/bin/sh # the next line
restarts using wish \ exec wish "$0" "$@"

package require QuickTimeTcl

wm withdraw .

set comps [::quicktimetcl::info components $argv] foreach comp $comps { set txt {} foreach {key
value} $comp { append txt "  $value     " }

puts stdout $txt }

exit

The key to this script is the QuickTimeTcl components command, which returns a list of all the components that are available on the target machine. Each element in the list is of this form:

{-type type -subtype subType -manufacture manufacturer -name name} 

As you can see, the listComps.tcl script iterates over the list returned by the components command and extracts the associated values for these four keys into a string, which it prints to the standard output file. Notice that we call the withdraw command so that the toplevel window "." is not displayed by Wish.

Listing 1: Finding installed components

listComps.tcl
#!/bin/sh
# the next line restarts using wish \
exec wish "$0" "$@"

package require QuickTimeTcl

wm withdraw .

set comps [::quicktimetcl::info components $argv]
foreach comp $comps {
   set txt {}
   foreach {key value} $comp {
      append txt "  $value     "
   }
   
   puts stdout $txt
}

exit

The key to this script is the QuickTimeTcl components command, which returns a list of all the components that are available on the target machine. Each element in the list is of this form:

{-type type -subtype subType -manufacture manufacturer -name name}

As you can see, the listComps.tcl script iterates over the list returned by the components command and extracts the associated values for these four keys into a string, which it prints to the standard output file. Notice that we call the withdraw command so that the toplevel window "." is not displayed by Wish.

Here's a sample run of listComps, looking for the installed graphics exporters:

[Kant:~] monroe% listComps.tcl grex
  grex       .SGI       appl       SGI     
  grex       8BPS       appl       Photoshop     
  grex       BMPf       appl       BMP     
  grex       JPEG       appl       JPEG     
  grex       PICT       appl       PICT     
  grex       PNGf       appl       PNG     
  grex       PNTG       appl       MacPaint     
  grex       TIFF       appl       TIFF     
  grex       TPIC       appl       TGA     
  grex       base       appl       Base     
  grex       jp2        appl       JP2     
  grex       qtif       appl       QuickTime Image

Notice that the desired component type (in this case "grex") is passed to the components command as the value of the argv variable. This is a special variable maintained by Tcl for the purpose of passing command-line arguments to a script. If we do not specify a component type on the command line, then the components command will report information about all installed components. On current versions of Mac OS X, that's well over 700 components!

It would be nice to be able to specify multiple component types on the command line, like this:

[Kant:~] monroe% listComps.tcl grex grip

In this case, the argv variable will contain a list. However, the components command does not currently support multiple arguments, so it will ignore all but the first component type in that list. I'll leave it as an exercise for the reader to fix listComps so that it works as desired with multiple component types as command-line arguments.

Slide Show Movies

So, we can now see how to access the services of AppleScript and Tcl from the command line. Precisely how much QuickTime-related work we can accomplish using these services is of course a function of the richness of the AppleScript terminology supported by the available applications and of the capabilities of the commands provided by QuickTimeTcl. In neither case do we have access to anywhere near the entire QuickTime API set. So for arbitrary movie creation and manipulation by a command-line tool, we'll need to build a command-line tool from scratch.

Happily, this is a very easy thing to do. In this section, I'll illustrate that by building a command-line tool that creates a movie from a series of still images. I want to be able to type things like this, specifying an output movie file and some number of input image files:

[Kant:~] monroe% pics2mov file:///Volumes/Kritik/ABC.mov \
                                    file:///Volumes/Kritik/A.jpg \
                                    file:///Volumes/Kritik/B.jpg \ 
                                    file:///Volumes/Kritik/C.jpg

For ease of implementation, I am requiring that all input and output files be specified by absolute URLs. In this case I'm using file URLs to pick out some local files, but URLs for remote images (for instance http URLs) would work just fine.

You may recall that we learned how to build slide show movies in an earlier article ("She's Gotta Have It" in MacTech, November 2002). There, we constructed a droplet application, called DropPix, that built a slide show movie from the images files dropped onto it. Because we wanted to see how to work directly with media sample references, the resulting code was fairly lengthy. In the current case, we can get by using just five interesting functions:

OpenMovieStorage, NewMovieFromDataRef, ScaleMovieSegment, InsertMovieSegment, and UpdateMovieInStorage. Then to create a self-contained movie, we'll call FlattenMovieDataToDataRef.

Creating a Project

We're getting ahead of ourselves, however. First we need to create a new Xcode project and add some frameworks to it to support QuickTime. Only then will we be in a position to start writing some code. Let's launch Xcode and select "New Project..." in File menu. Then choose a Core Foundation tool, as shown in Figure 1.


Figure 1: Creating a new project.

Let's call the new project "pics2mov", as in Figure 2.


Figure 2: Naming the new project

At this point, the new Xcode project window appears (Figure 3).


Figure 3: The pics2mov project window

Notice that the project contains only one source code file, main.c. The default implementation includes the header file CoreFoundation.h and just calls CFShow to print a message on the standard output. The default implementation also links against only one framework, CoreFoundaton.framework.

We will be using QuickTime and Carbon APIs in our tool, so we need to add to our project two additional frameworks, QuickTime.framework and Carbon.framework. Select "Add Frameworks..." in Project menu and navigate to /System/Library/Frameworks; add the two additional frameworks. In main.c, set the header file includes to look like this:

#include <CoreFoundation/CoreFoundation.h>
#include <Carbon/Carbon.h>
#include <QuickTime/QuickTime.h>
#include <stdio.h>
#include <unistd.h>

Handling Command-Line Options

We included unistd.h so that we can use the getopt system call, which provides a standard mechanism for handling command-line options. The pics2mov tool will support just one option, -d, for specifying the duration of each slide in the movie. If no such option is specified on the command line, we'll use the default duration of 5 seconds:

#define kImageDuration 5

If however a -d option does occur on the command line, then the code in Listing 2 will come into play.

Listing 2: Handling command-line options

main
gProgName = argv[0];
   
while ((myChar = getopt(argc, (char * const *)argv, "d:")) 
                              != -1) {
   switch (myChar) {
      case 'd':
         myDuration = atoi(optarg);
         if (myDuration <= 0) {
            fprintf(stderr, "%s: illegal duration value.\n", 
                                                         gProgName);
            exit(2);
         }
         break;

      default:
         usage();
   }
}   
   
argc -= optind;
argv += optind;

The third parameter to the getopt function is a string that indicates which characters are to be considered as valid command-line options. If a character is followed by a colon (:), as above, then an argument is expected to follow the option character. In our case, we expect that the user will specify an integer that indicates the desired duration, in seconds, of each frame in the movie. For complete information on this method of handling options, see getopt(3).

Initializing QuickTime

Since we'll be using QuickTime APIs, we need to initialize QuickTime in the standard way:

EnterMovies();

QuickTime always wants a valid graphics port to be set. So even though we are constructing a command-line tool that will never actually draw any image or movie data anywhere, we still need to make sure that a graphics port exists and is set. We can do that with these two Carbon functions:

CGrafPtr myPort = CreateNewPort();
MacSetPort(myPort);

Creating the Output Movie File

In broadest outlines, our pics2mov tool will operate like this: create a new empty movie file and a new empty movie associated with that file. Then open each image file as a movie (using the NewMovieFromDataRef function) and scale that movie to the desired duration. Call InsertMovieSegment to insert the scaled movie into the final output movie. Once we've saved the resulting movie as a self-contained movie file, we're done.

Recall that the output movie file name is specified on the command line as an absolute URL. We can convert the C string specified on the command line into a CFStringRef like this:

myMovieStringRef = CFStringCreateWithCString(NULL, argv[0], 
         kCFStringEncodingMacRoman);

Then we can use QuickTime's data reference utilities to create a data reference from the CFStringRef:

myErr = QTNewDataReferenceFromURLCFString(myMovieStringRef, 
         0, &myDataRef, &myDataRefType);

Finally, we can create a new movie file at that location using the CreateMovieStorage function, passing in the new data reference and data reference type. Notice that CreateMovieStorage returns in its last parameter an identifier for a new empty movie.

myErr = CreateMovieStorage(myDataRef, myDataRefType, 
         FOUR_CHAR_CODE('TVOD'), smCurrentScript, myFlags, 
         &myHandler, &myMovie);

For more information about the movie storage functions (like CreateMovieStorage), see "Modern Times" in MacTech, 2004 no. 5.

Adding Images to the Movie

Now we are ready to start adding frames to the empty movie. As mentioned above, we want to open each image file as a movie, so that we can scale it and insert it into the output movie file. As in the previous subsection, we'll use CFStringCreateWithCString and QTNewDataReferenceFromURLCFString to get a data reference for an image file. Then we'll call OpenMovieStorage and NewMovieFromDataRef to open the image file as a movie:

myErr = OpenMovieStorage(myImageDataRef, 
         myImageDataRefType, kDataHCanRead, &myImageHandler);
      
myErr = NewMovieFromDataRef(&myImageMovie, newMovieActive, 
         NULL, myImageDataRef, myImageDataRefType);

Once we've got the image in the form of a movie, it's child's play to add the image to the output movie for the desired duration:

ScaleMovieSegment(myImageMovie, 0, 
         GetMovieDuration(myImageMovie), 
         myDuration * GetMovieTimeScale(myImageMovie));
      
myErr = InsertMovieSegment(myImageMovie, myMovie, 0, 
         GetMovieDuration(myImageMovie), 
         GetMovieDuration(myMovie));

Saving the Movie

We're almost done creating our slide show movie. All that remains is to call UpdateMovieInStorage to update the movie atom in the movie file:

myErr = UpdateMovieInStorage(myMovie, myHandler);

Then we can call FlattenMovieDataToDataRef to create a self-contained movie file:

FlattenMovieDataToDataRef(myMovie,
            flattenAddMovieToDataFork | 
                           flattenForceMovieResourceBeforeMovieData,
            myDataRef, myDataRefType, FOUR_CHAR_CODE('TVOD'),
            smCurrentScript, myFlags);

And we are done.

Putting It All Together

Listing 3 shows the complete source code for the pics2mov command-line tool.

Listing 3: Creating a movie file from a set of images

main.c
#include <CoreFoundation/CoreFoundation.h>
#include <Carbon/Carbon.h>
#include <QuickTime/QuickTime.h>
#include <stdio.h>
#include <unistd.h>

// duration (in seconds) of each image in movie; -d command-line option overrides this
#define kImageDuration      5         

// global variables
const char *            gProgName;

void usage (void);
void usage (void)
{
   printf("%s: Create a movie from a sequence of images.\n", 
                     gProgName);
   printf("USAGE: %s [-d duration] movie image1...imageN\n", 
                     gProgName);
   exit(-1);
}

int main (int argc, const char * argv[])
{
   CGrafPtr            myPort = NULL;
   CFStringRef         myMovieStringRef;
  Movie               myMovie = NULL;
   Handle               myDataRef = NULL;
   OSType               myDataRefType;
   DataHandler         myHandler = NULL;
   long                  myFlags = createMovieFileDeleteCurFile | 
                                    createMovieFileDontCreateResFile;
   long                  myDuration = kImageDuration;
   short               myIndex;
   char                  myChar;
   OSErr               myErr = noErr;

   // process any command-line options
   gProgName = argv[0];
   
   while ((myChar = getopt(argc, (char * const *)argv, 
                                                            "d:")) != -1) {
      switch (myChar) {
         case 'd':
            myDuration = atoi(optarg);
            if (myDuration <= 0) {
               fprintf(stderr, "%s: illegal duration.\n", 
                                                gProgName);
               exit(2);
            }
            break;

         default:
            usage();
      }
   }   
   
   argc -= optind;
   argv += optind;

   // make sure we got at least one movie filename and one image filename
   if (argc < 2) {
      usage();
   }
   
   // set up for QuickTime
   EnterMovies();
   
   // QuickTime always wants a valid graphics port to be set; let's make her happy
   myPort = CreateNewPort();
   MacSetPort(myPort);
   
   // create a new empty movie to contain the source images;
   // argv[0] is the destination file URL
   myMovieStringRef = CFStringCreateWithCString(NULL, 
                                 argv[0], kCFStringEncodingMacRoman);
   myErr = QTNewDataReferenceFromURLCFString(
            myMovieStringRef, 0, &myDataRef, &myDataRefType);
   if (myErr != noErr)
      goto bail;

   myErr = CreateMovieStorage(myDataRef, myDataRefType, 
                  FOUR_CHAR_CODE('TVOD'), smCurrentScript, 
                  myFlags, &myHandler, &myMovie);
   if (myErr != noErr)
      goto bail;
   
   // add images to the movie;
   // argv[1]... are the image files to concatenate into the destination movie
   for (myIndex = 1; myIndex < argc; myIndex++) {
      CFStringRef   myImageStringRef;
      Movie            myImageMovie = NULL;
      Handle            myImageDataRef = NULL;
      OSType            myImageDataRefType;
      DataHandler   myImageHandler = NULL;
      
      // open the image as a movie
      myImageStringRef = CFStringCreateWithCString(NULL, 
               argv[myIndex], kCFStringEncodingMacRoman);
      myErr = QTNewDataReferenceFromURLCFString(
         myImageStringRef, 0, &myImageDataRef, 
         &myImageDataRefType);
      if (myErr != noErr)
         goto bailLoop;
      
      myErr = OpenMovieStorage(myImageDataRef, 
         myImageDataRefType, kDataHCanRead, &myImageHandler);
      if (myErr != noErr)
         goto bailLoop;
      
      myErr = NewMovieFromDataRef(&myImageMovie, 
         newMovieActive, NULL, myImageDataRef, 
         myImageDataRefType);
      if (myErr != noErr)
         goto bailLoop;
      
      // scale the image movie to the desired duration
      ScaleMovieSegment(myImageMovie, 0, 
         GetMovieDuration(myImageMovie), 
         myDuration * GetMovieTimeScale(myImageMovie));
      
      // insert the scaled image movie at the end of the target movie
      myErr = InsertMovieSegment(myImageMovie, myMovie, 0, 
         GetMovieDuration(myImageMovie), 
         GetMovieDuration(myMovie));

bailLoop:   
      if (myImageMovie != NULL)
         DisposeMovie(myImageMovie);
      
      if (myImageDataRef != NULL)
         DisposeHandle(myImageDataRef);
      
      CFRelease(myImageStringRef);
   }
   
   // save the movie
   myErr = UpdateMovieInStorage(myMovie, myHandler);
   
   CloseMovieStorage(myHandler);

   // now flatten it
   FlattenMovieDataToDataRef(myMovie,
            flattenAddMovieToDataFork | 
                           flattenForceMovieResourceBeforeMovieData,
            myDataRef,
            myDataRefType,
            FOUR_CHAR_CODE('TVOD'),
            smCurrentScript,
            myFlags);
   
bail:
   CFRelease(myMovieStringRef);

   if (myMovie != NULL)
      DisposeMovie(myMovie);
   
   if (myDataRef != NULL)
      DisposeHandle(myDataRef);
   
   if (myPort != NULL)
      DisposePort(myPort);
   
   exit(myErr);
}

Notice that we need to release the various CFStringRef objects that we open, and that we need to dispose of the graphics port we opened at the beginning of our tool.

It's probably worth mentioning that we really don't even need to create an Xcode project in order to build command-line tools. We could just as easily have used our favorite text editor to enter the code in Listing 3 into a file called main.c; then we can build our tool like this:

[Kant:~] monroe% cc -o pics2mov -g main.c \
                           -framework Carbon -framework QuickTime \
                           -framework CoreFoundation

Movie Fiilters

Suppose now that we want to write a command-line tool addFilter that adds a visual effect -- perhaps the film-noise filter or the blur effect -- to an existing movie. In this case, we just need to open the target movie using the technique employed in the previous section and then call this function:

QTEffects_AddFilterToMovie(myMovie, myType);

The QTEffects_AddFilterToMovie function is a slightly more general version of the QTEffects_AddFilmNoiseToMovie function that we put together in an earlier article ("F/X" in MacTech, September 2001). So really our work is done once we determine how to specify the desired effect. As we'll see, we also need to tweak QTEffects_AddFilterToMovie so that it correctly handles scaled movie segments.

Handling Command-Line Options

In addFilter, we'll support a -e command-line option, which specifies the desired effect. So we could call our tool like this:

[Kant:~] monroe% addFilter -e fmns \
                                    file:///Volumes/Kritik/ABC.mov

We'll use the getopt function to process the -e option, as before. This time, however, instead of calling atoi to convert the argument into a number, we want to convert the four-character string into a value of type OSType. We can do that like this:

case 'e':
   myType = string2ostype(optarg);
   break;

Listing 4 shows a quick-and-dirty implementation of string2ostype.

Listing 4: Converting a string into an OSType

string2ostype
#define kMaxOSTypeLength   5   // length of an OSType (plus terminating null)

OSType string2ostype (char *theString)
{
   unsigned long         myType = 0L;
   
   if (strlen(theString) < kMaxOSTypeLength - 1)
      return((OSType)myType);
   
   myType += theString[3] << 0;
   myType += theString[2] << 8;
   myType += theString[1] << 16;
   myType += theString[0] << 24;
   
   return((OSType)myType);
}

This implementation of string2ostype is not a very good general-purpose method of converting strings into values of type OSType, since it assumes that all one-source effects have exactly four characters in their types (like 'fmns' and 'blur'). A better version is left as an exercise for the reader.

Scaling the Effect

I mentioned that QTEffects_AddFilterToMovie, which does all the heavy lifting in the addFilter tool, is based heavily on QTEffects_AddFilmNoiseToMovie. The newer function takes a parameter that specifies the effect type, and it also correctly handles movies that contain scaled segments.

The existing function, QTEffects_AddFilmNoiseToMovie, adds the effect description to the effects track like this:

myErr = AddMediaSample(myMedia, (Handle)myEffectDesc, 0, 
         GetHandleSize((Handle)myEffectDesc), 
         GetMediaDuration(GetTrackMedia(mySrcTrack)), 
         (SampleDescriptionHandle)mySampleDesc, 1, 0, 
         &mySampleTime);

The fifth parameter specifies the duration of the media sample to be added. As you can see, we use this code to determine that duration:

GetMediaDuration(GetTrackMedia(mySrcTrack))

It turns out that this way of determining the duration of the effects track will not work correctly on movies that contain scaled segments, like the movies that are created by our pics2mov tool. Instead, we need to take the duration of the movie and convert it to the media time scale, like this:

myMediaDuration = (GetMovieDuration(theMovie) * 
                                             GetMediaTimeScale(myMedia)) 
                              / GetMovieTimeScale(theMovie);

Passing this value as the media duration in AddMediaSample results in a movie that operates as expected. (See this month's code for an Xcode project and the full source code for the addFilter tool.)

Conclusion

Building a command-line tool that accesses QuickTime APIs is really very straightforward. Everything works pretty much as you'd expect. The only non-obvious "gotcha" is the requirement that a valid graphics port be set whenever calling QuickTime APIs.

In this article, we've briefly investigated ways to call AppleScript or Tcl scripts on the command line, and we've seen how to build tools to create movies from still images and to apply video effects to existing movies. In the next article, we'll continue this investigation by constructing a Windows command-line tool and by seeing how a command-line tool can actually display QuickTime video content.


Tim Monroe is a member of the QuickTime engineering team at Apple. You can contact him at monroe@mactech.com. The views expressed here are not necessarily shared by his employer.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Ableton Live 11.3.11 - Record music usin...
Ableton Live lets you create and record music on your Mac. Use digital instruments, pre-recorded sounds, and sampled loops to arrange, produce, and perform your music like never before. Ableton Live... Read more
Affinity Photo 2.2.0 - Digital editing f...
Affinity Photo - redefines the boundaries for professional photo editing software for the Mac. With a meticulous focus on workflow it offers sophisticated tools for enhancing, editing and retouching... Read more
SpamSieve 3.0 - Robust spam filter for m...
SpamSieve is a robust spam filter for major email clients that uses powerful Bayesian spam filtering. SpamSieve understands what your spam looks like in order to block it all, but also learns what... Read more
WhatsApp 2.2338.12 - Desktop client for...
WhatsApp is the desktop client for WhatsApp Messenger, a cross-platform mobile messaging app which allows you to exchange messages without having to pay for SMS. WhatsApp Messenger is available for... Read more
Fantastical 3.8.2 - Create calendar even...
Fantastical is the Mac calendar you'll actually enjoy using. Creating an event with Fantastical is quick, easy, and fun: Open Fantastical with a single click or keystroke Type in your event details... Read more
iShowU Instant 1.4.14 - Full-featured sc...
iShowU Instant gives you real-time screen recording like you've never seen before! It is the fastest, most feature-filled real-time screen capture tool from shinywhitebox yet. All of the features you... Read more
Geekbench 6.2.0 - Measure processor and...
Geekbench provides a comprehensive set of benchmarks engineered to quickly and accurately measure processor and memory performance. Designed to make benchmarks easy to run and easy to understand,... Read more
Quicken 7.2.3 - Complete personal financ...
Quicken makes managing your money easier than ever. Whether paying bills, upgrading from Windows, enjoying more reliable downloads, or getting expert product help, Quicken's new and improved features... Read more
EtreCheckPro 6.8.2 - For troubleshooting...
EtreCheck is an app that displays the important details of your system configuration and allow you to copy that information to the Clipboard. It is meant to be used with Apple Support Communities to... Read more
iMazing 2.17.7 - Complete iOS device man...
iMazing is the world’s favourite iOS device manager for Mac and PC. Millions of users every year leverage its powerful capabilities to make the most of their personal or business iPhone and iPad.... Read more

Latest Forum Discussions

See All

Motorsport legends NASCAR announce an up...
NASCAR often gets a bad reputation outside of America, but there is a certain charm to it with its close side-by-side action and its focus on pure speed, but it never managed to really massively break out internationally. Now, there's a chance... | Read more »
Skullgirls Mobile Version 6.0 Update Rel...
I’ve been covering Marie’s upcoming release from Hidden Variable in Skullgirls Mobile (Free) for a while now across the announcement, gameplay | Read more »
Amanita Design Is Hosting a 20th Anniver...
Amanita Design is celebrating its 20th anniversary (wow I’m old!) with a massive discount across its catalogue on iOS, Android, and Steam for two weeks. The announcement mentions up to 85% off on the games, and it looks like the mobile games that... | Read more »
SwitchArcade Round-Up: ‘Operation Wolf R...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for September 21st, 2023. I got back from the Tokyo Game Show at 8 PM, got to the office here at 9:30 PM, and it is presently 11:30 PM. I’ve done what I can today, and I hope you enjoy... | Read more »
Massive “Dark Rebirth” Update Launches f...
It’s been a couple of months since we last checked in on Diablo Immortal and in that time the game has been doing what it’s been doing since its release in June of last year: Bringing out new seasons with new content and features. | Read more »
‘Samba De Amigo Party-To-Go’ Apple Arcad...
SEGA recently released Samba de Amigo: Party-To-Go () on Apple Arcade and Samba de Amigo: Party Central on Nintendo Switch worldwide as the first new entries in the series in ages. | Read more »
The “Clan of the Eagle” DLC Now Availabl...
Following the last paid DLC and free updates for the game, Playdigious just released a new DLC pack for Northgard ($5.99) on mobile. Today’s new DLC is the “Clan of the Eagle" pack that is available on both iOS and Android for $2.99. | Read more »
Let fly the birds of war as a new Clan d...
Name the most Norse bird you can think of, then give it a twist because Playdigious is introducing not the Raven clan, mostly because they already exist, but the Clan of the Eagle in Northgard’s latest DLC. If you find gathering resources a... | Read more »
Out Now: ‘Ghost Detective’, ‘Thunder Ray...
Each and every day new mobile games are hitting the App Store, and so each week we put together a big old list of all the best new releases of the past seven days. Back in the day the App Store would showcase the same games for a week, and then... | Read more »
Urban Open-World RPG ‘Project Mugen’ Fro...
Last month, NetEase Games revealed a new free to play open world RPG tentatively titled Project Mugen for mobile, PC, and consoles. I’ve liked the setting and aesthetic since its first trailer, and today’s new video has the Game Designer and... | Read more »

Price Scanner via MacPrices.net

Apple AirPods 2 with USB-C now in stock and o...
Amazon has Apple’s 2023 AirPods Pro with USB-C now in stock and on sale for $199.99 including free shipping. Their price is $50 off MSRP, and it’s currently the lowest price available for new AirPods... Read more
New low prices: Apple’s 15″ M2 MacBook Airs w...
Amazon has 15″ MacBook Airs with M2 CPUs and 512GB of storage in stock and on sale for $1249 shipped. That’s $250 off Apple’s MSRP, and it’s the lowest price available for these M2-powered MacBook... Read more
New low price: Clearance 16″ Apple MacBook Pr...
B&H Photo has clearance 16″ M1 Max MacBook Pros, 10-core CPU/32-core GPU/1TB SSD/Space Gray or Silver, in stock today for $2399 including free 1-2 day delivery to most US addresses. Their price... Read more
Switch to Red Pocket Mobile and get a new iPh...
Red Pocket Mobile has new Apple iPhone 15 and 15 Pro models on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide service using all the major... Read more
Apple continues to offer a $350 discount on 2...
Apple has Studio Display models available in their Certified Refurbished store for up to $350 off MSRP. Each display comes with Apple’s one-year warranty, with new glass and a case, and ships free.... Read more
Apple’s 16-inch MacBook Pros with M2 Pro CPUs...
Amazon is offering a $250 discount on new Apple 16-inch M2 Pro MacBook Pros for a limited time. Their prices are currently the lowest available for these models from any Apple retailer: – 16″ MacBook... Read more
Closeout Sale: Apple Watch Ultra with Green A...
Adorama haș the Apple Watch Ultra with a Green Alpine Loop on clearance sale for $699 including free shipping. Their price is $100 off original MSRP, and it’s the lowest price we’ve seen for an Apple... Read more
Use this promo code at Verizon to take $150 o...
Verizon is offering a $150 discount on cellular-capable Apple Watch Series 9 and Ultra 2 models for a limited time. Use code WATCH150 at checkout to take advantage of this offer. The fine print: “Up... Read more
New low price: Apple’s 10th generation iPads...
B&H Photo has the 10th generation 64GB WiFi iPad (Blue and Silver colors) in stock and on sale for $379 for a limited time. B&H’s price is $70 off Apple’s MSRP, and it’s the lowest price... Read more
14″ M1 Pro MacBook Pros still available at Ap...
Apple continues to stock Certified Refurbished standard-configuration 14″ MacBook Pros with M1 Pro CPUs for as much as $570 off original MSRP, with models available starting at $1539. Each model... Read more

Jobs Board

Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Retail Key Holder- *Apple* Blossom Mall - Ba...
Retail Key Holder- APPLE BLOSSOM MALL Brand: Bath & Body Works Location: Winchester, VA, US Location Type: On-site Job ID: 03YM1 Job Area: Store: Sales and Support Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.