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