Update email address
This commit is contained in:
parent
f48f3d0ec8
commit
5c4b3997ed
2
README
2
README
|
|
@ -1,6 +1,6 @@
|
|||
bpm-tools: Tempo (Beats Per Minute) analysis tools
|
||||
|
||||
(C) Copyright 2012 Mark Hills <mark@pogo.org.uk>
|
||||
(C) Copyright 2012 Mark Hills <mark@xwax.org>
|
||||
|
||||
See the COPYING file for licensing terms.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012 Mark Hills <mark@pogo.org.uk>
|
||||
# Copyright (C) 2012 Mark Hills <mark@xwax.org>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
|
|
|
|||
4
bpm-tag
4
bpm-tag
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012 Mark Hills <mark@pogo.org.uk>
|
||||
# Copyright (C) 2012 Mark Hills <mark@xwax.org>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
|
|
@ -26,7 +26,7 @@ set -e
|
|||
usage()
|
||||
{
|
||||
cat <<END
|
||||
bpm-tag (C) Copyright 2012 Mark Hills <mark@pogo.org.uk>
|
||||
bpm-tag (C) Copyright 2012 Mark Hills <mark@xwax.org>
|
||||
|
||||
Usage: bpm-tag [options] <file>
|
||||
Tag an audio file with tempo (in beats-per-minute, BPM)
|
||||
|
|
|
|||
4
bpm.c
4
bpm.c
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2012 Mark Hills <mark@pogo.org.uk>
|
||||
* Copyright (C) 2012 Mark Hills <mark@xwax.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
#include <sysexits.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define BANNER "bpm (C) Copyright 2012 Mark Hills <mark@pogo.org.uk>"
|
||||
#define BANNER "bpm (C) Copyright 2012 Mark Hills <mark@xwax.org>"
|
||||
#define NAME "bpm"
|
||||
|
||||
#define RATE 44100 /* of input data */
|
||||
|
|
|
|||
Loading…
Reference in New Issue