This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Music Player | |
// This class will stream an MP3 file over HTTP using the Direct Show API | |
// | |
////////////////////////////// | |
// | |
// MusicPlayer.h | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* StickyNoteView | |
* | |
* Created by Jim McGowan on 04/10/2007. | |
* Updated 05/09/2012 for Reference Tracker 2 | |
* | |
* This code uses ARC | |
* | |
* Copyright (c) 2006 - 2010 Jim McGowan | |
* All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// wavecuepoint.c | |
// Created by Jim McGowan on 29/11/12. | |
// [email protected] | |
// [email protected] | |
// | |
// This function reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line) | |
// and creates a new .wav file with embedded cue points for each location. The code is standard, portable C. | |
// | |
// For a full description see http://bleepsandpops.com/post/37792760450/adding-cue-points-to-wav-files-in-c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// EchoPrint Cocoa Example | |
// Created by Jim McGowan on 08/07/2011. | |
// jim at bleepsandpops dot com | |
// | |
// A simple example of using the EchoPrint Codegen to fingerprint an mp3 file and | |
// look for a match on EchoNest. For OS X or iOS. Error checking removed for brevity. | |
// | |
// Requires the 'Other C Flags' XCode build setting "-x objective-c++" to compile as Objective-C++ | |
// |