add sabagen
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1 +1,3 @@
|
||||
.venv/*
|
||||
._*
|
||||
.DS*
|
||||
|
||||
125
sabagen.py
Normal file
125
sabagen.py
Normal file
@@ -0,0 +1,125 @@
|
||||
import tkinter as tk
|
||||
from tkinter import messagebox, filedialog
|
||||
import subprocess
|
||||
import os
|
||||
|
||||
CHEAT_SHEET = '''; === SBaGen チートシート ===
|
||||
; 書式: 時間 左-右 チャンネル オプション
|
||||
; 例: +0:00:00 400-410 L
|
||||
|
||||
; 左400Hz, 右410Hz → 10Hzビート(L=左基準)
|
||||
+0:00:00 400-410 L
|
||||
|
||||
; 時間経過後の周波数変化(10分後に420Hz/430Hzへ)
|
||||
+0:10:00 420-430 L
|
||||
|
||||
; 音声終了(20分後)
|
||||
+0:20:00 off
|
||||
|
||||
; 背景音の追加(最初に記述)
|
||||
_ = mix(nature.wav, 0.3)
|
||||
|
||||
; ノイズを加える(例: white, pink)
|
||||
_ = mix(white, 0.1)
|
||||
|
||||
; チャンネル指定:
|
||||
; L = 左ベース(左耳に指定周波数、右に +差分)
|
||||
; R = 右ベース
|
||||
; S = ステレオ完全分離(各耳に別の周波数)
|
||||
'''
|
||||
|
||||
class SBGEditor:
|
||||
def __init__(self, master):
|
||||
self.master = master
|
||||
master.title("SBaGen GUIエディタ(環境音対応)")
|
||||
master.geometry("640x580")
|
||||
|
||||
self.steps = []
|
||||
self.env_file = None
|
||||
self.env_volume = tk.DoubleVar(value=0.3)
|
||||
|
||||
self.frame = tk.Frame(master)
|
||||
self.frame.pack(pady=10)
|
||||
|
||||
tk.Label(self.frame, text="時間(+HH:MM:SS)").grid(row=0, column=0)
|
||||
tk.Label(self.frame, text="左耳周波数").grid(row=0, column=1)
|
||||
tk.Label(self.frame, text="右耳周波数").grid(row=0, column=2)
|
||||
|
||||
self.time_entry = tk.Entry(self.frame)
|
||||
self.left_entry = tk.Entry(self.frame)
|
||||
self.right_entry = tk.Entry(self.frame)
|
||||
self.time_entry.grid(row=1, column=0)
|
||||
self.left_entry.grid(row=1, column=1)
|
||||
self.right_entry.grid(row=1, column=2)
|
||||
|
||||
tk.Button(self.frame, text="追加", command=self.add_step).grid(row=1, column=3, padx=10)
|
||||
|
||||
env_frame = tk.LabelFrame(master, text="🔊 環境音の追加(mix)", padx=10, pady=10)
|
||||
env_frame.pack(padx=10, pady=10, fill="x")
|
||||
|
||||
tk.Button(env_frame, text="環境音を選択(WAV/MP3)", command=self.select_env_file).pack(pady=5)
|
||||
|
||||
tk.Label(env_frame, text="音量:").pack()
|
||||
tk.Scale(env_frame, from_=0.0, to=1.0, resolution=0.01, variable=self.env_volume, orient="horizontal").pack(fill="x")
|
||||
|
||||
self.env_label = tk.Label(env_frame, text="現在: 未選択")
|
||||
self.env_label.pack()
|
||||
|
||||
# スクリプト表示欄
|
||||
self.script_box = tk.Text(master, height=20)
|
||||
self.script_box.pack(padx=10, pady=10, fill="both", expand=True)
|
||||
self.script_box.insert("1.0", CHEAT_SHEET)
|
||||
|
||||
btn_frame = tk.Frame(master)
|
||||
btn_frame.pack(pady=10)
|
||||
|
||||
tk.Button(btn_frame, text="💾 保存(.sbg)", command=self.save_file, width=20).pack(side="left", padx=10)
|
||||
tk.Button(btn_frame, text="▶ 再生(sbagen)", command=self.play_sbagen, width=20).pack(side="right", padx=10)
|
||||
|
||||
def add_step(self):
|
||||
time = self.time_entry.get()
|
||||
left = self.left_entry.get()
|
||||
right = self.right_entry.get()
|
||||
if not (time and left and right):
|
||||
messagebox.showwarning("未入力", "すべてのフィールドを入力してください。")
|
||||
return
|
||||
line = f"{time} {left}-{right} L"
|
||||
self.script_box.insert("end", line + "\n")
|
||||
self.steps.append(line)
|
||||
|
||||
def select_env_file(self):
|
||||
file = filedialog.askopenfilename(filetypes=[("音声ファイル", "*.wav *.mp3")])
|
||||
if file:
|
||||
self.env_file = file
|
||||
self.env_label.config(text=f"現在: {os.path.basename(file)}")
|
||||
|
||||
def insert_env_mix(self, text_lines):
|
||||
if self.env_file:
|
||||
path = os.path.abspath(self.env_file).replace("\\", "/")
|
||||
mix_line = f"_ = mix({path}, {self.env_volume.get():.2f})"
|
||||
text_lines.insert(0, mix_line)
|
||||
return text_lines
|
||||
|
||||
def save_file(self):
|
||||
filename = filedialog.asksaveasfilename(defaultextension=".sbg", filetypes=[("SBaGen Script", "*.sbg")])
|
||||
if filename:
|
||||
lines = self.script_box.get("1.0", "end").strip().split("\n")
|
||||
full_script = self.insert_env_mix(lines)
|
||||
with open(filename, "w") as f:
|
||||
f.write("\n".join(full_script))
|
||||
messagebox.showinfo("保存完了", f"{filename} を保存しました。")
|
||||
|
||||
def play_sbagen(self):
|
||||
lines = self.script_box.get("1.0", "end").strip().split("\n")
|
||||
full_script = self.insert_env_mix(lines)
|
||||
with open("temp_play.sbg", "w") as f:
|
||||
f.write("\n".join(full_script))
|
||||
try:
|
||||
subprocess.run(["./sbagen-1.4.5/sbagen", "temp_play.sbg"])
|
||||
except FileNotFoundError:
|
||||
messagebox.showerror("再生失敗", "sbagen が見つかりません。パスを確認してください。")
|
||||
|
||||
if __name__ == "__main__":
|
||||
root = tk.Tk()
|
||||
app = SBGEditor(root)
|
||||
root.mainloop()
|
||||
340
sbagen-1.4.5/COPYING.txt
Normal file
340
sbagen-1.4.5/COPYING.txt
Normal file
@@ -0,0 +1,340 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
116
sbagen-1.4.5/ChangeLog.txt
Normal file
116
sbagen-1.4.5/ChangeLog.txt
Normal file
@@ -0,0 +1,116 @@
|
||||
1.4.5 Update Mac OSX build to use Intel 32-bit
|
||||
|
||||
1.4.4 Fixes to support sound output on Vista
|
||||
Make "Edit sequence" work on WinXP
|
||||
Default to 60-minutes for WAV-output if a length can't be established
|
||||
"Write to WAV (30 min)" option for Windows
|
||||
Stop status line wrapping on Windows
|
||||
|
||||
1.4.3 Fixed problem when playing 7+ hour sequences with -SE or -L
|
||||
Warns properly if the WAV file limit of ~7 hours is exceeded, and truncates
|
||||
|
||||
1.4.2 Handles playing sequences to the clock across a daylight savings time change
|
||||
Improved Linux /dev/dsp initialisation to get a good fragment size
|
||||
Fixed OGG setup bug that affected some Linux systems when playing river sounds
|
||||
|
||||
1.4.1 Added wakeup option to -p drop
|
||||
Permitted duration of -p drop session to be modified
|
||||
Added ReplayGain handling for OGG files
|
||||
Applied vorbisgain to river sound files
|
||||
Added support for writing to a WAV file through Windows right-click menu
|
||||
River sounds now distributed in separate archive, except on Windows
|
||||
|
||||
1.4.0 Added support for randomly looping OGG files with SBAGEN_LOOPER tag
|
||||
Added two standard looping river sounds OGG files to archive
|
||||
Added <carr>/<amp> for handling plain sine tones (no beats)
|
||||
Sequence (SBG) files may now contain all options, including -i and -p
|
||||
Added -d option to select a different /dev/dsp device
|
||||
Added -c option to compensate for low-frequency rolloff of audio equipment
|
||||
Added bail-out code so that thread terminates correctly if other one dies
|
||||
Added -p drop builtin predefined sequence (thanks to Jonathan Bisson for
|
||||
the first version of this code)
|
||||
Added -p slide builtin predefined sequence
|
||||
Added support to look for -m files in program directory
|
||||
|
||||
1.2.0 Added support for Ogg and MP3 files for mix input with -m switch
|
||||
Added mix/<vol> channel type for controlling level of mix input
|
||||
Added ring buffering for -m and -M input streams to reduce chance of dropouts
|
||||
Added short usage message, with longer usage help with option -h
|
||||
Added "Press return" message for Windows users on error
|
||||
Added dithering to improve output quality
|
||||
Output rate is now automatically picked up from input WAV/Ogg/MP3 file,
|
||||
unless overridden by -r
|
||||
Added support for command-line options embedded in sequence files (e.g. -m)
|
||||
Display ## comments from sequence file on playback
|
||||
Support multiple sequence files on the command line, to permit separate
|
||||
files for tone-set libraries and sequences, for example
|
||||
Support automatic building with/without MP3/OGG according to availability
|
||||
Better information in error reports
|
||||
Miscellaneous clean-ups
|
||||
Documentation overhaul
|
||||
Using .sbg extension now, to improve user experience on Windows
|
||||
Converted most t-* files to ts-*.sbg
|
||||
Created .sbg files for tone-sets in shell-scripts
|
||||
Updated all .sbg files to include ## comments and options where necessary
|
||||
|
||||
1.0.14 Fixed endianness problem on output for OSX users
|
||||
Added T_MSVC macro to handle compilation using MSVC
|
||||
Added mk-msvc.txt with instructions for building with MSVC
|
||||
|
||||
1.0.13 Increased number of channels to 16 (was 8)
|
||||
For mix-in files ending with .wav/.WAV, correctly skip header
|
||||
|
||||
1.0.12 NetBSD script added
|
||||
Added mix options: -m and -M
|
||||
New p-drop sequence script
|
||||
|
||||
1.0.11 Changed Mac support to use CoreAudio because Carbon calls failed on OS 10.1
|
||||
|
||||
1.0.10 Added support for Mac OS X using Carbon calls.
|
||||
Added -T option to start playback at a given clock time
|
||||
Cleaned up platform-specific code handling in source
|
||||
|
||||
1.0.9 Added support for Windows real-time output through direct Win32 calls
|
||||
Added experimental support for user-defined brain waveforms
|
||||
|
||||
1.0.8 Added new `spin' effect
|
||||
|
||||
1.0.7 Added -F and -R options to allow faster changes within the sequence
|
||||
|
||||
1.0.6 Fixed -q to work correctly in conjunction with -SE
|
||||
Fixed to use binary-mode when outputting files (for DOS)
|
||||
|
||||
1.0.5 Added code to handle output on non-ANSI terminals when NO_ANSI_TTY is defined
|
||||
|
||||
1.0.4 Added -W option to write WAV file headers to files or stdout
|
||||
Added -S and -E options to run sequence as a script
|
||||
Preprocessor lines added to support compilation without direct /dev/dsp output
|
||||
-L option now outputs exactly the right length, with either raw or WAV output
|
||||
|
||||
1.0.3 Allowed sequence file to be read from standard input
|
||||
Changed -v option to -D, and added options -o -O -L -Q
|
||||
Tidied up time + voice output, and time scanning
|
||||
Switched to using stderr for informational output, with quiet option
|
||||
Added facility to output to a file or pipe
|
||||
Added a time limit option
|
||||
Improved synchronisation with real-time
|
||||
Added bell sound
|
||||
|
||||
1.0.2 Made more friendly to other compilers
|
||||
No longer requires C++ part of GCC to build
|
||||
|
||||
1.0.1 Added 8-bit support
|
||||
Rationalised argument processing
|
||||
|
||||
1.0.0 Initial release
|
||||
|
||||
TO-DO Add support on Mac OS X for CoreAudio sample-rate conversion
|
||||
|
||||
TO-DO Maybe necessary to fix DOS output to pipe to use binary mode ?
|
||||
Allow multiple simultaneous sequences to run, overlaying one another
|
||||
Tone-set option to gently oscillate the beat frequency up and down
|
||||
Option to randomize the carrier frequencies/phases slightly
|
||||
Fade between tone-sets according to joystick port input
|
||||
Open /dev/dsp twice, and set buffers not-too-long and not-too-short
|
||||
Option to output a loop-able file of exactly the right length for -i option
|
||||
Allow keypresses to cause sequence to jump forwards/backwards to marked points
|
||||
20
sbagen-1.4.5/DEMO.command
Executable file
20
sbagen-1.4.5/DEMO.command
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
CMD=$0
|
||||
PROGDIR=$(echo $CMD|perl -pe 's|/[^/]*$||')
|
||||
cd $PROGDIR
|
||||
|
||||
echo ""
|
||||
echo -e "\033[37;41m Welcome to SBaGen \033[0m"
|
||||
echo ""
|
||||
echo "This is a quick half-hour demo of a binaural beat slide at 10Hz going "
|
||||
echo "through carrier frequencies from 200Hz down to 5Hz. You should listen "
|
||||
echo "with headphones and with eyes closed. This uses alpha frequencies which"
|
||||
echo "you will probably find leave you feeling light, awake and relaxed. If "
|
||||
echo "you want to stop before the end, press Ctrl-C. Hopefully this is enough "
|
||||
echo "of a taster to get you to read the docs and work out how to access all "
|
||||
echo "the other files."
|
||||
echo ""
|
||||
|
||||
./sbagen -m river1.ogg -p slide 200+10/1 mix/100
|
||||
|
||||
26
sbagen-1.4.5/README.txt
Normal file
26
sbagen-1.4.5/README.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
Here is a brief intro to some of the files here:
|
||||
|
||||
SBAGEN.txt Full user documentation and installation notes; PLEASE READ THIS
|
||||
|
||||
sbagen.exe The Win32 executable (ZIP distribution only)
|
||||
sbagen The Mac OS X executable (Mac distribution only)
|
||||
|
||||
COPYING.txt License (GNU General Public Licence version 2)
|
||||
|
||||
*.sbg Various sequences that can be run through sbagen
|
||||
ts-*.sbg Single tone-sets
|
||||
prog-*.sbg Longer sequences of tone-sets
|
||||
p-* Some Perl-scripts that generate and run sequences
|
||||
focus.txt / Some notes on the scripts that were derived from reported
|
||||
wave.txt Monroe Institute focus levels
|
||||
holosync.txt Some notes on the CenterPointe Holosync techniques
|
||||
theory*.txt Some notes from my own experimentation
|
||||
|
||||
river*.ogg Loopable background river sound OGG file (under CC license);
|
||||
note that for Linux and Mac OSX these are distributed in a
|
||||
separate TGZ archive
|
||||
|
||||
sbagen.c, *.c The source code
|
||||
mk A short script to build using GCC on Linux
|
||||
mk-* Scripts to build on other platforms -- see the comments in files
|
||||
|
||||
1573
sbagen-1.4.5/SBAGEN.txt
Normal file
1573
sbagen-1.4.5/SBAGEN.txt
Normal file
File diff suppressed because it is too large
Load Diff
44
sbagen-1.4.5/START.command
Executable file
44
sbagen-1.4.5/START.command
Executable file
@@ -0,0 +1,44 @@
|
||||
#!/bin/bash
|
||||
|
||||
# This script is run through in two different ways. The first way is
|
||||
# as a .command file to start up an interactive shell. The second way
|
||||
# is as the rc file for that interactive shell.
|
||||
|
||||
if [ -z "$SBAGEN_SHELL" ]
|
||||
then
|
||||
CMD=$0
|
||||
PROGDIR=$(echo $CMD|perl -pe 's|/[^/]*$||')
|
||||
cd $PROGDIR
|
||||
|
||||
SBAGEN_SHELL=1 bash --rcfile $CMD -i
|
||||
else
|
||||
[ -f ~/.bashrc ] && . ~/.bashrc
|
||||
echo ""
|
||||
echo -e "\033[37;41m Welcome to SBaGen. \033[0m Here are some example commands you can try at"
|
||||
echo "the shell prompt below. Remember that you can use TAB or TAB-TAB to"
|
||||
echo "auto-complete command and file names, to save typing them in full:"
|
||||
echo ""
|
||||
echo " ls -R examples # list all example sequence files"
|
||||
echo " sbagen examples/basics/prog-drop-00d.sbg # play a sequence file"
|
||||
echo ""
|
||||
echo "Editing files in base folder:"
|
||||
echo " cp examples/basics/prog-drop-00d.sbg . # copy file to base folder"
|
||||
echo " ls *.sbg # list all sequence files in base folder"
|
||||
echo " l *.sbg # long listing"
|
||||
echo " sbagen prog-drop-00d.sbg # play a sequence file in base folder"
|
||||
echo " e prog-drop-00d.sbg # edit or create a sequence file with TextEdit"
|
||||
echo " exit # exit the shell when you are finished"
|
||||
echo ""
|
||||
echo "Remember to use Ctrl-C to stop sbagen when it is playing. Please read"
|
||||
echo "SBAGEN.txt for the full documentation."
|
||||
echo ""
|
||||
|
||||
sleep 1
|
||||
alias e='open -e'
|
||||
alias l='ls -l'
|
||||
alias mm='less -f'
|
||||
|
||||
export PS1='\[\033[31m\]\w>\[\033[0m\] '
|
||||
export PS2='> '
|
||||
export PATH="$PATH:$PWD"
|
||||
fi
|
||||
87
sbagen-1.4.5/TODO.txt
Normal file
87
sbagen-1.4.5/TODO.txt
Normal file
@@ -0,0 +1,87 @@
|
||||
==== TODO list for SBaGen
|
||||
|
||||
=== Current
|
||||
|
||||
Merge in ARTS patch
|
||||
|
||||
An SBG file containing "-i pink/40 100+1.5/20 200-4/36 400+8/2" does
|
||||
not give the expected result, although adding -D before that DOES.
|
||||
It seems that all -i options in SBG files are broken.
|
||||
|
||||
Write minimal GUI for SBaGen: (use fltk?)
|
||||
|
||||
- Maybe menus for file load/open/save/save as/etc
|
||||
- Maybe "Select" tab allows file selection
|
||||
- "Editor" tab shows file contents, allows editing
|
||||
- "Test" tab shows -D output
|
||||
- "Play" tab plays file
|
||||
- "Write WAV" tab writes WAV to disc
|
||||
|
||||
Add AIFF output as well as WAV.
|
||||
|
||||
|
||||
=== Time permitting / version 2 rewrite / suggestions
|
||||
|
||||
Add support for triggering WAV/MP3 samples at certain points in the
|
||||
sequence: for example, "You have now entered Theta at 7Hz", or
|
||||
whatever.
|
||||
|
||||
Add 'mixspin:' and 'mixbeat:' options. The first would apply the spin
|
||||
effect to the mix stream. The second would use a Hilbert transform and
|
||||
a 'twist' of the resulting complex waveform to shift the L+R channels
|
||||
up and down in frequency to create a binaural beat out of any
|
||||
recording. The idea seems sound, it just needs implementing and
|
||||
testing.
|
||||
|
||||
Give Mac users desktop access to the application, using double-click
|
||||
to run an SBG file, for example.
|
||||
|
||||
Possibly add JACK support (jackit.sf.net); this is yet another good
|
||||
reason to rewrite the core code to fit a callback model. This would
|
||||
lead onto easier CoreAudio and Windows audio support too.
|
||||
|
||||
Allow several channels that act independently, i.e. with independent
|
||||
slides going on through other activity on other channels.
|
||||
|
||||
Create a sbagenlib to do all the play-time sequencing and audio
|
||||
generation, permitting several different front ends to be created.
|
||||
|
||||
Make an 'easy' SDL-based clickable GUI interface for Windows users,
|
||||
separate from the more powerful command-line interface.
|
||||
Alternatively, rewrite completely for SDL, with a different file
|
||||
format, and automatic conversion of old SBG files.
|
||||
|
||||
More:
|
||||
|
||||
Maybe allow keyboard control to fade between different sequences in
|
||||
real-time. Actually this was suggested connected with rhybag. This
|
||||
might be achieved by a rewrite using SDL for the front-end and audio
|
||||
output code, effectively creating a completely new app.
|
||||
|
||||
Maybe add a screen that flashes in sync with the beats, as a cheap
|
||||
light-glasses replacement.
|
||||
|
||||
Maybe add a feature to record timing of user events during a session
|
||||
indicated by user clicks or keypresses.
|
||||
|
||||
Maybe add a feature to add modulation of the volume level in addition
|
||||
to the beating.
|
||||
|
||||
Add light glasses control with in the MagicJim / AudioStrobe method,
|
||||
i.e. adding high-frequency tones to trigger the flashes.
|
||||
|
||||
Suggestion: Add LPT1 light glasses control. The coding would be
|
||||
significantly different between Linux and Windows. There are also
|
||||
synchronisation issues, with the timing different for each soundcard.
|
||||
|
||||
Suggestion: "sinusoidal, gaussian or user defined sweep in a frequency
|
||||
range" (!?)
|
||||
|
||||
Suggestion: Add coloured noise to SBaGen as mentioned on the mailing
|
||||
list.
|
||||
|
||||
Add more organic feel to tones etc, by introducing very low-frequency
|
||||
variations in carrier frequency, or beat frequency, or whatever.
|
||||
|
||||
|
||||
|
||||
107
sbagen-1.4.5/examples/basics/prog-chakras-1.sbg
Normal file
107
sbagen-1.4.5/examples/basics/prog-chakras-1.sbg
Normal file
@@ -0,0 +1,107 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## ** WARNING: This is very experimental. I'm not at all sure that it is
|
||||
## ** possible to find frequencies for the Chakras, if they are the same for
|
||||
## ** each person, if they are always at the same frequency, or even if all
|
||||
## ** of the Chakras can be stimulated in this way. I AM NOT AWARE ENOUGH
|
||||
## ** TO SAY IF THIS REALLY WORKS. This is just an experiment.
|
||||
##
|
||||
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
##
|
||||
## This cycles through a sequence of four pure-tuned chords, each
|
||||
## of which takes 3 minutes, and is designed to stimulate
|
||||
## different Chakras. A bell indicates the change between
|
||||
## chords. Each cycle of chords takes 12 minutes, and this is
|
||||
## repeated endlessly.
|
||||
##
|
||||
## The frequencies for the Chakras, and the idea that the Chakras
|
||||
## can indeed be stimulated in this way, using Theta frequencies,
|
||||
## has come purely from my own experience and sensations that I
|
||||
## have felt whilst listening to binaural beats at different
|
||||
## frequencies.
|
||||
##
|
||||
## I have no idea if the Chakras are at the same frequencies for
|
||||
## other people, or even if I have really got the right
|
||||
## frequencies for myself.
|
||||
##
|
||||
## So take this as it comes. You may need to experiment on
|
||||
## yourself a bit to find what the individual frequencies do to
|
||||
## you.
|
||||
##
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
#
|
||||
# Carriers:
|
||||
#
|
||||
# Root 50 100 200 400 800
|
||||
# 3rd 250 500 1000
|
||||
# 5th 150 300 600 1200
|
||||
# m7th 350 700 1400
|
||||
#
|
||||
# 100 250 600 or 150 375 900
|
||||
# 100 300 500 or 150 450 750
|
||||
# 100 250 600 or 150 375 900
|
||||
# 100 200 300 500 or 150 300 450 750
|
||||
#
|
||||
# Chakras, approx frequencies: (VERY APPROX, EXPERIMENTAL)
|
||||
#
|
||||
# 1 2 3 4
|
||||
# 7th 7.50 X
|
||||
# 6th 6.60 X
|
||||
# 5th 5.60 X
|
||||
# 4th 4.90 X X
|
||||
# 3rd 4.20 X
|
||||
# 2nd 3.65 X
|
||||
# 1st 3.30 X X
|
||||
# 1.50 X X
|
||||
# 0.92 X X
|
||||
|
||||
# Run from time 0:00
|
||||
-T 0:00
|
||||
|
||||
# Set based on 50Hz fundamental
|
||||
ts50-1: 100+1.50/30 250+4.20/12 600+4.90/5 bell+2050/20
|
||||
ts50-2: 100+0.92/30 300+3.65/10 500+5.60/6 bell+2050/20
|
||||
ts50-3: 100+1.50/30 250+3.30/12 600+6.60/5 bell+2050/20
|
||||
ts50-4: 100+0.92/30 200+3.30/15 300+4.90/10 500+7.5/6 bell+2050/20
|
||||
|
||||
# Set based on 60Hz fundamental
|
||||
ts60-1: 120+1.50/30 300+4.20/12 720+4.90/5 bell+2460/20
|
||||
ts60-2: 120+0.92/30 360+3.65/10 600+5.60/6 bell+2460/20
|
||||
ts60-3: 120+1.50/30 300+3.30/12 720+6.60/5 bell+2460/20
|
||||
ts60-4: 120+0.92/30 240+3.30/15 360+4.90/10 600+7.5/6 bell+2460/20
|
||||
|
||||
# Set based on 75Hz fundamental
|
||||
ts75-1: 150+1.50/30 375+4.20/12 900+4.90/5 bell+3075/20
|
||||
ts75-2: 150+0.92/30 450+3.65/10 750+5.60/6 bell+3075/20
|
||||
ts75-3: 150+1.50/30 375+3.30/12 900+6.60/5 bell+3075/20
|
||||
ts75-4: 150+0.92/30 300+3.30/15 450+4.90/10 750+7.5/6 bell+3075/20
|
||||
|
||||
seq1: {
|
||||
+0:00 ts50-1
|
||||
+0:03 ts50-2
|
||||
+0:06 ts50-3
|
||||
+0:09 ts50-4
|
||||
}
|
||||
|
||||
seq5: { # an hour of it
|
||||
+0:00 seq1
|
||||
+0:12 seq1
|
||||
+0:24 seq1
|
||||
+0:36 seq1
|
||||
+0:48 seq1
|
||||
}
|
||||
|
||||
seq20: { # four hours of it
|
||||
+0:00 seq5
|
||||
+1:00 seq5
|
||||
+2:00 seq5
|
||||
+3:00 seq5
|
||||
}
|
||||
|
||||
0:00:01 seq20
|
||||
4:00:01 seq20
|
||||
8:00:01 seq20
|
||||
12:00:01 seq20
|
||||
16:00:01 seq20
|
||||
20:00:01 seq20
|
||||
|
||||
11
sbagen-1.4.5/examples/basics/prog-drop-00d.sbg
Normal file
11
sbagen-1.4.5/examples/basics/prog-drop-00d.sbg
Normal file
@@ -0,0 +1,11 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## Hour-long "-p drop" session at level 00ds+ mixed with river sounds.
|
||||
## When this level becomes 'boring', edit the file to move onto 01ds+,
|
||||
## then 02ds+, and so on. This can be used over months and years,
|
||||
## gradually working through from 00 to 99, for the purposes of
|
||||
## emotional/energetic clearing. See SBAGEN.TXT for a full explanation.
|
||||
##
|
||||
|
||||
-m river1.ogg -p drop 00ds+ mix/100
|
||||
|
||||
37
sbagen-1.4.5/examples/basics/prog-drop-old-demo.sbg
Normal file
37
sbagen-1.4.5/examples/basics/prog-drop-old-demo.sbg
Normal file
@@ -0,0 +1,37 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## Half-hour demo 'drop' session at level 00d, returning to
|
||||
## waking frequencies at the end.
|
||||
##
|
||||
## Note that drops can now be generated using the -p drop option --
|
||||
## see the prog-drop-00d sequence file.
|
||||
##
|
||||
|
||||
-SE -m river1.ogg
|
||||
|
||||
off: -
|
||||
ts00: 205+10/1.0 mix/100
|
||||
ts01: 204.444+8.57244/1.0 mix/100
|
||||
ts02: 203.889+7.34867/1.0 mix/100
|
||||
ts03: 203.333+6.29961/1.0 mix/100
|
||||
ts04: 202.778+5.4003/1.0 mix/100
|
||||
ts05: 202.222+4.62937/1.0 mix/100
|
||||
ts06: 201.667+3.9685/1.0 mix/100
|
||||
ts07: 201.111+3.40198/1.0 mix/100
|
||||
ts08: 200.556+2.91632/1.0 mix/100
|
||||
ts09: 200+2.5/1.0 mix/100
|
||||
|
||||
0:00:00 == off ->
|
||||
0:00:05 == ts00 ->
|
||||
0:03:00 == ts01 ->
|
||||
0:06:00 == ts02 ->
|
||||
0:09:00 == ts03 ->
|
||||
0:12:00 == ts04 ->
|
||||
0:15:00 == ts05 ->
|
||||
0:18:00 == ts06 ->
|
||||
0:21:00 == ts07 ->
|
||||
0:24:00 == ts08 ->
|
||||
0:27:00 == ts09 ->
|
||||
0:29:00 == ts09 ->
|
||||
0:29:40 == ts00 ->
|
||||
0:29:50 == off
|
||||
10
sbagen-1.4.5/examples/basics/prog-slide-alpha-10.sbg
Normal file
10
sbagen-1.4.5/examples/basics/prog-slide-alpha-10.sbg
Normal file
@@ -0,0 +1,10 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## Half-hour "-p slide" session at 10Hz (alpha waves) mixed with river
|
||||
## sounds. See SBAGEN.TXT for a full explanation. You can edit this
|
||||
## file and adjust the +10 to try other frequencies. This works with
|
||||
## the same principles as the 'drop' sessions, only at 'right angles'.
|
||||
##
|
||||
|
||||
-m river1.ogg -p slide 200+10/1 mix/100
|
||||
|
||||
10
sbagen-1.4.5/examples/basics/prog-slide-beta-16.sbg
Normal file
10
sbagen-1.4.5/examples/basics/prog-slide-beta-16.sbg
Normal file
@@ -0,0 +1,10 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## Half-hour "-p slide" session at 16Hz (beta waves) mixed with river
|
||||
## sounds. See SBAGEN.TXT for a full explanation. You can edit this
|
||||
## file and adjust the +16 to try other frequencies. This works with
|
||||
## the same principles as the 'drop' sessions, only at 'right angles'.
|
||||
##
|
||||
|
||||
-m river1.ogg -p slide 200+16/1 mix/100
|
||||
|
||||
28
sbagen-1.4.5/examples/basics/prog-spin-1.sbg
Normal file
28
sbagen-1.4.5/examples/basics/prog-spin-1.sbg
Normal file
@@ -0,0 +1,28 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## This is a quick test for the `spin' effect; note that you can
|
||||
## listen to the spin effect at normal volume levels -- it
|
||||
## doesn't need to be quiet like binaural beats.
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: spin:200+12/80
|
||||
ts2: spin:200+5/80
|
||||
ts3: spin:200+4/80
|
||||
ts4: spin:200+3/80
|
||||
off: -
|
||||
|
||||
0:00 == ts1 ->
|
||||
0:05 == ts2 ->
|
||||
0:10 == ts3 ->
|
||||
0:15 == ts4
|
||||
0:20 off
|
||||
|
||||
# NOW == ts1 ->
|
||||
# +0:05 == ts1 ->
|
||||
# +0:10 == ts2 ->
|
||||
# +0:15 == ts3 ->
|
||||
# +0:20 == ts4
|
||||
# +0:25 off
|
||||
|
||||
5
sbagen-1.4.5/examples/basics/ts-brain-alpha.sbg
Normal file
5
sbagen-1.4.5/examples/basics/ts-brain-alpha.sbg
Normal file
@@ -0,0 +1,5 @@
|
||||
## Alpha 10 Hz
|
||||
|
||||
ts: pink/40 300+10/10
|
||||
|
||||
0:00 ts
|
||||
6
sbagen-1.4.5/examples/basics/ts-brain-beta.sbg
Normal file
6
sbagen-1.4.5/examples/basics/ts-brain-beta.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## Beta 16 Hz
|
||||
|
||||
ts: pink/40 300+16/10
|
||||
|
||||
0:00 ts
|
||||
|
||||
6
sbagen-1.4.5/examples/basics/ts-brain-delta.sbg
Normal file
6
sbagen-1.4.5/examples/basics/ts-brain-delta.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## Delta 2 Hz
|
||||
|
||||
ts: pink/40 150+2/15
|
||||
|
||||
0:00 ts
|
||||
|
||||
6
sbagen-1.4.5/examples/basics/ts-brain-theta.sbg
Normal file
6
sbagen-1.4.5/examples/basics/ts-brain-theta.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## Theta 6 Hz
|
||||
|
||||
ts: pink/40 150+6/15
|
||||
|
||||
0:00 ts
|
||||
|
||||
30
sbagen-1.4.5/examples/contrib/ch-aspirin.sbg
Normal file
30
sbagen-1.4.5/examples/contrib/ch-aspirin.sbg
Normal file
@@ -0,0 +1,30 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on
|
||||
## Fri, 19 May 2006:
|
||||
##
|
||||
## Ultimate Aspirin
|
||||
##
|
||||
## Three frequencies said to promote endorphin release. 2.5 and 4 Hz
|
||||
## each in their turn pairing with 38Hz, with all three playing in the
|
||||
## middle of the cycle. Carriers sound in octaves, separated enough to
|
||||
## avoid cross binaurals.
|
||||
|
||||
-SE
|
||||
|
||||
ts1: pink/80 100+2.5/3 200+4/0 400+38/3
|
||||
ts2: pink/80 100+2.5/0 200+4/3 400+38/3
|
||||
ts3: pink/80 100+2.5/3 200+4/3 400+38/3
|
||||
off: -
|
||||
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts1
|
||||
00:03:30 ts1 ->
|
||||
00:04:00 ts2
|
||||
00:06:00 ts2 ->
|
||||
00:06:30 ts3
|
||||
00:08:00 ts3 ->
|
||||
00:08:30 ts2
|
||||
00:10:30 ts2 ->
|
||||
00:11:00 ts1
|
||||
00:12:00 ts1 ->
|
||||
00:12:30 off
|
||||
20
sbagen-1.4.5/examples/contrib/ch-awakened-mind.sbg
Normal file
20
sbagen-1.4.5/examples/contrib/ch-awakened-mind.sbg
Normal file
@@ -0,0 +1,20 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on
|
||||
## Fri, 19 May 2006:
|
||||
##
|
||||
## The Awakened Mind
|
||||
##
|
||||
## 20 minute program. Four voices, one each in beta, alpha, theta and
|
||||
## delta. All four present. Slow drop in frequency as volume glides
|
||||
## from beta-weighted to delta/theta weighted.
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
ts1: pink/60 750+15/8 500+10/4 350+7/0 100+2/0
|
||||
ts2: pink/60 750+14/0 500+9/8 350+6/6 100+2/8
|
||||
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts1 ->
|
||||
00:20:00 ts2 ->
|
||||
00:20:30 off
|
||||
19
sbagen-1.4.5/examples/contrib/ch-einstein.sbg
Normal file
19
sbagen-1.4.5/examples/contrib/ch-einstein.sbg
Normal file
@@ -0,0 +1,19 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on
|
||||
## Fri, 19 May 2006:
|
||||
##
|
||||
## Instant Einstein
|
||||
##
|
||||
## 15 minutes at 40Hz in a 2 voice harmonic box. Supposed to be a
|
||||
## significant frequency, involved in problem solving and possibly psi
|
||||
## activity.
|
||||
|
||||
-SE
|
||||
|
||||
ts: pink/80 360-40/6 440+40/6
|
||||
off: -
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts
|
||||
00:15:00 ts ->
|
||||
00:15:30 off
|
||||
|
||||
25
sbagen-1.4.5/examples/contrib/ch-inspiration.sbg
Normal file
25
sbagen-1.4.5/examples/contrib/ch-inspiration.sbg
Normal file
@@ -0,0 +1,25 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on Fri, 1
|
||||
## Jun 2007:
|
||||
##
|
||||
## Inspiration
|
||||
##
|
||||
## Starts with 5 minutes of harmonized carriers at 10Hz alpha, followed
|
||||
## by a two minutes glide to 8Hz. 10 minutes at 8Hz, and then another
|
||||
## 12 minutes with a low delta tone (1.5) Hz in a third harmonized
|
||||
## carrier mixed in. Ends with a three minute glide back to 10 hz.
|
||||
|
||||
-SE
|
||||
off: -
|
||||
ts1: pink/80 100+1.5/0 200+10.5/3 400+10.5/3
|
||||
ts2: pink/80 100+1.5/0 200+8/3 400+8/3
|
||||
ts3: pink/80 100+1.5/4 200+7.5/3 400+7.5/3
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:10 ts1
|
||||
00:05:00 ts1 ->
|
||||
00:07:00 ts2
|
||||
00:17:00 ts2 ->
|
||||
00:18:00 ts3
|
||||
00:30:00 ts3 ->
|
||||
00:33:00 ts1 ->
|
||||
00:33:30 off
|
||||
21
sbagen-1.4.5/examples/contrib/ch-obe.sbg
Normal file
21
sbagen-1.4.5/examples/contrib/ch-obe.sbg
Normal file
@@ -0,0 +1,21 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on
|
||||
## Sat, 6 May 2006
|
||||
##
|
||||
## OBE Frequencies
|
||||
##
|
||||
## A collection of frequencies from the
|
||||
## http://www.lunarsight.com/freq.htm list, that seem to be related to
|
||||
## out-of-body experiences. Got the idea from someone on the bwgen
|
||||
## list. He didn't actually post the specifics of the tone set, but
|
||||
## implied that he put them all together. Some reactions were
|
||||
## decidedly positive.
|
||||
|
||||
-SE
|
||||
|
||||
ts: pink/90 88.2+6.3/6 176.4+7/6 441+22/5 529.2+63/4 705.6+70/3 882+40/3
|
||||
off: -
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts
|
||||
00:20:00 ts ->
|
||||
00:20:30 off
|
||||
16
sbagen-1.4.5/examples/contrib/ch-runners-high.sbg
Normal file
16
sbagen-1.4.5/examples/contrib/ch-runners-high.sbg
Normal file
@@ -0,0 +1,16 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on Fri, 1
|
||||
## Jun 2007:
|
||||
##
|
||||
## Runner's High
|
||||
##
|
||||
## A harmonic box reinforcing the endorphin-releasing 38Hz+
|
||||
|
||||
-SE
|
||||
|
||||
ts1: pink/80 111-38/4 187+38/3
|
||||
off: -
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts1
|
||||
00:20:00 ts1 ->
|
||||
00:20:30 off
|
||||
17
sbagen-1.4.5/examples/contrib/ch-running-high.sbg
Normal file
17
sbagen-1.4.5/examples/contrib/ch-running-high.sbg
Normal file
@@ -0,0 +1,17 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on Fri, 1
|
||||
## Jun 2007:
|
||||
##
|
||||
## Running High
|
||||
##
|
||||
## 15 minute program combines the Schuman Resonance with the "LSD"
|
||||
## frequency and 38Hz for endorphin release.
|
||||
|
||||
-SE
|
||||
|
||||
ts1: pink/50 110+7.83/4 250+20.215/4 400+38/4
|
||||
off: -
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts1
|
||||
00:15:00 ts1 ->
|
||||
00:15:30 off
|
||||
42
sbagen-1.4.5/examples/contrib/ch-schumann-cycle.sbg
Normal file
42
sbagen-1.4.5/examples/contrib/ch-schumann-cycle.sbg
Normal file
@@ -0,0 +1,42 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on
|
||||
## Fri, 19 May 2006:
|
||||
##
|
||||
## Schumann Cycle
|
||||
##
|
||||
## All seven Schumann Resonances each in their own harmonic box.
|
||||
|
||||
# I've been exploring high beta ranges. This sequence is a good
|
||||
# example. It uses the 7 frequencies of the Schumann Resonance,
|
||||
# starting at 7.83 and ending at the same place. Each of the higher
|
||||
# frequencies holds for 5 minutes.
|
||||
|
||||
-SE
|
||||
|
||||
ts1: pink/80 125.2+7.83/4 109.62-7.83/4
|
||||
ts2: pink/80 112-14/3 126+14/3
|
||||
ts3: pink/80 160+20/3 120-20/3
|
||||
ts4: pink/80 208+26/3 156-26/3
|
||||
ts5: pink/80 264+33/3 198-33/3
|
||||
ts6: pink/80 312+39/3 234-39/3
|
||||
ts7: pink/80 125.2+7.83/0 109.62-7.83/0 360+45/3 270-45/3
|
||||
ts8: pink/80 125.2+7.83/3 109.62-7.83/3 360+45/0 270-45/0
|
||||
off: -
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:15 ts1 ->
|
||||
00:10:00 == ts1
|
||||
00:10:02 ts2 ->
|
||||
00:15:00 == ts2
|
||||
00:15:02 ts3 ->
|
||||
00:20:00 == ts3
|
||||
00:20:02 ts4 ->
|
||||
00:25:00 == ts4
|
||||
00:25:02 ts5 ->
|
||||
00:30:00 == ts5
|
||||
00:30:02 ts6 ->
|
||||
00:35:00 == ts6
|
||||
00:35:02 ts7 ->
|
||||
00:40:00 ts7 ->
|
||||
00:42:00 ts8
|
||||
00:45:00 ts8 ->
|
||||
00:45:30 off
|
||||
39
sbagen-1.4.5/examples/contrib/ch-sonic-caffeine.sbg
Normal file
39
sbagen-1.4.5/examples/contrib/ch-sonic-caffeine.sbg
Normal file
@@ -0,0 +1,39 @@
|
||||
## Posted by Crawford Hart to the sbagen-users mailing list on Fri, 1
|
||||
## Jun 2007:
|
||||
##
|
||||
## Sonic Caffeine
|
||||
##
|
||||
## Focus and concentration. A 45 minute program that ramps up through
|
||||
## several beta frequencies. Keeps you mentally alert and the your
|
||||
## attention focused on the task at hand.
|
||||
|
||||
-SE
|
||||
|
||||
ts: pink/80 250+18/4
|
||||
ts1: pink/80 250+22/4
|
||||
ts2: pink/80 250+30/4
|
||||
ts3: pink/80 250+33/4
|
||||
ts4: pink/80 250+14/4
|
||||
off: -
|
||||
|
||||
|
||||
00:00:00 off ->
|
||||
00:00:10 ts
|
||||
00:05:00 ts ->
|
||||
00:05:10 ts1
|
||||
00:09:00 ts1 ->
|
||||
00:09:10 ts2
|
||||
00:15:00 ts2 ->
|
||||
00:15:10 ts3
|
||||
00:17:00 ts3 ->
|
||||
00:17:10 ts1
|
||||
00:20:00 ts1 ->
|
||||
00:20:10 ts2
|
||||
00:30:00 ts2 ->
|
||||
00:30:10 ts3
|
||||
00:35:00 ts3 ->
|
||||
00:35:10 ts2
|
||||
00:40:00 ts2 ->
|
||||
00:43:00 ts4
|
||||
00:45:00 ts4 ->
|
||||
00:45:30 off
|
||||
27
sbagen-1.4.5/examples/contrib/cjm-tempus-fugit.sbg
Normal file
27
sbagen-1.4.5/examples/contrib/cjm-tempus-fugit.sbg
Normal file
@@ -0,0 +1,27 @@
|
||||
## Posted by Christopher J. Maler to sbagen-users on Wed, 16 Feb 2005:
|
||||
##
|
||||
## Tempus Fugit 5:12
|
||||
##
|
||||
## I've been playing with this sequence for a while now. I call it
|
||||
## Tempus Fugit 5:12. It's based on, as you could guess 5 and 12 hz
|
||||
## beats with the 8.5 midway point added. I've been experiencing some
|
||||
## very strange dreams after falling asleep to this preset. Thought
|
||||
## I'd share. Chris
|
||||
|
||||
off: -
|
||||
s1: 500.00+12.00/25 0.00+0.00/0 0.00+0.00/0
|
||||
s2: 500.00+12.00/18 310.00+8.50/25 0.00+0.00/0
|
||||
s3: 500.00+12.00/10 310.00+8.50/18 120.00+5.00/25
|
||||
s4: 500.00+12.00/25 310.00+8.50/10 120.00+5.00/18
|
||||
s5: 500.00+12.00/18 310.00+8.50/25 120.00+5.00/10
|
||||
s6: 0.00+0.00/0 0.00+0.00/0 0.00+0.00/0
|
||||
|
||||
NOW+0:00:00 off ->
|
||||
+0:00:10 s1
|
||||
+0:10 s2
|
||||
+0:20 s3
|
||||
+0:30 s4
|
||||
+0:40 s5
|
||||
+0:50 s6
|
||||
+0:51 s6 ->
|
||||
+0:51:15 off
|
||||
26
sbagen-1.4.5/examples/contrib/cy-eye-refresher.sbg
Normal file
26
sbagen-1.4.5/examples/contrib/cy-eye-refresher.sbg
Normal file
@@ -0,0 +1,26 @@
|
||||
## Chaven R Yenketswamy
|
||||
## Sunday 4-May-2008
|
||||
##
|
||||
## Eye refresher
|
||||
##
|
||||
## This profile helps to energise ones eyes if they fatigued. It also
|
||||
## helps raise ones consciousness.
|
||||
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 100+3.60/10 300+4.6/10
|
||||
ts2: 100+4.60/10 300+5.6/10
|
||||
ts3: 100+5.60/10 300+6.6/10
|
||||
|
||||
off: -
|
||||
|
||||
00:10:00 ts1
|
||||
00:12:00 ts2
|
||||
00:14:00 ts3
|
||||
00:16:01 off
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
47
sbagen-1.4.5/examples/contrib/cy-prana-energiser.sbg
Normal file
47
sbagen-1.4.5/examples/contrib/cy-prana-energiser.sbg
Normal file
@@ -0,0 +1,47 @@
|
||||
## Chaven R Yenketswamy
|
||||
##
|
||||
## Prana Energizer, 3 minutes
|
||||
##
|
||||
## I picked this up whilst trying to do a frequency scan to identify
|
||||
## optimum meditation states. The scan was run on Brainwave Generator
|
||||
## using a background sound(Babbling Brook) and with frequencies
|
||||
## varying from (15 to 7 and 4 to 7). The interval between 5.2 to 5.9
|
||||
## appeared to be very calm and gentle to me. I've tried to reproduce
|
||||
## this interval in the following profile. At first I couldn't hear
|
||||
## anything then realised that most of the waves could be cancelling
|
||||
## each other. Well the energy has to go somewhere! The sound you
|
||||
## hear at first is a low background whine something like a cosmic
|
||||
## frequency. I therefore increased the carriers all proportionally
|
||||
## by 120% to make the profile more audible at lower audio levels. It
|
||||
## appears this profile increases energy in the pranamayakosha
|
||||
## (i.e. raises ones vital energy). Generally one needs to chant
|
||||
## Mantras for hrs to achieve such a result. Well you can experience
|
||||
## symptoms like warmth in you feet which is typical of what i get
|
||||
## from Mantra chanting but in a shorter time. May need some
|
||||
## confirmation and then optimisation.
|
||||
|
||||
#Binaurals
|
||||
|
||||
#(12.4, 5.2) -> (11.6,5.7) -> (11.2,5.9)
|
||||
|
||||
#Carriers
|
||||
#(620,260) -> (580,285) -> (560,295)
|
||||
|
||||
#Time
|
||||
# (1.5 mins) (1.5 mins)
|
||||
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 744+12.4/5.0 312+5.2/5.0
|
||||
ts2: 696+11.6/5.0 342+5.7/5.0
|
||||
ts3: 672+11.2/5.0 354+5.9/5.0
|
||||
|
||||
off: -
|
||||
|
||||
00:00:00 == off ->
|
||||
00:00:01 == ts1 ->
|
||||
00:01:30 == ts2 ->
|
||||
00:03:00 == ts3 ->
|
||||
00:03:01 == off ->
|
||||
|
||||
145
sbagen-1.4.5/examples/contrib/ghostlab/bells-1.sbg
Normal file
145
sbagen-1.4.5/examples/contrib/ghostlab/bells-1.sbg
Normal file
@@ -0,0 +1,145 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Bells I
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: bell+146/30 bell+875/30 bell+932/30 bell+211/30
|
||||
ts2: bell+856/30 bell+943/30 bell+254/30 bell+3745/30
|
||||
ts3: bell+46/30 bell+772/30 bell+424/30 bell+278/30
|
||||
ts4: bell+380/30 bell+717/30 bell+822/30 bell+320/30
|
||||
ts5: bell+574/30 bell+227/30 bell+870/30 bell+313/30
|
||||
ts6: bell+56/30 bell+786/30 bell+237/30 bell+421/30
|
||||
|
||||
ts7: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
ts8: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
ts9: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
ts10: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
ts11: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
ts12: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
ts13: bell+4500/30 bell+4500/30 bell+4500/30 bell+4500/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts13 ->
|
||||
0:00:22 == ts7 ->
|
||||
0:00:23 == ts8 ->
|
||||
0:00:24 == ts9 ->
|
||||
0:00:25 == ts10 ->
|
||||
0:00:26 == ts11 ->
|
||||
0:00:27 == ts12 ->
|
||||
0:00:28 == ts7 ->
|
||||
0:00:29 == ts8 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts13 ->
|
||||
0:00:34 == ts7 ->
|
||||
0:00:35 == ts8 ->
|
||||
0:00:36 == ts9 ->
|
||||
0:00:37 == ts10 ->
|
||||
0:00:38 == ts11 ->
|
||||
0:00:39 == ts12 ->
|
||||
0:00:40 == ts7 ->
|
||||
0:00:41 == ts8 ->
|
||||
0:00:42 == ts1 ->
|
||||
0:00:43 == ts2 ->
|
||||
0:00:44 == ts3 ->
|
||||
0:00:45 == ts13 ->
|
||||
0:00:46 == ts7 ->
|
||||
0:00:47 == ts8 ->
|
||||
0:00:48 == ts9 ->
|
||||
0:00:49 == ts10 ->
|
||||
0:00:50 == ts11 ->
|
||||
0:00:51 == ts12 ->
|
||||
0:00:52 == ts7 ->
|
||||
0:00:53 == ts8 ->
|
||||
0:00:54 == ts1 ->
|
||||
0:00:55 == ts2 ->
|
||||
0:00:56 == ts3 ->
|
||||
0:00:57 == ts13 ->
|
||||
0:00:58 == ts7 ->
|
||||
0:00:59 == ts8 ->
|
||||
0:01:00 == ts9 ->
|
||||
0:01:01 == ts10 ->
|
||||
0:01:02 == ts11 ->
|
||||
0:01:03 == ts12 ->
|
||||
0:01:04 == ts7 ->
|
||||
0:01:05 == ts8 ->
|
||||
0:01:06 == ts9 ->
|
||||
0:01:07 == ts10 ->
|
||||
0:01:08 == ts11 ->
|
||||
0:01:09 == ts12 ->
|
||||
0:01:10 == ts7 ->
|
||||
0:01:11 == ts8 ->
|
||||
0:01:12 == ts9 ->
|
||||
0:01:13 == ts10 ->
|
||||
0:01:14 == ts11 ->
|
||||
0:01:15 == ts12 ->
|
||||
0:01:16 == ts7 ->
|
||||
0:01:17 == ts8 ->
|
||||
0:01:18 == ts9 ->
|
||||
0:01:19 == ts10 ->
|
||||
0:01:20 == ts11 ->
|
||||
0:01:21 == ts12 ->
|
||||
0:01:22 == ts7 ->
|
||||
0:01:23 == ts8 ->
|
||||
0:01:24 == ts9 ->
|
||||
0:01:25 == ts10 ->
|
||||
0:01:26 == ts11 ->
|
||||
0:01:27 == ts12 ->
|
||||
0:01:28 == ts7 ->
|
||||
0:01:29 == ts8 ->
|
||||
0:01:30 == ts9 ->
|
||||
0:01:31 == ts10 ->
|
||||
0:01:32 == ts11 ->
|
||||
0:01:33 == ts12 ->
|
||||
0:01:34 == ts7 ->
|
||||
0:01:35 == ts8 ->
|
||||
0:01:36 == ts9 ->
|
||||
0:01:37 == ts10 ->
|
||||
0:01:38 == ts11 ->
|
||||
0:01:39 == ts12 ->
|
||||
0:01:40 == ts7 ->
|
||||
0:01:41 == ts8 ->
|
||||
0:01:42 == ts9 ->
|
||||
0:01:43 == ts10 ->
|
||||
0:01:44 == ts11 ->
|
||||
0:01:45 == ts12 ->
|
||||
0:01:46 == ts7 ->
|
||||
0:01:47 == ts8 ->
|
||||
0:01:48 == ts1 ->
|
||||
0:01:49 == ts2 ->
|
||||
0:01:50 == ts3 ->
|
||||
0:01:51 == ts4 ->
|
||||
0:01:52 == ts5 ->
|
||||
0:01:53 == ts6 ->
|
||||
|
||||
0:01:54 == off
|
||||
41
sbagen-1.4.5/examples/contrib/ghostlab/bells-2.sbg
Normal file
41
sbagen-1.4.5/examples/contrib/ghostlab/bells-2.sbg
Normal file
@@ -0,0 +1,41 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Bells II
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: bell+70/10
|
||||
ts2: bell+70/10
|
||||
ts3: bell+70/10
|
||||
ts4: bell+70/10
|
||||
ts5: bell+70/10
|
||||
ts6: bell+70/10
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
|
||||
0:00:40 == off
|
||||
41
sbagen-1.4.5/examples/contrib/ghostlab/bells-3.sbg
Normal file
41
sbagen-1.4.5/examples/contrib/ghostlab/bells-3.sbg
Normal file
@@ -0,0 +1,41 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Bells III
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: bell+70/20 bell+60/20 bell+50/10
|
||||
ts2: bell+70/20 bell+60/20 bell+50/10
|
||||
ts3: bell+70/20 bell+60/20 bell+50/10
|
||||
ts4: bell+70/20 bell+60/20 bell+50/10
|
||||
ts5: bell+70/20 bell+60/20 bell+50/10
|
||||
ts6: bell+70/20 bell+60/20 bell+50/10
|
||||
|
||||
off: -
|
||||
|
||||
23:59:58 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
|
||||
0:00:18 == off
|
||||
65
sbagen-1.4.5/examples/contrib/ghostlab/drop-001.sbg
Normal file
65
sbagen-1.4.5/examples/contrib/ghostlab/drop-001.sbg
Normal file
@@ -0,0 +1,65 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 001
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30
|
||||
ts2: 6000+12.5/30 50+12.5/30
|
||||
ts3: 50+12.5/30 6000+12.5/30
|
||||
ts4: 6000+12.5/30 50+12.5/30
|
||||
ts5: 50+12.5/30 6000+12.5/30
|
||||
ts6: 6000+12.5/30 50+12.5/30
|
||||
ts7: 50+12.5/30 6000+12.5/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts7 ->
|
||||
0:00:07 == ts1 ->
|
||||
0:00:08 == ts2 ->
|
||||
0:00:09 == ts3 ->
|
||||
0:00:10 == ts4 ->
|
||||
0:00:11 == ts5 ->
|
||||
0:00:12 == ts6 ->
|
||||
0:00:13 == ts7 ->
|
||||
0:00:14 == ts1 ->
|
||||
0:00:15 == ts2 ->
|
||||
0:00:16 == ts3 ->
|
||||
0:00:17 == ts4 ->
|
||||
0:00:18 == ts5 ->
|
||||
0:00:19 == ts6 ->
|
||||
0:00:20 == ts7 ->
|
||||
0:00:21 == ts1 ->
|
||||
0:00:22 == ts2 ->
|
||||
0:00:23 == ts3 ->
|
||||
0:00:24 == ts4 ->
|
||||
0:00:25 == ts5 ->
|
||||
0:00:26 == ts6 ->
|
||||
0:00:27 == ts7 ->
|
||||
0:00:28 == ts1 ->
|
||||
0:00:29 == ts2 ->
|
||||
0:00:30 == ts3 ->
|
||||
0:00:31 == ts4 ->
|
||||
0:00:32 == ts5 ->
|
||||
0:00:33 == ts6 ->
|
||||
0:00:34 == ts7 ->
|
||||
0:00:35 == ts1 ->
|
||||
0:00:36 == ts2 ->
|
||||
0:00:37 == ts3 ->
|
||||
0:00:38 == ts4 ->
|
||||
0:00:39 == ts5 ->
|
||||
0:00:40 == ts6 ->
|
||||
0:00:41 == ts7 ->
|
||||
|
||||
0:00:42 == off
|
||||
65
sbagen-1.4.5/examples/contrib/ghostlab/drop-002.sbg
Normal file
65
sbagen-1.4.5/examples/contrib/ghostlab/drop-002.sbg
Normal file
@@ -0,0 +1,65 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 002
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30 50+12.5/30
|
||||
ts2: 6000+12.5/30 50+12.5/30 6000+12.5/30
|
||||
ts3: 50+12.5/30 6000+12.5/30 50+12.5/30
|
||||
ts4: 6000+12.5/30 50+12.5/30 6000+12.5/30
|
||||
ts5: 50+12.5/30 6000+12.5/30 50+12.5/30
|
||||
ts6: 6000+12.5/30 50+12.5/30 6000+12.5/30
|
||||
ts7: 50+12.5/30 6000+12.5/30 50+12.5/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts7 ->
|
||||
0:00:07 == ts1 ->
|
||||
0:00:08 == ts2 ->
|
||||
0:00:09 == ts3 ->
|
||||
0:00:10 == ts4 ->
|
||||
0:00:11 == ts5 ->
|
||||
0:00:12 == ts6 ->
|
||||
0:00:13 == ts7 ->
|
||||
0:00:14 == ts1 ->
|
||||
0:00:15 == ts2 ->
|
||||
0:00:16 == ts3 ->
|
||||
0:00:17 == ts4 ->
|
||||
0:00:18 == ts5 ->
|
||||
0:00:19 == ts6 ->
|
||||
0:00:20 == ts7 ->
|
||||
0:00:21 == ts1 ->
|
||||
0:00:22 == ts2 ->
|
||||
0:00:23 == ts3 ->
|
||||
0:00:24 == ts4 ->
|
||||
0:00:25 == ts5 ->
|
||||
0:00:26 == ts6 ->
|
||||
0:00:27 == ts7 ->
|
||||
0:00:28 == ts1 ->
|
||||
0:00:29 == ts2 ->
|
||||
0:00:30 == ts3 ->
|
||||
0:00:31 == ts4 ->
|
||||
0:00:32 == ts5 ->
|
||||
0:00:33 == ts6 ->
|
||||
0:00:34 == ts7 ->
|
||||
0:00:35 == ts1 ->
|
||||
0:00:36 == ts2 ->
|
||||
0:00:37 == ts3 ->
|
||||
0:00:38 == ts4 ->
|
||||
0:00:39 == ts5 ->
|
||||
0:00:40 == ts6 ->
|
||||
0:00:41 == ts7 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-007.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-007.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 007
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30
|
||||
ts2: 6000+12.5/30 50+12.5/30
|
||||
ts3: 50+12.5/30 6000+12.5/30
|
||||
ts4: 6000+12.5/30 50+12.5/30
|
||||
ts5: 50+12.5/30 6000+12.5/30
|
||||
ts6: 6000+12.5/30 50+12.5/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-008.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-008.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 008
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30
|
||||
ts2: 6000+12.5/30 50+12.5/30
|
||||
ts3: 60+12.5/30 5000+12.5/30
|
||||
ts4: 4000+12.5/30 70+12.5/30
|
||||
ts5: 80+12.5/30 3000+12.5/30
|
||||
ts6: 2000+12.5/30 90+12.5/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
66
sbagen-1.4.5/examples/contrib/ghostlab/drop-009.sbg
Normal file
66
sbagen-1.4.5/examples/contrib/ghostlab/drop-009.sbg
Normal file
@@ -0,0 +1,66 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 009
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30
|
||||
ts2: 5000+12.5/30 100+12.5/30
|
||||
ts3: 50+12.5/30 6000+12.5/30
|
||||
ts4: 5000+12.5/30 100+12.5/30
|
||||
ts5: 50+12.5/30 6000+12.5/30
|
||||
ts6: 5000+12.5/30 100+12.5/30
|
||||
ts7: 50+12.5/30 6000+12.5/30
|
||||
ts8: 5000+12.5/30 100+12.5/30
|
||||
ts9: 50+12.5/30 6000+12.5/30
|
||||
ts10: 5000+12.5/30 100+12.5/30
|
||||
ts11: 50+12.5/30 6000+12.5/30
|
||||
ts12: 5000+12.5/30 100+12.5/30
|
||||
ts13: 50+12.5/30 6000+12.5/30
|
||||
ts14: 5000+12.5/30 100+12.5/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts7 ->
|
||||
0:00:07 == ts8 ->
|
||||
0:00:08 == ts9 ->
|
||||
0:00:09 == ts10 ->
|
||||
0:00:10 == ts11 ->
|
||||
0:00:11 == ts12 ->
|
||||
0:00:12 == ts13 ->
|
||||
0:00:13 == ts14 ->
|
||||
0:00:14 == ts5 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-010.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-010.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 10
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30 bell+4000/30
|
||||
ts2: 6000+12.5/30 50+12.5/30 bell-4000/30
|
||||
ts3: 60+12.5/30 5000+12.5/30 bell+4000/30
|
||||
ts4: 4000+12.5/30 70+12.5/30 bell-4000/30
|
||||
ts5: 80+12.5/30 3000+12.5/30 bell+4000/30
|
||||
ts6: 2000+12.5/30 90+12.5/30 bell-4000/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-011.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-011.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 11
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 50+12.5/30 6000+12.5/30 bell+7000/30
|
||||
ts2: 6000+12.5/30 50+12.5/30 bell-7000/30
|
||||
ts3: 60+12.5/30 5000+12.5/30 bell+7000/30
|
||||
ts4: 4000+12.5/30 70+12.5/30 bell-7000/30
|
||||
ts5: 80+12.5/30 3000+12.5/30 bell+7000/30
|
||||
ts6: 2000+12.5/30 90+12.5/30 bell-7000/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-012.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-012.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 12
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 70+12.5/30 6000+12.5/30 bell+50/30
|
||||
ts2: 6000+12.5/30 70+12.5/30 bell-50/30
|
||||
ts3: 70+12.5/30 6000+12.5/30 bell+50/30
|
||||
ts4: 6000+12.5/30 70+12.5/30 bell-50/30
|
||||
ts5: 70+12.5/30 6000+12.5/30 bell+50/30
|
||||
ts6: 6000+12.5/30 70+12.5/30 bell-50/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-013.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-013.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 13
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 200+12.5/30 6000+12.5/30 bell+100/30
|
||||
ts2: 6000+12.5/30 200+12.5/30 bell+100/30
|
||||
ts3: 200+12.5/30 6000+12.5/30 bell+100/30
|
||||
ts4: 6000+12.5/30 200+12.5/30 bell+100/30
|
||||
ts5: 200+12.5/30 6000+12.5/30 bell+100/30
|
||||
ts6: 6000+12.5/30 200+12.5/30 bell+100/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:42 == off
|
||||
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-014.sbg
Normal file
58
sbagen-1.4.5/examples/contrib/ghostlab/drop-014.sbg
Normal file
@@ -0,0 +1,58 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Drop 14
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts2: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
ts3: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts4: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
ts5: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts6: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
|
||||
0:00:36 == off
|
||||
145
sbagen-1.4.5/examples/contrib/ghostlab/mod-003.sbg
Normal file
145
sbagen-1.4.5/examples/contrib/ghostlab/mod-003.sbg
Normal file
@@ -0,0 +1,145 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Mod 003
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 59+1.2/10 110+1.3/10 288+3.7/10
|
||||
ts2: 100+1.5/10 200+4.0/10 250+4.0/10
|
||||
ts3: bell+4500/20
|
||||
ts4: 59+1.2/10 110+1.3/10 288+3.7/10
|
||||
ts5: 100+1.5/10 200+4.0/10 250+4.0/10
|
||||
ts6: bell+4500/20
|
||||
|
||||
ts7: bell+4500/30
|
||||
ts8: bell+4500/40
|
||||
ts9: bell+4500/50
|
||||
ts10: bell+4500/60
|
||||
ts11: bell+4500/70
|
||||
ts12: bell+4500/80
|
||||
ts13: bell+4500/90
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts13 ->
|
||||
0:00:22 == ts7 ->
|
||||
0:00:23 == ts8 ->
|
||||
0:00:24 == ts9 ->
|
||||
0:00:25 == ts10 ->
|
||||
0:00:26 == ts11 ->
|
||||
0:00:27 == ts12 ->
|
||||
0:00:28 == ts7 ->
|
||||
0:00:29 == ts8 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts13 ->
|
||||
0:00:34 == ts7 ->
|
||||
0:00:35 == ts8 ->
|
||||
0:00:36 == ts9 ->
|
||||
0:00:37 == ts10 ->
|
||||
0:00:38 == ts11 ->
|
||||
0:00:39 == ts12 ->
|
||||
0:00:40 == ts7 ->
|
||||
0:00:41 == ts8 ->
|
||||
0:00:42 == ts1 ->
|
||||
0:00:43 == ts2 ->
|
||||
0:00:44 == ts3 ->
|
||||
0:00:45 == ts13 ->
|
||||
0:00:46 == ts7 ->
|
||||
0:00:47 == ts8 ->
|
||||
0:00:48 == ts9 ->
|
||||
0:00:49 == ts10 ->
|
||||
0:00:50 == ts11 ->
|
||||
0:00:51 == ts12 ->
|
||||
0:00:52 == ts7 ->
|
||||
0:00:53 == ts8 ->
|
||||
0:00:54 == ts1 ->
|
||||
0:00:55 == ts2 ->
|
||||
0:00:56 == ts3 ->
|
||||
0:00:57 == ts13 ->
|
||||
0:00:58 == ts7 ->
|
||||
0:00:59 == ts8 ->
|
||||
0:01:00 == ts9 ->
|
||||
0:01:01 == ts10 ->
|
||||
0:01:02 == ts11 ->
|
||||
0:01:03 == ts12 ->
|
||||
0:01:04 == ts7 ->
|
||||
0:01:05 == ts8 ->
|
||||
0:01:06 == ts9 ->
|
||||
0:01:07 == ts10 ->
|
||||
0:01:08 == ts11 ->
|
||||
0:01:09 == ts12 ->
|
||||
0:01:10 == ts7 ->
|
||||
0:01:11 == ts8 ->
|
||||
0:01:12 == ts9 ->
|
||||
0:01:13 == ts10 ->
|
||||
0:01:14 == ts11 ->
|
||||
0:01:15 == ts12 ->
|
||||
0:01:16 == ts7 ->
|
||||
0:01:17 == ts8 ->
|
||||
0:01:18 == ts9 ->
|
||||
0:01:19 == ts10 ->
|
||||
0:01:20 == ts11 ->
|
||||
0:01:21 == ts12 ->
|
||||
0:01:22 == ts7 ->
|
||||
0:01:23 == ts8 ->
|
||||
0:01:24 == ts9 ->
|
||||
0:01:25 == ts10 ->
|
||||
0:01:26 == ts11 ->
|
||||
0:01:27 == ts12 ->
|
||||
0:01:28 == ts7 ->
|
||||
0:01:29 == ts8 ->
|
||||
0:01:30 == ts9 ->
|
||||
0:01:31 == ts10 ->
|
||||
0:01:32 == ts11 ->
|
||||
0:01:33 == ts12 ->
|
||||
0:01:34 == ts7 ->
|
||||
0:01:35 == ts8 ->
|
||||
0:01:36 == ts9 ->
|
||||
0:01:37 == ts10 ->
|
||||
0:01:38 == ts11 ->
|
||||
0:01:39 == ts12 ->
|
||||
0:01:40 == ts7 ->
|
||||
0:01:41 == ts8 ->
|
||||
0:01:42 == ts9 ->
|
||||
0:01:43 == ts10 ->
|
||||
0:01:44 == ts11 ->
|
||||
0:01:45 == ts12 ->
|
||||
0:01:46 == ts7 ->
|
||||
0:01:47 == ts8 ->
|
||||
0:01:48 == ts1 ->
|
||||
0:01:49 == ts2 ->
|
||||
0:01:50 == ts3 ->
|
||||
0:01:51 == ts4 ->
|
||||
0:01:52 == ts5 ->
|
||||
0:01:53 == ts6 ->
|
||||
|
||||
0:01:54 == off
|
||||
55
sbagen-1.4.5/examples/contrib/ghostlab/mod-004.sbg
Normal file
55
sbagen-1.4.5/examples/contrib/ghostlab/mod-004.sbg
Normal file
@@ -0,0 +1,55 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Mod 004
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 59+1.2/10 110+1.3/10 288+3.7/10
|
||||
ts2: 100+1.5/10 200+4.0/10 250+4.0/10
|
||||
ts3: -
|
||||
ts4: 59+1.2/10 110+1.3/10 288+3.7/10
|
||||
ts5: 100+1.5/10 200+4.0/10 250+4.0/10
|
||||
ts6: -
|
||||
|
||||
ts7: bell+4500/30
|
||||
ts8: bell+4500/40
|
||||
ts9: bell+4500/50
|
||||
ts10: bell+4500/60
|
||||
ts11: bell+4500/70
|
||||
ts12: bell+4500/80
|
||||
ts13: bell+4500/90
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
|
||||
0:00:24 == off
|
||||
47
sbagen-1.4.5/examples/contrib/ghostlab/mod-005.sbg
Normal file
47
sbagen-1.4.5/examples/contrib/ghostlab/mod-005.sbg
Normal file
@@ -0,0 +1,47 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Mod 005
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 59+7.83/10 110+7.83/10 288+7.83/10
|
||||
ts2: 40+7.83/10
|
||||
ts3: -
|
||||
ts4: 59+7.83/10 110+7.83/10 288+7.83/10
|
||||
ts5: 40+7.83/10
|
||||
ts6: -
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
|
||||
0:00:24 == off
|
||||
55
sbagen-1.4.5/examples/contrib/ghostlab/mod-006.sbg
Normal file
55
sbagen-1.4.5/examples/contrib/ghostlab/mod-006.sbg
Normal file
@@ -0,0 +1,55 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Mod 006
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 59+1.2/10 110+1.3/10 100+3.7/10
|
||||
ts2: 59+1.5/10 59+4.0/10 40+4.0/30
|
||||
ts3: -
|
||||
ts4: 59+1.2/10 110+1.3/10 100+3.7/10
|
||||
ts5: 59+1.5/10 59+4.0/10 40+4.0/30
|
||||
ts6: -
|
||||
|
||||
ts7: bell+4500/30
|
||||
ts8: bell+4500/40
|
||||
ts9: bell+4500/50
|
||||
ts10: bell+4500/60
|
||||
ts11: bell+4500/70
|
||||
ts12: bell+4500/80
|
||||
ts13: bell+4500/90
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
|
||||
0:00:24 == off
|
||||
148
sbagen-1.4.5/examples/contrib/ghostlab/mod-12-0.sbg
Normal file
148
sbagen-1.4.5/examples/contrib/ghostlab/mod-12-0.sbg
Normal file
@@ -0,0 +1,148 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## 12HzModulation
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+12/30
|
||||
t01: 100+12/30 200+12/60
|
||||
t02: 100+12/30 4000+12/60
|
||||
t03: 100+12/30 50+12/60
|
||||
t04: 100+12/30
|
||||
t05: 100+12/30 200+12/60
|
||||
t06: 100+12/30 4000+12/60
|
||||
t07: 100+12/30 50+12/60
|
||||
t08: 100+12/30
|
||||
t09: 100+12/30 200+12/60
|
||||
t10: 100+12/30 4000+12/60
|
||||
t11: 100+12/30 50+12/60
|
||||
t12: 100+12/30
|
||||
t13: 100+12/30 200+12/60
|
||||
t14: 100+12/30 4000+12/60
|
||||
t15: 100+12/30 50+12/60
|
||||
t16: 100+12/30
|
||||
t17: 100+12/30 200+12/60
|
||||
t18: 100+12/30 4000+12/60
|
||||
t19: 100+12/30 50+12/60
|
||||
t20: 100+12/30
|
||||
t21: 100+12/30 200+12/60
|
||||
t22: 100+12/30 4000+12/60
|
||||
t23: 100+12/30 50+12/60
|
||||
t24: 100+12/30
|
||||
t25: 100+12/30 200+12/60
|
||||
t26: 100+12/30 4000+12/60
|
||||
t27: 100+12/30 50+12/60
|
||||
t28: 100+12/30
|
||||
t29: 100+12/30 200+12/60
|
||||
t30: 100+12/30 4000+12/60
|
||||
t31: 100+12/30 50+12/60
|
||||
t32: 100+12/30
|
||||
t33: 100+12/30 200+12/60
|
||||
t34: 100+12/30 4000+12/60
|
||||
t35: 100+12/30 50+12/60
|
||||
t36: 100+12/30
|
||||
t37: 100+12/30 200+12/60
|
||||
t38: 100+12/30 4000+12/60
|
||||
t39: 100+12/30 50+12/60
|
||||
t40: 100+12/30
|
||||
t41: 100+12/30 200+12/60
|
||||
t42: 100+12/30 4000+12/60
|
||||
t43: 100+12/30 50+12/60
|
||||
t44: 100+12/30
|
||||
t45: 100+12/30 200+12/60
|
||||
t46: 100+12/30 4000+12/60
|
||||
t47: 100+12/30 50+12/60
|
||||
t48: 100+12/30
|
||||
t49: 100+12/30 200+12/60
|
||||
t50: 100+12/30 4000+12/60
|
||||
t51: 100+12/30 50+12/60
|
||||
t52: 100+12/30
|
||||
t53: 100+12/30 200+12/60
|
||||
t54: 100+12/30 4000+12/60
|
||||
t55: 100+12/30 50+12/60
|
||||
t56: 100+12/30
|
||||
t57: 100+12/30 200+12/60
|
||||
t58: 100+12/30 4000+12/60
|
||||
t59: 100+12/30 50+12/60
|
||||
t60: 100+12/30
|
||||
t61: 100+12/30 200+12/60
|
||||
t62: 100+12/30 4000+12/60
|
||||
t63: 100+12/30 50+12/60
|
||||
t64: 100+12/30
|
||||
|
||||
0:00:10 == off ->
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
0:00:50 == t36 ->
|
||||
0:00:51 == t37 ->
|
||||
0:00:52 == t38 ->
|
||||
0:00:53 == t39 ->
|
||||
0:00:54 == t40 ->
|
||||
0:00:55 == t41 ->
|
||||
0:00:56 == t42 ->
|
||||
0:00:57 == t43 ->
|
||||
0:00:58 == t44 ->
|
||||
0:00:59 == t45 ->
|
||||
0:01:00 == t46 ->
|
||||
0:01:01 == t47 ->
|
||||
0:01:02 == t48 ->
|
||||
0:01:03 == t49 ->
|
||||
0:01:04 == t50 ->
|
||||
0:01:05 == t51 ->
|
||||
0:01:06 == t52 ->
|
||||
0:01:07 == t53 ->
|
||||
0:01:08 == t54 ->
|
||||
0:01:09 == t55 ->
|
||||
0:01:10 == t56 ->
|
||||
0:01:11 == t57 ->
|
||||
0:01:12 == t58 ->
|
||||
0:01:13 == t59 ->
|
||||
0:01:14 == t60 ->
|
||||
0:01:15 == t61 ->
|
||||
0:01:16 == t62 ->
|
||||
0:01:17 == t63 ->
|
||||
0:01:18 == t64 ->
|
||||
|
||||
0:01:22 == off
|
||||
87
sbagen-1.4.5/examples/contrib/ghostlab/mod-7-83.sbg
Normal file
87
sbagen-1.4.5/examples/contrib/ghostlab/mod-7-83.sbg
Normal file
@@ -0,0 +1,87 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## 7.83 Modulation
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+7.83/30
|
||||
t01: 100+7.83/30 200+25/60
|
||||
t02: 100+7.83/30 4000+25/60
|
||||
t03: 109+7.83/30 50+25/60
|
||||
t04: 100+7.83/30 40+25/60
|
||||
t05: 50+7.83/30
|
||||
t06: 100+7.83/30
|
||||
t07: 100+7.83/30 200+25/60
|
||||
t08: 100+7.83/30 4000+25/60
|
||||
t09: 109+7.83/30 50+25/60
|
||||
t10: 100+7.83/30 40+25/60
|
||||
t11: 50+7.83/30
|
||||
t12: 100+7.83/30
|
||||
t13: 100+7.83/30 200+25/60
|
||||
t14: 100+7.83/30 4000+25/60
|
||||
t15: 109+7.83/30 50+25/60
|
||||
t16: 100+7.83/30 40+25/60
|
||||
t17: 50+7.83/30
|
||||
t18: 100+7.83/30
|
||||
t19: 100+7.83/30 200+25/60
|
||||
t20: 100+7.83/30 4000+25/60
|
||||
t21: 109+7.83/30 50+25/60
|
||||
t22: 100+7.83/30 40+25/60
|
||||
t23: 50+7.83/30
|
||||
t24: 100+7.83/30
|
||||
t25: 100+7.83/30 200+25/60
|
||||
t26: 100+7.83/30 4000+25/60
|
||||
t27: 109+7.83/30 50+25/60
|
||||
t28: 100+7.83/30 40+25/60
|
||||
t29: 50+7.83/30
|
||||
t30: 100+7.83/30
|
||||
t31: 100+7.83/30 200+25/60
|
||||
t32: 100+7.83/30 4000+25/60
|
||||
t33: 109+7.83/30 50+25/60
|
||||
t34: 100+7.83/30 40+25/60
|
||||
t35: 50+7.83/30
|
||||
|
||||
0:00:00 == off ->
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-1.sbg
Normal file
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-1.sbg
Normal file
@@ -0,0 +1,90 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulations I
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30
|
||||
t01: 100+7.83/30
|
||||
t02: 100+40/30
|
||||
t03: 100+7.83/30
|
||||
t04: 100+40/30
|
||||
t05: 100+7.83/30
|
||||
t06: 100+40/30
|
||||
t07: 100+7.83/30
|
||||
t08: 100+40/30
|
||||
t09: 100+7.83/30
|
||||
t10: 100+40/30
|
||||
t11: 100+7.83/30
|
||||
t12: 100+40/30
|
||||
t13: 100+7.83/30
|
||||
t14: 100+40/30
|
||||
t15: 100+7.83/30
|
||||
t16: 100+40/30
|
||||
t17: 100+7.83/30
|
||||
t18: 100+40/30
|
||||
t19: 100+7.83/30
|
||||
t20: 100+40/30
|
||||
t21: 100+7.83/30
|
||||
t22: 100+40/30
|
||||
t23: 100+7.83/30
|
||||
t24: 100+40/30
|
||||
t25: 100+7.83/30
|
||||
t26: 100+40/30
|
||||
t27: 100+7.83/30
|
||||
t28: 100+40/30
|
||||
t29: 100+7.83/30
|
||||
t30: 100+40/30
|
||||
t31: 100+7.83/30
|
||||
t32: 100+40/30
|
||||
t33: 100+7.83/30
|
||||
t34: 100+40/30
|
||||
t35: 100+7.83/30
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-2.sbg
Normal file
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-2.sbg
Normal file
@@ -0,0 +1,90 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulation II
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30
|
||||
t01: 100+0/30
|
||||
t02: 100+100/30
|
||||
t03: 100+0/30
|
||||
t04: 100+100/30
|
||||
t05: 100+0/30
|
||||
t06: 100+100/30
|
||||
t07: 100+0/30
|
||||
t08: 100+100/30
|
||||
t09: 100+0/30
|
||||
t10: 100+100/30
|
||||
t11: 100+0/30
|
||||
t12: 100+100/30
|
||||
t13: 100+0/30
|
||||
t14: 100+100/30
|
||||
t15: 100+0/30
|
||||
t16: 100+100/30
|
||||
t17: 100+0/30
|
||||
t18: 100+100/30
|
||||
t19: 100+0/30
|
||||
t20: 100+100/30
|
||||
t21: 100+0/30
|
||||
t22: 100+100/30
|
||||
t23: 100+0/30
|
||||
t24: 100+100/30
|
||||
t25: 100+0/30
|
||||
t26: 100+100/30
|
||||
t27: 100+0/30
|
||||
t28: 100+100/30
|
||||
t29: 100+0/30
|
||||
t30: 100+100/30
|
||||
t31: 100+0/30
|
||||
t32: 100+100/30
|
||||
t33: 100+0/30
|
||||
t34: 100+100/30
|
||||
t35: 100+0/30
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-3.sbg
Normal file
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-3.sbg
Normal file
@@ -0,0 +1,90 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulations III
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30 300+40/20
|
||||
t01: 100+0/30 200+10/20
|
||||
t02: 100+100/30 300+40/20
|
||||
t03: 100+0/30 200+10/20
|
||||
t04: 100+100/30 300+40/20
|
||||
t05: 100+0/30 200+10/20
|
||||
t06: 100+100/30 300+40/20
|
||||
t07: 100+0/30 200+10/20
|
||||
t08: 100+100/30 300+40/20
|
||||
t09: 100+0/30 200+10/20
|
||||
t10: 100+100/30 300+40/20
|
||||
t11: 100+0/30 200+10/20
|
||||
t12: 100+100/30 300+40/20
|
||||
t13: 100+0/30 200+10/20
|
||||
t14: 100+100/30 300+40/20
|
||||
t15: 100+0/30 200+10/20
|
||||
t16: 100+100/30 300+40/20
|
||||
t17: 100+0/30 200+10/20
|
||||
t18: 100+100/30 300+40/20
|
||||
t19: 100+0/30 200+10/20
|
||||
t20: 100+100/30 300+40/20
|
||||
t21: 100+0/30 200+10/20
|
||||
t22: 100+100/30 300+40/20
|
||||
t23: 100+0/30 200+10/20
|
||||
t24: 100+100/30 300+40/20
|
||||
t25: 100+0/30 200+10/20
|
||||
t26: 100+100/30 300+40/20
|
||||
t27: 100+0/30 200+10/20
|
||||
t28: 100+100/30 300+40/20
|
||||
t29: 100+0/30 200+10/20
|
||||
t30: 100+100/30 300+40/20
|
||||
t31: 100+0/30 200+10/20
|
||||
t32: 100+100/30 300+40/20
|
||||
t33: 100+0/30 200+10/20
|
||||
t34: 100+100/30 300+40/20
|
||||
t35: 100+0/30 200+10/20
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-4.sbg
Normal file
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-4.sbg
Normal file
@@ -0,0 +1,90 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulations IV
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30 300+40/20
|
||||
t01: 100+0/30 200+10/20 400+20/20
|
||||
t02: 100+100/30 300+40/20
|
||||
t03: 100+0/30 200+10/20 400+20/20
|
||||
t04: 100+100/30 300+40/20
|
||||
t05: 100+0/30 200+10/20 400+20/20
|
||||
t06: 100+100/30 300+40/20
|
||||
t07: 100+0/30 200+10/20 400+20/20
|
||||
t08: 100+100/30 300+40/20
|
||||
t09: 100+0/30 200+10/20 400+20/20
|
||||
t10: 100+100/30 300+40/20
|
||||
t11: 100+0/30 200+10/20 400+20/20
|
||||
t12: 100+100/30 300+40/20
|
||||
t13: 100+0/30 200+10/20 400+20/20
|
||||
t14: 100+100/30 300+40/20
|
||||
t15: 100+0/30 200+10/20 400+20/20
|
||||
t16: 100+100/30 300+40/20
|
||||
t17: 100+0/30 200+10/20 400+20/20
|
||||
t18: 100+100/30 300+40/20
|
||||
t19: 100+0/30 200+10/20 400+20/20
|
||||
t20: 100+100/30 300+40/20
|
||||
t21: 100+0/30 200+10/20 400+20/20
|
||||
t22: 100+100/30 300+40/20
|
||||
t23: 100+0/30 200+10/20 400+20/20
|
||||
t24: 100+100/30 300+40/20
|
||||
t25: 100+0/30 200+10/20 400+20/20
|
||||
t26: 100+100/30 300+40/20
|
||||
t27: 100+0/30 200+10/20 400+20/20
|
||||
t28: 100+100/30 300+40/20
|
||||
t29: 100+0/30 200+10/20 400+20/20
|
||||
t30: 100+100/30 300+40/20
|
||||
t31: 100+0/30 200+10/20 400+20/20
|
||||
t32: 100+100/30 300+40/20
|
||||
t33: 100+0/30 200+10/20 400+20/20
|
||||
t34: 100+100/30 300+40/20
|
||||
t35: 100+0/30 200+10/20 400+20/20
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-5.sbg
Normal file
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-5.sbg
Normal file
@@ -0,0 +1,90 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulations V
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30 300+0/20
|
||||
t01: 100+0/30 200+100/20 400+20/20
|
||||
t02: 100+100/30 300+0/20
|
||||
t03: 100+0/30 200+100/20 400+20/20
|
||||
t04: 100+100/30 300+0/20
|
||||
t05: 100+0/30 200+100/20 400+20/20
|
||||
t06: 100+100/30 300+0/20
|
||||
t07: 100+0/30 200+100/20 400+20/20
|
||||
t08: 100+100/30 300+0/20
|
||||
t09: 100+0/30 200+100/20 400+20/20
|
||||
t10: 100+100/30 300+0/20
|
||||
t11: 100+0/30 200+100/20 400+20/20
|
||||
t12: 100+100/30 300+0/20
|
||||
t13: 100+0/30 200+100/20 400+20/20
|
||||
t14: 100+100/30 300+0/20
|
||||
t15: 100+0/30 200+100/20 400+20/20
|
||||
t16: 100+100/30 300+0/20
|
||||
t17: 100+0/30 200+100/20 400+20/20
|
||||
t18: 100+100/30 300+0/20
|
||||
t19: 100+0/30 200+100/20 400+20/20
|
||||
t20: 100+100/30 300+0/20
|
||||
t21: 100+0/30 200+100/20 400+20/20
|
||||
t22: 100+100/30 300+0/20
|
||||
t23: 100+0/30 200+100/20 400+20/20
|
||||
t24: 100+100/30 300+0/20
|
||||
t25: 100+0/30 200+100/20 400+20/20
|
||||
t26: 100+100/30 300+0/20
|
||||
t27: 100+0/30 200+100/20 400+20/20
|
||||
t28: 100+100/30 300+0/20
|
||||
t29: 100+0/30 200+100/20 400+20/20
|
||||
t30: 100+100/30 300+0/20
|
||||
t31: 100+0/30 200+100/20 400+20/20
|
||||
t32: 100+100/30 300+0/20
|
||||
t33: 100+0/30 200+100/20 400+20/20
|
||||
t34: 100+100/30 300+0/20
|
||||
t35: 100+0/30 200+100/20 400+20/20
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-6.sbg
Normal file
90
sbagen-1.4.5/examples/contrib/ghostlab/modulations-6.sbg
Normal file
@@ -0,0 +1,90 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulations VI
|
||||
##
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30 300+0/20
|
||||
t01: 100+0/30 200+400/20 400+20/20
|
||||
t02: 100+100/30 300+0/20
|
||||
t03: 100+0/30 200+400/20 400+20/20
|
||||
t04: 100+100/30 300+0/20
|
||||
t05: 100+0/30 200+400/20 400+20/20
|
||||
t06: 100+100/30 300+0/20
|
||||
t07: 100+0/30 200+400/20 400+20/20
|
||||
t08: 100+100/30 300+0/20
|
||||
t09: 100+0/30 200+400/20 400+20/20
|
||||
t10: 100+100/30 300+0/20
|
||||
t11: 100+0/30 200+400/20 400+20/20
|
||||
t12: 100+100/30 300+0/20
|
||||
t13: 100+0/30 200+400/20 400+20/20
|
||||
t14: 100+100/30 300+0/20
|
||||
t15: 100+0/30 200+400/20 400+20/20
|
||||
t16: 100+100/30 300+0/20
|
||||
t17: 100+0/30 200+400/20 400+20/20
|
||||
t18: 100+100/30 300+0/20
|
||||
t19: 100+0/30 200+400/20 400+20/20
|
||||
t20: 100+100/30 300+0/20
|
||||
t21: 100+0/30 200+400/20 400+20/20
|
||||
t22: 100+100/30 300+0/20
|
||||
t23: 100+0/30 200+400/20 400+20/20
|
||||
t24: 100+100/30 300+0/20
|
||||
t25: 100+0/30 200+400/20 400+20/20
|
||||
t26: 100+100/30 300+0/20
|
||||
t27: 100+0/30 200+400/20 400+20/20
|
||||
t28: 100+100/30 300+0/20
|
||||
t29: 100+0/30 200+400/20 400+20/20
|
||||
t30: 100+100/30 300+0/20
|
||||
t31: 100+0/30 200+400/20 400+20/20
|
||||
t32: 100+100/30 300+0/20
|
||||
t33: 100+0/30 200+400/20 400+20/20
|
||||
t34: 100+100/30 300+0/20
|
||||
t35: 100+0/30 200+400/20 400+20/20
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
89
sbagen-1.4.5/examples/contrib/ghostlab/modulations-7.sbg
Normal file
89
sbagen-1.4.5/examples/contrib/ghostlab/modulations-7.sbg
Normal file
@@ -0,0 +1,89 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Modulations VII
|
||||
##
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 100+100/30 300+0/20 50+300/10
|
||||
t01: 100+0/30 200+400/20 400+20/20
|
||||
t02: 100+100/30 300+0/20 50+300/10
|
||||
t03: 100+0/30 200+400/20 400+20/20
|
||||
t04: 100+100/30 300+0/20 50+300/10
|
||||
t05: 100+0/30 200+400/20 400+20/20
|
||||
t06: 100+100/30 300+0/20 50+300/10
|
||||
t07: 100+0/30 200+400/20 400+20/20
|
||||
t08: 100+100/30 300+0/20 50+300/10
|
||||
t09: 100+0/30 200+400/20 400+20/20
|
||||
t10: 100+100/30 300+0/20 50+300/10
|
||||
t11: 100+0/30 200+400/20 400+20/20
|
||||
t12: 100+100/30 300+0/20 50+300/10
|
||||
t13: 100+0/30 200+400/20 400+20/20
|
||||
t14: 100+100/30 300+0/20 50+300/10
|
||||
t15: 100+0/30 200+400/20 400+20/20
|
||||
t16: 100+100/30 300+0/20 50+300/10
|
||||
t17: 100+0/30 200+400/20 400+20/20
|
||||
t18: 100+100/30 300+0/20 50+300/10
|
||||
t19: 100+0/30 200+400/20 400+20/20
|
||||
t20: 100+100/30 300+0/20 50+300/10
|
||||
t21: 100+0/30 200+400/20 400+20/20
|
||||
t22: 100+100/30 300+0/20 50+300/10
|
||||
t23: 100+0/30 200+400/20 400+20/20
|
||||
t24: 100+100/30 300+0/20 50+300/10
|
||||
t25: 100+0/30 200+400/20 400+20/20
|
||||
t26: 100+100/30 300+0/20 50+300/10
|
||||
t27: 100+0/30 200+400/20 400+20/20
|
||||
t28: 100+100/30 300+0/20 50+300/10
|
||||
t29: 100+0/30 200+400/20 400+20/20
|
||||
t30: 100+100/30 300+0/20 50+300/10
|
||||
t31: 100+0/30 200+400/20 400+20/20
|
||||
t32: 100+100/30 300+0/20 50+300/10
|
||||
t33: 100+0/30 200+400/20 400+20/20
|
||||
t34: 100+100/30 300+0/20 50+300/10
|
||||
t35: 100+0/30 200+400/20 400+20/20
|
||||
|
||||
0:00:13 == off ->
|
||||
|
||||
0:00:14 == t00 ->
|
||||
0:00:15 == t01 ->
|
||||
0:00:16 == t02 ->
|
||||
0:00:17 == t03 ->
|
||||
0:00:18 == t04 ->
|
||||
0:00:19 == t05 ->
|
||||
0:00:20 == t06 ->
|
||||
0:00:21 == t07 ->
|
||||
0:00:22 == t08 ->
|
||||
0:00:23 == t09 ->
|
||||
0:00:24 == t10 ->
|
||||
0:00:25 == t11 ->
|
||||
0:00:26 == t12 ->
|
||||
0:00:27 == t13 ->
|
||||
0:00:28 == t14 ->
|
||||
0:00:29 == t15 ->
|
||||
0:00:30 == t16 ->
|
||||
0:00:31 == t17 ->
|
||||
0:00:32 == t18 ->
|
||||
0:00:33 == t19 ->
|
||||
0:00:34 == t20 ->
|
||||
0:00:35 == t21 ->
|
||||
0:00:36 == t22 ->
|
||||
0:00:37 == t23 ->
|
||||
0:00:38 == t24 ->
|
||||
0:00:39 == t25 ->
|
||||
0:00:40 == t26 ->
|
||||
0:00:41 == t27 ->
|
||||
0:00:42 == t28 ->
|
||||
0:00:43 == t29 ->
|
||||
0:00:44 == t30 ->
|
||||
0:00:45 == t31 ->
|
||||
0:00:46 == t32 ->
|
||||
0:00:47 == t33 ->
|
||||
0:00:48 == t34 ->
|
||||
0:00:49 == t35 ->
|
||||
|
||||
0:00:50 == off
|
||||
16
sbagen-1.4.5/examples/contrib/ghostlab/planets.sbg
Normal file
16
sbagen-1.4.5/examples/contrib/ghostlab/planets.sbg
Normal file
@@ -0,0 +1,16 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Planets
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
|
||||
t00: 272.2+7.83/100 332+7.83/100 421.3+7.83/100 289.4+7.83/100 367.5+7.83/100 442+7.83/100 295.7+7.83/100 414.7+7.83/100 422+7.83/100
|
||||
|
||||
0:00:00 == off ->
|
||||
0:05:05 == t00 ->
|
||||
0:05:30 == off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-1.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-1.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse I
|
||||
|
||||
t00: 100+0.756/40 200+4.2/10
|
||||
t01: 100+0.450/40 200+4.2/10
|
||||
t02: 100+0.380/40 200+4.2/10
|
||||
t03: 100+0.432/40 200+4.2/10
|
||||
t04: 100+0.396/40 200+4.2/10
|
||||
t05: 100+0.721/40 200+4.2/10
|
||||
t06: 100+0.473/40 200+4.2/10
|
||||
t07: 100+0.488/40 200+4.2/10
|
||||
t08: 100+0.302/40 200+4.2/10
|
||||
t09: 100+0.845/40 200+4.2/10
|
||||
t10: 100+0.685/40 200+4.2/10
|
||||
t11: 100+0.880/40 200+4.2/10
|
||||
t12: 100+0.613/40 200+4.2/10
|
||||
t13: 100+0.967/40 200+4.2/10
|
||||
t14: 100+0.506/40 200+4.2/10
|
||||
t15: 100+0.945/40 200+4.2/10
|
||||
t16: 100+0.677/40 200+4.2/10
|
||||
t17: 100+0.323/40 200+4.2/10
|
||||
t18: 100+0.903/40 200+4.2/10
|
||||
t19: 100+0.905/40 200+4.2/10
|
||||
t20: 100+0.280/40 200+4.2/10
|
||||
t21: 100+0.315/40 200+4.2/10
|
||||
t22: 100+0.575/40 200+4.2/10
|
||||
t23: 100+0.696/40 200+4.2/10
|
||||
t24: 100+0.208/40 200+4.2/10
|
||||
t25: 100+0.466/40 200+4.2/10
|
||||
t26: 100+0.600/40 200+4.2/10
|
||||
t27: 100+0.560/40 200+4.2/10
|
||||
t28: 100+0.568/40 200+4.2/10
|
||||
t29: 100+0.474/40 200+4.2/10
|
||||
t30: 100+0.439/40 200+4.2/10
|
||||
t31: 100+0.324/40 200+4.2/10
|
||||
t32: 100+0.725/40 200+4.2/10
|
||||
t33: 100+0.618/40 200+4.2/10
|
||||
t34: 100+0.556/40 200+4.2/10
|
||||
t35: 100+0.921/40 200+4.2/10
|
||||
t36: 100+0.340/40 200+4.2/10
|
||||
t37: 100+0.829/40 200+4.2/10
|
||||
t38: 100+0.409/40 200+4.2/10
|
||||
t39: 100+0.442/40 200+4.2/10
|
||||
t40: 100+0.674/40 200+4.2/10
|
||||
t41: 100+0.894/40 200+4.2/10
|
||||
t42: 100+0.321/40 200+4.2/10
|
||||
t43: 100+0.287/40 200+4.2/10
|
||||
t44: 100+0.861/40 200+4.2/10
|
||||
t45: 100+0.628/40 200+4.2/10
|
||||
t46: 100+0.233/40 200+4.2/10
|
||||
t47: 100+0.538/40 200+4.2/10
|
||||
t48: 100+0.750/40 200+4.2/10
|
||||
t49: 100+0.936/40 200+4.2/10
|
||||
t50: 100+0.443/40 200+4.2/10
|
||||
t51: 100+0.830/40 200+4.2/10
|
||||
t52: 100+0.250/40 200+4.2/10
|
||||
t53: 100+0.818/40 200+4.2/10
|
||||
t54: 100+0.526/40 200+4.2/10
|
||||
t55: 100+0.258/40 200+4.2/10
|
||||
t56: 100+0.284/40 200+4.2/10
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-2.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-2.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse II
|
||||
|
||||
t00: 100+0.756/40 200+4.2/10 bell+2050/20
|
||||
t01: 100+0.450/40 200+4.2/10
|
||||
t02: 100+0.380/40 200+4.2/10 bell+2050/20
|
||||
t03: 100+0.432/40 200+4.2/10
|
||||
t04: 100+0.396/40 200+4.2/10 bell+2050/20
|
||||
t05: 100+0.721/40 200+4.2/10
|
||||
t06: 100+0.473/40 200+4.2/10 bell+2050/20
|
||||
t07: 100+0.488/40 200+4.2/10
|
||||
t08: 100+0.302/40 200+4.2/10 bell+2050/20
|
||||
t09: 100+0.845/40 200+4.2/10
|
||||
t10: 100+0.685/40 200+4.2/10 bell+2050/20
|
||||
t11: 100+0.880/40 200+4.2/10
|
||||
t12: 100+0.613/40 200+4.2/10 bell+2050/20
|
||||
t13: 100+0.967/40 200+4.2/10
|
||||
t14: 100+0.506/40 200+4.2/10 bell+2050/20
|
||||
t15: 100+0.945/40 200+4.2/10
|
||||
t16: 100+0.677/40 200+4.2/10 bell+2050/20
|
||||
t17: 100+0.323/40 200+4.2/10
|
||||
t18: 100+0.903/40 200+4.2/10 bell+2050/20
|
||||
t19: 100+0.905/40 200+4.2/10
|
||||
t20: 100+0.280/40 200+4.2/10 bell+2050/20
|
||||
t21: 100+0.315/40 200+4.2/10
|
||||
t22: 100+0.575/40 200+4.2/10 bell+2050/20
|
||||
t23: 100+0.696/40 200+4.2/10
|
||||
t24: 100+0.208/40 200+4.2/10 bell+2050/20
|
||||
t25: 100+0.466/40 200+4.2/10
|
||||
t26: 100+0.600/40 200+4.2/10 bell+2050/20
|
||||
t27: 100+0.560/40 200+4.2/10
|
||||
t28: 100+0.568/40 200+4.2/10 bell+2050/20
|
||||
t29: 100+0.474/40 200+4.2/10
|
||||
t30: 100+0.439/40 200+4.2/10 bell+2050/20
|
||||
t31: 100+0.324/40 200+4.2/10
|
||||
t32: 100+0.725/40 200+4.2/10 bell+2050/20
|
||||
t33: 100+0.618/40 200+4.2/10
|
||||
t34: 100+0.556/40 200+4.2/10 bell+2050/20
|
||||
t35: 100+0.921/40 200+4.2/10
|
||||
t36: 100+0.340/40 200+4.2/10 bell+2050/20
|
||||
t37: 100+0.829/40 200+4.2/10
|
||||
t38: 100+0.409/40 200+4.2/10 bell+2050/20
|
||||
t39: 100+0.442/40 200+4.2/10
|
||||
t40: 100+0.674/40 200+4.2/10 bell+2050/20
|
||||
t41: 100+0.894/40 200+4.2/10
|
||||
t42: 100+0.321/40 200+4.2/10 bell+2050/20
|
||||
t43: 100+0.287/40 200+4.2/10
|
||||
t44: 100+0.861/40 200+4.2/10 bell+2050/20
|
||||
t45: 100+0.628/40 200+4.2/10
|
||||
t46: 100+0.233/40 200+4.2/10 bell+2050/20
|
||||
t47: 100+0.538/40 200+4.2/10
|
||||
t48: 100+0.750/40 200+4.2/10 bell+2050/20
|
||||
t49: 100+0.936/40 200+4.2/10
|
||||
t50: 100+0.443/40 200+4.2/10 bell+2050/20
|
||||
t51: 100+0.830/40 200+4.2/10
|
||||
t52: 100+0.250/40 200+4.2/10 bell+2050/20
|
||||
t53: 100+0.818/40 200+4.2/10
|
||||
t54: 100+0.526/40 200+4.2/10 bell+2050/20
|
||||
t55: 100+0.258/40 200+4.2/10
|
||||
t56: 100+0.284/40 200+4.2/10 bell+2050/20
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-3.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-3.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse III
|
||||
|
||||
t00: 100+0.756/40 200+4.2/10 bell+2050/20
|
||||
t01: 100+0.450/40 200+4.2/10 bell+2050/20
|
||||
t02: 100+0.380/40 200+4.2/10 bell+2050/20
|
||||
t03: 100+0.432/40 200+4.2/10 bell+2050/20
|
||||
t04: 100+0.396/40 200+4.2/10 bell+2050/20
|
||||
t05: 100+0.721/40 200+4.2/10 bell+2050/20
|
||||
t06: 100+0.473/40 200+4.2/10 bell+2050/20
|
||||
t07: 100+0.488/40 200+4.2/10 bell+2050/20
|
||||
t08: 100+0.302/40 200+4.2/10 bell+2050/20
|
||||
t09: 100+0.845/40 200+4.2/10 bell+2050/20
|
||||
t10: 100+0.685/40 200+4.2/10 bell+2050/20
|
||||
t11: 100+0.880/40 200+4.2/10 bell+2050/20
|
||||
t12: 100+0.613/40 200+4.2/10 bell+2050/20
|
||||
t13: 100+0.967/40 200+4.2/10 bell+2050/20
|
||||
t14: 100+0.506/40 200+4.2/10 bell+2050/20
|
||||
t15: 100+0.945/40 200+4.2/10 bell+2050/20
|
||||
t16: 100+0.677/40 200+4.2/10 bell+2050/20
|
||||
t17: 100+0.323/40 200+4.2/10 bell+2050/20
|
||||
t18: 100+0.903/40 200+4.2/10 bell+2050/20
|
||||
t19: 100+0.905/40 200+4.2/10 bell+2050/20
|
||||
t20: 100+0.280/40 200+4.2/10 bell+2050/20
|
||||
t21: 100+0.315/40 200+4.2/10 bell+2050/20
|
||||
t22: 100+0.575/40 200+4.2/10 bell+2050/20
|
||||
t23: 100+0.696/40 200+4.2/10 bell+2050/20
|
||||
t24: 100+0.208/40 200+4.2/10 bell+2050/20
|
||||
t25: 100+0.466/40 200+4.2/10 bell+2050/20
|
||||
t26: 100+0.600/40 200+4.2/10 bell+2050/20
|
||||
t27: 100+0.560/40 200+4.2/10 bell+2050/20
|
||||
t28: 100+0.568/40 200+4.2/10 bell+2050/20
|
||||
t29: 100+0.474/40 200+4.2/10 bell+2050/20
|
||||
t30: 100+0.439/40 200+4.2/10 bell+2050/20
|
||||
t31: 100+0.324/40 200+4.2/10 bell+2050/20
|
||||
t32: 100+0.725/40 200+4.2/10 bell+2050/20
|
||||
t33: 100+0.618/40 200+4.2/10 bell+2050/20
|
||||
t34: 100+0.556/40 200+4.2/10 bell+2050/20
|
||||
t35: 100+0.921/40 200+4.2/10 bell+2050/20
|
||||
t36: 100+0.340/40 200+4.2/10 bell+2050/20
|
||||
t37: 100+0.829/40 200+4.2/10 bell+2050/20
|
||||
t38: 100+0.409/40 200+4.2/10 bell+2050/20
|
||||
t39: 100+0.442/40 200+4.2/10 bell+2050/20
|
||||
t40: 100+0.674/40 200+4.2/10 bell+2050/20
|
||||
t41: 100+0.894/40 200+4.2/10 bell+2050/20
|
||||
t42: 100+0.321/40 200+4.2/10 bell+2050/20
|
||||
t43: 100+0.287/40 200+4.2/10 bell+2050/20
|
||||
t44: 100+0.861/40 200+4.2/10 bell+2050/20
|
||||
t45: 100+0.628/40 200+4.2/10 bell+2050/20
|
||||
t46: 100+0.233/40 200+4.2/10 bell+2050/20
|
||||
t47: 100+0.538/40 200+4.2/10 bell+2050/20
|
||||
t48: 100+0.750/40 200+4.2/10 bell+2050/20
|
||||
t49: 100+0.936/40 200+4.2/10 bell+2050/20
|
||||
t50: 100+0.443/40 200+4.2/10 bell+2050/20
|
||||
t51: 100+0.830/40 200+4.2/10 bell+2050/20
|
||||
t52: 100+0.250/40 200+4.2/10 bell+2050/20
|
||||
t53: 100+0.818/40 200+4.2/10 bell+2050/20
|
||||
t54: 100+0.526/40 200+4.2/10 bell+2050/20
|
||||
t55: 100+0.258/40 200+4.2/10 bell+2050/20
|
||||
t56: 100+0.284/40 200+4.2/10 bell+2050/20
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-4.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-4.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse IV
|
||||
|
||||
t00: 100+0.756/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t01: 100+0.450/40 200+4.2/10 bell+2050/20
|
||||
t02: 100+0.380/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t03: 100+0.432/40 200+4.2/10 bell+2050/20
|
||||
t04: 100+0.396/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t05: 100+0.721/40 200+4.2/10 bell+2050/20
|
||||
t06: 100+0.473/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t07: 100+0.488/40 200+4.2/10 bell+2050/20
|
||||
t08: 100+0.302/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t09: 100+0.845/40 200+4.2/10 bell+2050/20
|
||||
t10: 100+0.685/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t11: 100+0.880/40 200+4.2/10 bell+2050/20
|
||||
t12: 100+0.613/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t13: 100+0.967/40 200+4.2/10 bell+2050/20
|
||||
t14: 100+0.506/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t15: 100+0.945/40 200+4.2/10 bell+2050/20
|
||||
t16: 100+0.677/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t17: 100+0.323/40 200+4.2/10 bell+2050/20
|
||||
t18: 100+0.903/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t19: 100+0.905/40 200+4.2/10 bell+2050/20
|
||||
t20: 100+0.280/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t21: 100+0.315/40 200+4.2/10 bell+2050/20
|
||||
t22: 100+0.575/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t23: 100+0.696/40 200+4.2/10 bell+2050/20
|
||||
t24: 100+0.208/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t25: 100+0.466/40 200+4.2/10 bell+2050/20
|
||||
t26: 100+0.600/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t27: 100+0.560/40 200+4.2/10 bell+2050/20
|
||||
t28: 100+0.568/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t29: 100+0.474/40 200+4.2/10 bell+2050/20
|
||||
t30: 100+0.439/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t31: 100+0.324/40 200+4.2/10 bell+2050/20
|
||||
t32: 100+0.725/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t33: 100+0.618/40 200+4.2/10 bell+2050/20
|
||||
t34: 100+0.556/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t35: 100+0.921/40 200+4.2/10 bell+2050/20
|
||||
t36: 100+0.340/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t37: 100+0.829/40 200+4.2/10 bell+2050/20
|
||||
t38: 100+0.409/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t39: 100+0.442/40 200+4.2/10 bell+2050/20
|
||||
t40: 100+0.674/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t41: 100+0.894/40 200+4.2/10 bell+2050/20
|
||||
t42: 100+0.321/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t43: 100+0.287/40 200+4.2/10 bell+2050/20
|
||||
t44: 100+0.861/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t45: 100+0.628/40 200+4.2/10 bell+2050/20
|
||||
t46: 100+0.233/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t47: 100+0.538/40 200+4.2/10 bell+2050/20
|
||||
t48: 100+0.750/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t49: 100+0.936/40 200+4.2/10 bell+2050/20
|
||||
t50: 100+0.443/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t51: 100+0.830/40 200+4.2/10 bell+2050/20
|
||||
t52: 100+0.250/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t53: 100+0.818/40 200+4.2/10 bell+2050/20
|
||||
t54: 100+0.526/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t55: 100+0.258/40 200+4.2/10 bell+2050/20
|
||||
t56: 100+0.284/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-5.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-5.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse V
|
||||
|
||||
t00: 100+0.756/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t01: 100+0.450/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t02: 100+0.380/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t03: 100+0.432/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t04: 100+0.396/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t05: 100+0.721/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t06: 100+0.473/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t07: 100+0.488/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t08: 100+0.302/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t09: 100+0.845/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t10: 100+0.685/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t11: 100+0.880/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t12: 100+0.613/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t13: 100+0.967/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t14: 100+0.506/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t15: 100+0.945/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t16: 100+0.677/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t17: 100+0.323/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t18: 100+0.903/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t19: 100+0.905/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t20: 100+0.280/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t21: 100+0.315/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t22: 100+0.575/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t23: 100+0.696/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t24: 100+0.208/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t25: 100+0.466/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t26: 100+0.600/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t27: 100+0.560/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t28: 100+0.568/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t29: 100+0.474/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t30: 100+0.439/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t31: 100+0.324/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t32: 100+0.725/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t33: 100+0.618/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t34: 100+0.556/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t35: 100+0.921/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t36: 100+0.340/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t37: 100+0.829/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t38: 100+0.409/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t39: 100+0.442/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t40: 100+0.674/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t41: 100+0.894/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t42: 100+0.321/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t43: 100+0.287/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t44: 100+0.861/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t45: 100+0.628/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t46: 100+0.233/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t47: 100+0.538/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t48: 100+0.750/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t49: 100+0.936/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t50: 100+0.443/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t51: 100+0.830/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t52: 100+0.250/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t53: 100+0.818/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t54: 100+0.526/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
t55: 100+0.258/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t56: 100+0.284/40 200+4.2/10 bell+2050/20 bell+2050/20
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-6.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-6.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse VI
|
||||
|
||||
t00: 100+7.756/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t01: 100+7.450/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t02: 100+7.380/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t03: 100+7.432/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t04: 100+7.396/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t05: 100+7.721/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t06: 100+7.473/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t07: 100+7.488/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t08: 100+7.302/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t09: 100+7.845/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t10: 100+7.685/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t11: 100+7.880/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t12: 100+7.613/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t13: 100+7.967/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t14: 100+7.506/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t15: 100+7.945/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t16: 100+7.677/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t17: 100+7.323/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t18: 100+7.903/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t19: 100+7.905/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t20: 100+7.280/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t21: 100+7.315/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t22: 100+7.575/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t23: 100+7.696/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t24: 100+7.208/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t25: 100+7.466/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t26: 100+7.600/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t27: 100+7.560/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t28: 100+7.568/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t29: 100+7.474/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t30: 100+7.439/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t31: 100+7.324/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t32: 100+7.725/40 200+4.2/10 bell+2050/20 bell+4100/20 spin:200+7.5/30
|
||||
t33: 100+7.618/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t34: 100+7.556/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t35: 100+7.921/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t36: 100+7.340/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t37: 100+7.829/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t38: 100+7.409/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t39: 100+7.442/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t40: 100+7.674/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t41: 100+7.894/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t42: 100+7.321/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t43: 100+7.287/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t44: 100+7.861/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t45: 100+7.628/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t46: 100+7.233/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t47: 100+7.538/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t48: 100+7.750/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t49: 100+7.936/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t50: 100+7.443/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t51: 100+7.830/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t52: 100+7.250/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t53: 100+7.818/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t54: 100+7.526/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t55: 100+7.258/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t56: 100+7.284/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-7.sbg
Normal file
180
sbagen-1.4.5/examples/contrib/ghostlab/pulse-7.sbg
Normal file
@@ -0,0 +1,180 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Pulse VII
|
||||
|
||||
t00: 2000+7.756/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t01: 100+7.450/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t02: 2000+7.380/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t03: 800+7.432/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t04: 2000+7.396/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t05: 80+7.721/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t06: 2000+7.473/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t07: 100+7.488/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t08: 2000+7.302/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t09: 800+7.845/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t10: 2000+7.685/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t11: 80+7.880/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t12: 2000+7.613/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t13: 100+7.967/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t14: 2000+7.506/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t15: 800+7.945/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t16: 200+7.677/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t17: 100+7.323/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t18: 100+7.903/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t19: 100+7.905/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t20: 100+7.280/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t21: 100+7.315/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t22: 100+7.575/40 200+4.2/10 bell+2050/20 bell+100/50
|
||||
t23: 100+7.696/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t24: 100+7.208/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t25: 100+7.466/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t26: 100+7.600/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t27: 100+7.560/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t28: 100+7.568/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t29: 100+7.474/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t30: 100+7.439/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t31: 100+7.324/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t32: 100+7.725/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t33: 100+7.618/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t34: 100+7.556/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t35: 100+7.921/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t36: 100+7.340/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t37: 100+7.829/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t38: 100+7.409/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t39: 100+7.442/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t40: 100+7.674/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t41: 100+7.894/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t42: 100+7.321/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t43: 100+7.287/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t44: 100+7.861/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t45: 100+7.628/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t46: 100+7.233/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t47: 100+7.538/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t48: 100+7.750/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t49: 100+7.936/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t50: 100+7.443/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t51: 100+7.830/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t52: 100+7.250/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t53: 100+7.818/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t54: 100+7.526/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
t55: 100+7.258/40 bell+250/40 200+4.2/10 bell+2050/20
|
||||
t56: 100+7.284/40 200+4.2/10 bell+2050/20 bell+4100/20
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
NOW+20:33:00+00:00:01 t00
|
||||
+00:00:02 off
|
||||
+00:00:03 t01
|
||||
+00:00:04 off
|
||||
+00:00:05 t02
|
||||
+00:00:06 off
|
||||
+00:00:07 t03
|
||||
+00:00:08 off
|
||||
+00:00:09 t04
|
||||
+00:00:10 off
|
||||
+00:00:11 t05
|
||||
+00:00:12 off
|
||||
+00:00:13 t06
|
||||
+00:00:14 off
|
||||
+00:00:15 t07
|
||||
+00:00:16 off
|
||||
+00:00:17 t08
|
||||
+00:00:18 off
|
||||
+00:00:19 t09
|
||||
+00:00:20 off
|
||||
+00:00:21 t10
|
||||
+00:00:22 off
|
||||
+00:00:23 t11
|
||||
+00:00:24 off
|
||||
+00:00:25 t12
|
||||
+00:00:26 off
|
||||
+00:00:27 t13
|
||||
+00:00:28 off
|
||||
+00:00:29 t14
|
||||
+00:00:30 off
|
||||
+00:00:31 t15
|
||||
+00:00:32 off
|
||||
+00:00:33 t16
|
||||
+00:00:34 off
|
||||
+00:00:35 t17
|
||||
+00:00:36 off
|
||||
+00:00:37 t18
|
||||
+00:00:38 off
|
||||
+00:00:39 t19
|
||||
+00:00:40 off
|
||||
+00:00:41 t20
|
||||
+00:00:42 off
|
||||
+00:00:43 t21
|
||||
+00:00:44 off
|
||||
+00:00:45 t22
|
||||
+00:00:46 off
|
||||
+00:00:47 t23
|
||||
+00:00:48 off
|
||||
+00:00:49 t24
|
||||
+00:00:50 off
|
||||
+00:00:51 t25
|
||||
+00:00:52 off
|
||||
+00:00:53 t26
|
||||
+00:00:54 off
|
||||
+00:00:55 t27
|
||||
+00:00:56 off
|
||||
+00:00:57 t28
|
||||
+00:00:58 off
|
||||
+00:00:59 t29
|
||||
+00:01:00 off
|
||||
+00:01:01 t30
|
||||
+00:01:02 off
|
||||
+00:01:03 t31
|
||||
+00:01:04 off
|
||||
+00:01:05 t32
|
||||
+00:01:06 off
|
||||
+00:01:07 t33
|
||||
+00:01:08 off
|
||||
+00:01:09 t34
|
||||
+00:01:10 off
|
||||
+00:01:11 t35
|
||||
+00:01:12 off
|
||||
+00:01:13 t36
|
||||
+00:01:14 off
|
||||
+00:01:15 t37
|
||||
+00:01:16 off
|
||||
+00:01:17 t38
|
||||
+00:01:18 off
|
||||
+00:01:19 t39
|
||||
+00:01:20 off
|
||||
+00:01:21 t40
|
||||
+00:01:22 off
|
||||
+00:01:23 t41
|
||||
+00:01:24 off
|
||||
+00:01:25 t42
|
||||
+00:01:26 off
|
||||
+00:01:27 t43
|
||||
+00:01:28 off
|
||||
+00:01:29 t44
|
||||
+00:01:30 off
|
||||
+00:01:31 t45
|
||||
+00:01:32 off
|
||||
+00:01:33 t46
|
||||
+00:01:34 off
|
||||
+00:01:35 t47
|
||||
+00:01:36 off
|
||||
+00:01:37 t48
|
||||
+00:01:38 off
|
||||
+00:01:39 t49
|
||||
+00:01:40 off
|
||||
+00:01:41 t50
|
||||
+00:01:42 off
|
||||
+00:01:43 t51
|
||||
+00:01:44 off
|
||||
+00:01:45 t52
|
||||
+00:01:46 off
|
||||
+00:01:47 t53
|
||||
+00:01:48 off
|
||||
+00:01:49 t54
|
||||
+00:01:50 off
|
||||
+00:01:51 t55
|
||||
+00:01:52 off
|
||||
+00:01:53 t56
|
||||
+00:01:54 off
|
||||
145
sbagen-1.4.5/examples/contrib/ghostlab/shaman-dance.sbg
Normal file
145
sbagen-1.4.5/examples/contrib/ghostlab/shaman-dance.sbg
Normal file
@@ -0,0 +1,145 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## SHAMAN DANCE
|
||||
##
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts2: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
ts3: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts4: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
ts5: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts6: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
|
||||
ts7: 200+12.5/30 6000+12.5/30 bell+40/500 bell+80/30
|
||||
ts8: 6000+12.5/30 200+12.5/30 bell+40/500 bell+80/30
|
||||
ts9: 200+12.5/30 6000+12.5/30 bell+40/500 bell+80/30
|
||||
ts10: 6000+12.5/30 200+12.5/30 bell+40/500 bell+80/30
|
||||
ts11: 200+12.5/30 6000+12.5/30 bell+40/500 bell+80/30
|
||||
ts12: 6000+12.5/30 200+12.5/30 bell+40/500 bell+80/30
|
||||
ts13: 4000+12.5/30 400+12.5/30 bell+40/500 bell+80/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:55 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts13 ->
|
||||
0:00:22 == ts7 ->
|
||||
0:00:23 == ts8 ->
|
||||
0:00:24 == ts9 ->
|
||||
0:00:25 == ts10 ->
|
||||
0:00:26 == ts11 ->
|
||||
0:00:27 == ts12 ->
|
||||
0:00:28 == ts7 ->
|
||||
0:00:29 == ts8 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts13 ->
|
||||
0:00:34 == ts7 ->
|
||||
0:00:35 == ts8 ->
|
||||
0:00:36 == ts9 ->
|
||||
0:00:37 == ts10 ->
|
||||
0:00:38 == ts11 ->
|
||||
0:00:39 == ts12 ->
|
||||
0:00:40 == ts7 ->
|
||||
0:00:41 == ts8 ->
|
||||
0:00:42 == ts1 ->
|
||||
0:00:43 == ts2 ->
|
||||
0:00:44 == ts3 ->
|
||||
0:00:45 == ts13 ->
|
||||
0:00:46 == ts7 ->
|
||||
0:00:47 == ts8 ->
|
||||
0:00:48 == ts9 ->
|
||||
0:00:49 == ts10 ->
|
||||
0:00:50 == ts11 ->
|
||||
0:00:51 == ts12 ->
|
||||
0:00:52 == ts7 ->
|
||||
0:00:53 == ts8 ->
|
||||
0:00:54 == ts1 ->
|
||||
0:00:55 == ts2 ->
|
||||
0:00:56 == ts3 ->
|
||||
0:00:57 == ts13 ->
|
||||
0:00:58 == ts7 ->
|
||||
0:00:59 == ts8 ->
|
||||
0:01:00 == ts9 ->
|
||||
0:01:01 == ts10 ->
|
||||
0:01:02 == ts11 ->
|
||||
0:01:03 == ts12 ->
|
||||
0:01:04 == ts7 ->
|
||||
0:01:05 == ts8 ->
|
||||
0:01:06 == ts9 ->
|
||||
0:01:07 == ts10 ->
|
||||
0:01:08 == ts11 ->
|
||||
0:01:09 == ts12 ->
|
||||
0:01:10 == ts7 ->
|
||||
0:01:11 == ts8 ->
|
||||
0:01:12 == ts9 ->
|
||||
0:01:13 == ts10 ->
|
||||
0:01:14 == ts11 ->
|
||||
0:01:15 == ts12 ->
|
||||
0:01:16 == ts7 ->
|
||||
0:01:17 == ts8 ->
|
||||
0:01:18 == ts9 ->
|
||||
0:01:19 == ts10 ->
|
||||
0:01:20 == ts11 ->
|
||||
0:01:21 == ts12 ->
|
||||
0:01:22 == ts7 ->
|
||||
0:01:23 == ts8 ->
|
||||
0:01:24 == ts9 ->
|
||||
0:01:25 == ts10 ->
|
||||
0:01:26 == ts11 ->
|
||||
0:01:27 == ts12 ->
|
||||
0:01:28 == ts7 ->
|
||||
0:01:29 == ts8 ->
|
||||
0:01:30 == ts9 ->
|
||||
0:01:31 == ts10 ->
|
||||
0:01:32 == ts11 ->
|
||||
0:01:33 == ts12 ->
|
||||
0:01:34 == ts7 ->
|
||||
0:01:35 == ts8 ->
|
||||
0:01:36 == ts9 ->
|
||||
0:01:37 == ts10 ->
|
||||
0:01:38 == ts11 ->
|
||||
0:01:39 == ts12 ->
|
||||
0:01:40 == ts7 ->
|
||||
0:01:41 == ts8 ->
|
||||
0:01:42 == ts9 ->
|
||||
0:01:43 == ts10 ->
|
||||
0:01:44 == ts11 ->
|
||||
0:01:45 == ts12 ->
|
||||
0:01:46 == ts7 ->
|
||||
0:01:47 == ts8 ->
|
||||
0:01:48 == ts1 ->
|
||||
0:01:49 == ts2 ->
|
||||
0:01:50 == ts3 ->
|
||||
0:01:51 == ts4 ->
|
||||
0:01:52 == ts5 ->
|
||||
0:01:53 == ts6 ->
|
||||
|
||||
0:01:54 == off
|
||||
93
sbagen-1.4.5/examples/contrib/ghostlab/shaman-epileptic.sbg
Normal file
93
sbagen-1.4.5/examples/contrib/ghostlab/shaman-epileptic.sbg
Normal file
@@ -0,0 +1,93 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Epileptic
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 200+12.5/30 6000+12.5/30 bell+80/1000
|
||||
ts2: 6000+12.5/30 200+12.5/30 bell+80/1000
|
||||
ts3: 200+12.5/30 6000+12.5/30 bell+80/1000
|
||||
ts4: 6000+12.5/30 200+12.5/30 bell+80/1000
|
||||
ts5: 200+12.5/30 6000+12.5/30 bell+80/1000
|
||||
ts6: 6000+12.5/30 200+12.5/30 bell+80/1000
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
0:00:36 == ts1 ->
|
||||
0:00:37 == ts2 ->
|
||||
0:00:38 == ts3 ->
|
||||
0:00:39 == ts4 ->
|
||||
0:00:40 == ts5 ->
|
||||
0:00:41 == ts6 ->
|
||||
0:00:42 == ts1 ->
|
||||
0:00:43 == ts2 ->
|
||||
0:00:44 == ts3 ->
|
||||
0:00:45 == ts4 ->
|
||||
0:00:46 == ts5 ->
|
||||
0:00:47 == ts6 ->
|
||||
0:00:48 == ts1 ->
|
||||
0:00:49 == ts2 ->
|
||||
0:00:50 == ts3 ->
|
||||
0:00:51 == ts4 ->
|
||||
0:00:52 == ts5 ->
|
||||
0:00:53 == ts6 ->
|
||||
0:00:54 == ts1 ->
|
||||
0:00:55 == ts2 ->
|
||||
0:00:56 == ts3 ->
|
||||
0:00:57 == ts4 ->
|
||||
0:00:58 == ts5 ->
|
||||
0:00:59 == ts6 ->
|
||||
0:01:00 == ts1 ->
|
||||
0:01:01 == ts2 ->
|
||||
0:01:02 == ts3 ->
|
||||
0:01:03 == ts4 ->
|
||||
0:01:04 == ts5 ->
|
||||
0:01:05 == ts6 ->
|
||||
0:01:06 == ts1 ->
|
||||
0:01:07 == ts2 ->
|
||||
0:01:08 == ts3 ->
|
||||
0:01:09 == ts4 ->
|
||||
0:01:10 == ts5 ->
|
||||
0:01:11 == ts6 ->
|
||||
|
||||
0:01:12 == off
|
||||
93
sbagen-1.4.5/examples/contrib/ghostlab/shaman.sbg
Normal file
93
sbagen-1.4.5/examples/contrib/ghostlab/shaman.sbg
Normal file
@@ -0,0 +1,93 @@
|
||||
## This is an experimental sequence downloaded from Ghostlab.org.
|
||||
## See here (open "Session Avril/Mai 2006"):
|
||||
## http://www.ghostlab.org/rubrique.php3?id_rubrique=85
|
||||
##
|
||||
## Shaman
|
||||
|
||||
-SE
|
||||
|
||||
ts1: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts2: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
ts3: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts4: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
ts5: 200+12.5/30 6000+12.5/30 bell+80/30
|
||||
ts6: 6000+12.5/30 200+12.5/30 bell+80/30
|
||||
|
||||
off: -
|
||||
|
||||
23:59:59 == off ->
|
||||
|
||||
0:00:00 == ts1 ->
|
||||
0:00:01 == ts2 ->
|
||||
0:00:02 == ts3 ->
|
||||
0:00:03 == ts4 ->
|
||||
0:00:04 == ts5 ->
|
||||
0:00:05 == ts6 ->
|
||||
0:00:06 == ts1 ->
|
||||
0:00:07 == ts2 ->
|
||||
0:00:08 == ts3 ->
|
||||
0:00:09 == ts4 ->
|
||||
0:00:10 == ts5 ->
|
||||
0:00:11 == ts6 ->
|
||||
0:00:12 == ts1 ->
|
||||
0:00:13 == ts2 ->
|
||||
0:00:14 == ts3 ->
|
||||
0:00:15 == ts4 ->
|
||||
0:00:16 == ts5 ->
|
||||
0:00:17 == ts6 ->
|
||||
0:00:18 == ts1 ->
|
||||
0:00:19 == ts2 ->
|
||||
0:00:20 == ts3 ->
|
||||
0:00:21 == ts4 ->
|
||||
0:00:22 == ts5 ->
|
||||
0:00:23 == ts6 ->
|
||||
0:00:24 == ts1 ->
|
||||
0:00:25 == ts2 ->
|
||||
0:00:26 == ts3 ->
|
||||
0:00:27 == ts4 ->
|
||||
0:00:28 == ts5 ->
|
||||
0:00:29 == ts6 ->
|
||||
0:00:30 == ts1 ->
|
||||
0:00:31 == ts2 ->
|
||||
0:00:32 == ts3 ->
|
||||
0:00:33 == ts4 ->
|
||||
0:00:34 == ts5 ->
|
||||
0:00:35 == ts6 ->
|
||||
0:00:36 == ts1 ->
|
||||
0:00:37 == ts2 ->
|
||||
0:00:38 == ts3 ->
|
||||
0:00:39 == ts4 ->
|
||||
0:00:40 == ts5 ->
|
||||
0:00:41 == ts6 ->
|
||||
0:00:42 == ts1 ->
|
||||
0:00:43 == ts2 ->
|
||||
0:00:44 == ts3 ->
|
||||
0:00:45 == ts4 ->
|
||||
0:00:46 == ts5 ->
|
||||
0:00:47 == ts6 ->
|
||||
0:00:48 == ts1 ->
|
||||
0:00:49 == ts2 ->
|
||||
0:00:50 == ts3 ->
|
||||
0:00:51 == ts4 ->
|
||||
0:00:52 == ts5 ->
|
||||
0:00:53 == ts6 ->
|
||||
0:00:54 == ts1 ->
|
||||
0:00:55 == ts2 ->
|
||||
0:00:56 == ts3 ->
|
||||
0:00:57 == ts4 ->
|
||||
0:00:58 == ts5 ->
|
||||
0:00:59 == ts6 ->
|
||||
0:01:00 == ts1 ->
|
||||
0:01:01 == ts2 ->
|
||||
0:01:02 == ts3 ->
|
||||
0:01:03 == ts4 ->
|
||||
0:01:04 == ts5 ->
|
||||
0:01:05 == ts6 ->
|
||||
0:01:06 == ts1 ->
|
||||
0:01:07 == ts2 ->
|
||||
0:01:08 == ts3 ->
|
||||
0:01:09 == ts4 ->
|
||||
0:01:10 == ts5 ->
|
||||
0:01:11 == ts6 ->
|
||||
|
||||
0:01:12 == off
|
||||
187
sbagen-1.4.5/examples/contrib/jim/prog-010221.sbg
Normal file
187
sbagen-1.4.5/examples/contrib/jim/prog-010221.sbg
Normal file
@@ -0,0 +1,187 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## The idea of this sequence is to play random tones in the sub
|
||||
## 1.0Hz band all night, accompanied by a 4.2Hz tone to somehow
|
||||
## provide a kind of link up to consciousness.
|
||||
##
|
||||
|
||||
t00: 100+0.756/40 200+4.2/10
|
||||
t01: 100+0.450/40 200+4.2/10
|
||||
t02: 100+0.380/40 200+4.2/10
|
||||
t03: 100+0.432/40 200+4.2/10
|
||||
t04: 100+0.396/40 200+4.2/10
|
||||
t05: 100+0.721/40 200+4.2/10
|
||||
t06: 100+0.473/40 200+4.2/10
|
||||
t07: 100+0.488/40 200+4.2/10
|
||||
t08: 100+0.302/40 200+4.2/10
|
||||
t09: 100+0.845/40 200+4.2/10
|
||||
t10: 100+0.685/40 200+4.2/10
|
||||
t11: 100+0.880/40 200+4.2/10
|
||||
t12: 100+0.613/40 200+4.2/10
|
||||
t13: 100+0.967/40 200+4.2/10
|
||||
t14: 100+0.506/40 200+4.2/10
|
||||
t15: 100+0.945/40 200+4.2/10
|
||||
t16: 100+0.677/40 200+4.2/10
|
||||
t17: 100+0.323/40 200+4.2/10
|
||||
t18: 100+0.903/40 200+4.2/10
|
||||
t19: 100+0.905/40 200+4.2/10
|
||||
t20: 100+0.280/40 200+4.2/10
|
||||
t21: 100+0.315/40 200+4.2/10
|
||||
t22: 100+0.575/40 200+4.2/10
|
||||
t23: 100+0.696/40 200+4.2/10
|
||||
t24: 100+0.208/40 200+4.2/10
|
||||
t25: 100+0.466/40 200+4.2/10
|
||||
t26: 100+0.600/40 200+4.2/10
|
||||
t27: 100+0.560/40 200+4.2/10
|
||||
t28: 100+0.568/40 200+4.2/10
|
||||
t29: 100+0.474/40 200+4.2/10
|
||||
t30: 100+0.439/40 200+4.2/10
|
||||
t31: 100+0.324/40 200+4.2/10
|
||||
t32: 100+0.725/40 200+4.2/10
|
||||
t33: 100+0.618/40 200+4.2/10
|
||||
t34: 100+0.556/40 200+4.2/10
|
||||
t35: 100+0.921/40 200+4.2/10
|
||||
t36: 100+0.340/40 200+4.2/10
|
||||
t37: 100+0.829/40 200+4.2/10
|
||||
t38: 100+0.409/40 200+4.2/10
|
||||
t39: 100+0.442/40 200+4.2/10
|
||||
t40: 100+0.674/40 200+4.2/10
|
||||
t41: 100+0.894/40 200+4.2/10
|
||||
t42: 100+0.321/40 200+4.2/10
|
||||
t43: 100+0.287/40 200+4.2/10
|
||||
t44: 100+0.861/40 200+4.2/10
|
||||
t45: 100+0.628/40 200+4.2/10
|
||||
t46: 100+0.233/40 200+4.2/10
|
||||
t47: 100+0.538/40 200+4.2/10
|
||||
t48: 100+0.750/40 200+4.2/10
|
||||
t49: 100+0.936/40 200+4.2/10
|
||||
t50: 100+0.443/40 200+4.2/10
|
||||
t51: 100+0.830/40 200+4.2/10
|
||||
t52: 100+0.250/40 200+4.2/10
|
||||
t53: 100+0.818/40 200+4.2/10
|
||||
t54: 100+0.526/40 200+4.2/10
|
||||
t55: 100+0.258/40 200+4.2/10
|
||||
t56: 100+0.284/40 200+4.2/10
|
||||
off: -
|
||||
wakeup: 100+0.92/10 300+4.2/20 500+8/30
|
||||
|
||||
22:00 t00
|
||||
22:05 off
|
||||
22:10 t01
|
||||
22:15 off
|
||||
22:20 t02
|
||||
22:25 off
|
||||
22:30 t03
|
||||
22:35 off
|
||||
22:40 t04
|
||||
22:45 off
|
||||
22:50 t05
|
||||
22:55 off
|
||||
23:00 t06
|
||||
23:05 off
|
||||
23:10 t07
|
||||
23:15 off
|
||||
23:20 t08
|
||||
23:25 off
|
||||
23:30 t09
|
||||
23:35 off
|
||||
23:40 t10
|
||||
23:45 off
|
||||
23:50 t11
|
||||
23:55 off
|
||||
00:00 t12
|
||||
00:05 off
|
||||
00:10 t13
|
||||
00:15 off
|
||||
00:20 t14
|
||||
00:25 off
|
||||
00:30 t15
|
||||
00:35 off
|
||||
00:40 t16
|
||||
00:45 off
|
||||
00:50 t17
|
||||
00:55 off
|
||||
01:00 t18
|
||||
01:05 off
|
||||
01:10 t19
|
||||
01:15 off
|
||||
01:20 t20
|
||||
01:25 off
|
||||
01:30 t21
|
||||
01:35 off
|
||||
01:40 t22
|
||||
01:45 off
|
||||
01:50 t23
|
||||
01:55 off
|
||||
02:00 t24
|
||||
02:05 off
|
||||
02:10 t25
|
||||
02:15 off
|
||||
02:20 t26
|
||||
02:25 off
|
||||
02:30 t27
|
||||
02:35 off
|
||||
02:40 t28
|
||||
02:45 off
|
||||
02:50 t29
|
||||
02:55 off
|
||||
03:00 t30
|
||||
03:05 off
|
||||
03:10 t31
|
||||
03:15 off
|
||||
03:20 t32
|
||||
03:25 off
|
||||
03:30 t33
|
||||
03:35 off
|
||||
03:40 t34
|
||||
03:45 off
|
||||
03:50 t35
|
||||
03:55 off
|
||||
04:00 t36
|
||||
04:05 off
|
||||
04:10 t37
|
||||
04:15 off
|
||||
04:20 t38
|
||||
04:25 off
|
||||
04:30 t39
|
||||
04:35 off
|
||||
04:40 t40
|
||||
04:45 off
|
||||
04:50 t41
|
||||
04:55 off
|
||||
05:00 t42
|
||||
05:05 off
|
||||
05:10 t43
|
||||
05:15 off
|
||||
05:20 t44
|
||||
05:25 off
|
||||
05:30 t45
|
||||
05:35 off
|
||||
05:40 t46
|
||||
05:45 off
|
||||
05:50 t47
|
||||
05:55 off
|
||||
06:00 t48
|
||||
06:05 off
|
||||
06:10 t49
|
||||
06:15 off
|
||||
06:20 t50
|
||||
06:25 off
|
||||
06:30 t51
|
||||
06:35 off
|
||||
06:40 t52
|
||||
06:45 off
|
||||
06:50 t53
|
||||
06:55 off
|
||||
07:00 t54
|
||||
07:05 off
|
||||
07:10 t55
|
||||
07:15 off
|
||||
07:20 t56
|
||||
07:25 off
|
||||
07:30 wakeup
|
||||
08:30 off
|
||||
|
||||
|
||||
189
sbagen-1.4.5/examples/contrib/jim/prog-010301.sbg
Normal file
189
sbagen-1.4.5/examples/contrib/jim/prog-010301.sbg
Normal file
@@ -0,0 +1,189 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## The idea of this sequence is to play random tones in the sub
|
||||
## 1.0Hz band all night, accompanied by a 4.2Hz tone to somehow
|
||||
## provide a kind of link up to consciousness.
|
||||
##
|
||||
|
||||
t00: 100+0.312/40 200+4.2/10
|
||||
t01: 100+0.398/40 200+4.2/10
|
||||
t02: 100+0.594/40 200+4.2/10
|
||||
t03: 100+0.659/40 200+4.2/10
|
||||
t04: 100+0.447/40 200+4.2/10
|
||||
t05: 100+0.731/40 200+4.2/10
|
||||
t06: 100+0.691/40 200+4.2/10
|
||||
t07: 100+0.873/40 200+4.2/10
|
||||
t08: 100+0.358/40 200+4.2/10
|
||||
t09: 100+0.355/40 200+4.2/10
|
||||
t10: 100+0.696/40 200+4.2/10
|
||||
t11: 100+0.951/40 200+4.2/10
|
||||
t12: 100+0.426/40 200+4.2/10
|
||||
t13: 100+0.344/40 200+4.2/10
|
||||
t14: 100+0.658/40 200+4.2/10
|
||||
t15: 100+0.401/40 200+4.2/10
|
||||
t16: 100+0.978/40 200+4.2/10
|
||||
t17: 100+0.798/40 200+4.2/10
|
||||
t18: 100+0.691/40 200+4.2/10
|
||||
t19: 100+0.553/40 200+4.2/10
|
||||
t20: 100+0.260/40 200+4.2/10
|
||||
t21: 100+0.447/40 200+4.2/10
|
||||
t22: 100+0.298/40 200+4.2/10
|
||||
t23: 100+0.635/40 200+4.2/10
|
||||
t24: 100+0.816/40 200+4.2/10
|
||||
t25: 100+0.575/40 200+4.2/10
|
||||
t26: 100+0.282/40 200+4.2/10
|
||||
t27: 100+0.514/40 200+4.2/10
|
||||
t28: 100+0.863/40 200+4.2/10
|
||||
t29: 100+0.474/40 200+4.2/10
|
||||
t30: 100+0.603/40 200+4.2/10
|
||||
t31: 100+0.975/40 200+4.2/10
|
||||
t32: 100+0.672/40 200+4.2/10
|
||||
t33: 100+0.997/40 200+4.2/10
|
||||
t34: 100+0.634/40 200+4.2/10
|
||||
t35: 100+0.919/40 200+4.2/10
|
||||
t36: 100+0.727/40 200+4.2/10
|
||||
t37: 100+0.324/40 200+4.2/10
|
||||
t38: 100+0.792/40 200+4.2/10
|
||||
t39: 100+0.886/40 200+4.2/10
|
||||
t40: 100+0.480/40 200+4.2/10
|
||||
t41: 100+0.487/40 200+4.2/10
|
||||
t42: 100+0.837/40 200+4.2/10
|
||||
t43: 100+0.705/40 200+4.2/10
|
||||
t44: 100+0.632/40 200+4.2/10
|
||||
t45: 100+0.495/40 200+4.2/10
|
||||
t46: 100+0.906/40 200+4.2/10
|
||||
t47: 100+0.610/40 200+4.2/10
|
||||
t48: 100+0.294/40 200+4.2/10
|
||||
t49: 100+0.598/40 200+4.2/10
|
||||
t50: 100+0.963/40 200+4.2/10
|
||||
t51: 100+0.354/40 200+4.2/10
|
||||
t52: 100+0.845/40 200+4.2/10
|
||||
t53: 100+0.261/40 200+4.2/10
|
||||
t54: 100+0.789/40 200+4.2/10
|
||||
t55: 100+0.660/40 200+4.2/10
|
||||
t56: 100+0.636/40 200+4.2/10
|
||||
off: -
|
||||
wakeup1: 100+0.92/30 200+4.2/20 400+8/30
|
||||
wakeup2: 100+0.92/30 200+4.2/20 400+13/30
|
||||
|
||||
22:00 t00
|
||||
22:05 off
|
||||
22:10 t01
|
||||
22:15 off
|
||||
22:20 t02
|
||||
22:25 off
|
||||
22:30 t03
|
||||
22:35 off
|
||||
22:40 t04
|
||||
22:45 off
|
||||
22:50 t05
|
||||
22:55 off
|
||||
23:00 t06
|
||||
23:05 off
|
||||
23:10 t07
|
||||
23:15 off
|
||||
23:20 t08
|
||||
23:25 off
|
||||
23:30 t09
|
||||
23:35 off
|
||||
23:40 t10
|
||||
23:45 off
|
||||
23:50 t11
|
||||
23:55 off
|
||||
00:00 t12
|
||||
00:05 off
|
||||
00:10 t13
|
||||
00:15 off
|
||||
00:20 t14
|
||||
00:25 off
|
||||
00:30 t15
|
||||
00:35 off
|
||||
00:40 t16
|
||||
00:45 off
|
||||
00:50 t17
|
||||
00:55 off
|
||||
01:00 t18
|
||||
01:05 off
|
||||
01:10 t19
|
||||
01:15 off
|
||||
01:20 t20
|
||||
01:25 off
|
||||
01:30 t21
|
||||
01:35 off
|
||||
01:40 t22
|
||||
01:45 off
|
||||
01:50 t23
|
||||
01:55 off
|
||||
02:00 t24
|
||||
02:05 off
|
||||
02:10 t25
|
||||
02:15 off
|
||||
02:20 t26
|
||||
02:25 off
|
||||
02:30 t27
|
||||
02:35 off
|
||||
02:40 t28
|
||||
02:45 off
|
||||
02:50 t29
|
||||
02:55 off
|
||||
03:00 t30
|
||||
03:05 off
|
||||
03:10 t31
|
||||
03:15 off
|
||||
03:20 t32
|
||||
03:25 off
|
||||
03:30 t33
|
||||
03:35 off
|
||||
03:40 t34
|
||||
03:45 off
|
||||
03:50 t35
|
||||
03:55 off
|
||||
04:00 t36
|
||||
04:05 off
|
||||
04:10 t37
|
||||
04:15 off
|
||||
04:20 t38
|
||||
04:25 off
|
||||
04:30 t39
|
||||
04:35 off
|
||||
04:40 t40
|
||||
04:45 off
|
||||
04:50 t41
|
||||
04:55 off
|
||||
05:00 t42
|
||||
05:05 off
|
||||
05:10 t43
|
||||
05:15 off
|
||||
05:20 t44
|
||||
05:25 off
|
||||
05:30 t45
|
||||
05:35 off
|
||||
05:40 t46
|
||||
05:45 off
|
||||
05:50 t47
|
||||
05:55 off
|
||||
06:00 t48
|
||||
06:05 off
|
||||
06:10 t49
|
||||
06:15 off
|
||||
06:20 t50
|
||||
06:25 off
|
||||
06:30 t51
|
||||
06:35 off
|
||||
06:40 t52
|
||||
06:45 off
|
||||
06:50 t53
|
||||
06:55 off
|
||||
07:00 t54
|
||||
07:05 off
|
||||
07:10 t55
|
||||
07:15 off
|
||||
07:20 t56
|
||||
07:25 off
|
||||
07:30 wakeup1 ->
|
||||
08:00 wakeup2
|
||||
08:30 off
|
||||
|
||||
|
||||
57
sbagen-1.4.5/examples/contrib/jim/prog-990102.sbg
Normal file
57
sbagen-1.4.5/examples/contrib/jim/prog-990102.sbg
Normal file
@@ -0,0 +1,57 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
|
||||
none: pink/40
|
||||
theta4: pink/40 150+4/30
|
||||
theta5: pink/40 150+5/30
|
||||
theta6: pink/40 150+6/30
|
||||
theta7: pink/40 150+7/30
|
||||
alpha8: pink/40 150+8/30
|
||||
alpha10: pink/40 150+10/30
|
||||
beta12: pink/40 150+12/30
|
||||
|
||||
theta-bursts: {
|
||||
+00:00 theta4
|
||||
+00:10 none
|
||||
+00:20 theta4
|
||||
+00:30 none
|
||||
+00:40 theta4
|
||||
+00:50 none
|
||||
}
|
||||
|
||||
down-then-up: {
|
||||
+00:00 == theta6 ->
|
||||
+00:10 == theta4
|
||||
+00:20 == theta4 ->
|
||||
+00:30 == theta6 ->
|
||||
+00:40 == alpha8
|
||||
+00:45 none
|
||||
}
|
||||
|
||||
22:00 theta-bursts
|
||||
|
||||
23:00 theta-bursts
|
||||
|
||||
00:00 down-then-up
|
||||
|
||||
01:00 theta-bursts
|
||||
|
||||
02:00 down-then-up
|
||||
|
||||
03:00 theta-bursts
|
||||
|
||||
04:00 down-then-up
|
||||
|
||||
05:00 down-then-up
|
||||
|
||||
06:00 theta-bursts
|
||||
|
||||
07:00 == theta6 ->
|
||||
07:10 == theta4
|
||||
07:20 == theta4 ->
|
||||
07:30 == theta6 ->
|
||||
07:40 == alpha8 ->
|
||||
08:00 == beta12
|
||||
08:20 none
|
||||
47
sbagen-1.4.5/examples/contrib/jim/prog-990103.sbg
Normal file
47
sbagen-1.4.5/examples/contrib/jim/prog-990103.sbg
Normal file
@@ -0,0 +1,47 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
|
||||
off: -
|
||||
none: pink/40
|
||||
theta4: pink/40 150+4/30
|
||||
theta5: pink/40 150+5/30
|
||||
theta6: pink/40 150+6/30
|
||||
theta7: pink/40 150+7/30
|
||||
alpha8: pink/40 150+8/30
|
||||
alpha10: pink/40 150+10/30
|
||||
beta12: pink/40 150+12/30
|
||||
test10: pink/40 100+1.5/30 200-4/27 400+8/1.5
|
||||
|
||||
theta-bursts: {
|
||||
+00:00 theta4
|
||||
+00:05 off
|
||||
+00:20 theta5
|
||||
+00:25 off
|
||||
+00:40 theta6
|
||||
+00:45 off
|
||||
}
|
||||
|
||||
22:00 theta-bursts
|
||||
23:00 theta-bursts
|
||||
00:00 theta-bursts
|
||||
01:00 theta-bursts
|
||||
02:00 theta-bursts
|
||||
03:00 theta-bursts
|
||||
04:00 theta-bursts
|
||||
05:00 theta-bursts
|
||||
06:00 theta-bursts
|
||||
|
||||
07:00 theta4
|
||||
+00:05 off
|
||||
+00:20 theta5
|
||||
+00:25 off
|
||||
|
||||
07:30 test10
|
||||
08:30 off
|
||||
|
||||
#07:30 == theta4 ->
|
||||
#08:00 == beta12
|
||||
#08:20 off
|
||||
|
||||
14
sbagen-1.4.5/examples/contrib/jim/prog-990104.sbg
Normal file
14
sbagen-1.4.5/examples/contrib/jim/prog-990104.sbg
Normal file
@@ -0,0 +1,14 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
|
||||
DT: pink/40 100+1.5/20 200+6/30
|
||||
DTA: pink/40 100+1.5/20 200+6/30 300+10/10
|
||||
off: -
|
||||
|
||||
22:00 DT
|
||||
07:00 DT ->
|
||||
08:00 DTA
|
||||
09:00 off
|
||||
|
||||
15
sbagen-1.4.5/examples/contrib/jim/prog-990105.sbg
Normal file
15
sbagen-1.4.5/examples/contrib/jim/prog-990105.sbg
Normal file
@@ -0,0 +1,15 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
|
||||
DT2: pink/40 100+1.5/25 200+4/25 300+6/10
|
||||
DTA2: pink/40 100+1.5/10 200+4/25 300+10/10
|
||||
off: -
|
||||
|
||||
22:00 DT2
|
||||
07:00 DT2 ->
|
||||
08:00 DTA2
|
||||
09:00 off
|
||||
|
||||
|
||||
16
sbagen-1.4.5/examples/contrib/jim/prog-990106.sbg
Normal file
16
sbagen-1.4.5/examples/contrib/jim/prog-990106.sbg
Normal file
@@ -0,0 +1,16 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
|
||||
DT2: pink/40 100+1.5/25 200+4/25
|
||||
DT3: pink/40 100+1.5/25 200+4/25 300+6/10
|
||||
DTA2: pink/40 100+1.5/25 200+4/5 300+10/10
|
||||
off: -
|
||||
|
||||
22:00 DT2
|
||||
07:00 DT3 ->
|
||||
08:00 DTA2
|
||||
09:00 off
|
||||
|
||||
|
||||
32
sbagen-1.4.5/examples/contrib/jim/prog-990107.sbg
Normal file
32
sbagen-1.4.5/examples/contrib/jim/prog-990107.sbg
Normal file
@@ -0,0 +1,32 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## Sleep waves - covers all frequencies from 1 Hz to 6 Hz in
|
||||
## hour-long waves through the night
|
||||
##
|
||||
|
||||
ts1: 100+1/30 200+3/30
|
||||
ts2: 100+3/30 200+6/30
|
||||
ts-wake: 100+1.5/15 200+8/30 150+4/15
|
||||
off: -
|
||||
|
||||
sleep-wave-1: {
|
||||
+0:00 ts1 ->
|
||||
+0:30 ts2 ->
|
||||
}
|
||||
|
||||
22:00 sleep-wave-1
|
||||
23:00 sleep-wave-1
|
||||
00:00 sleep-wave-1
|
||||
01:00 sleep-wave-1
|
||||
02:00 sleep-wave-1
|
||||
03:00 sleep-wave-1
|
||||
04:00 sleep-wave-1
|
||||
05:00 sleep-wave-1
|
||||
06:00 ts1 ->
|
||||
06:30 ts2 ->
|
||||
07:00 ts-wake ->
|
||||
08:00 off
|
||||
|
||||
|
||||
22
sbagen-1.4.5/examples/contrib/jim/prog-990108.sbg
Normal file
22
sbagen-1.4.5/examples/contrib/jim/prog-990108.sbg
Normal file
@@ -0,0 +1,22 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## Sleep waves - covers frequencies from 0.5 Hz to 6 Hz in
|
||||
## waves through the night, using two tones
|
||||
##
|
||||
|
||||
ts1: 100+2.5/30 200+3/30
|
||||
ts2: 100+0.5/30 200+6/30
|
||||
ts-wake: 100+1.5/15 200+7.2/30 150+4/15
|
||||
off: -
|
||||
|
||||
22:00 ts1 ->
|
||||
00:00 ts2 ->
|
||||
02:00 ts1 ->
|
||||
04:00 ts2 ->
|
||||
06:00 ts1 ->
|
||||
08:00 ts-wake ->
|
||||
09:00 off
|
||||
|
||||
|
||||
88
sbagen-1.4.5/examples/contrib/jim/prog-990111.sbg
Normal file
88
sbagen-1.4.5/examples/contrib/jim/prog-990111.sbg
Normal file
@@ -0,0 +1,88 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## Some idea of having a constant mash of different
|
||||
## frequencies fading in and out, similar to the effect of
|
||||
## that Tibetan Bells tape. (A tape used for Reiki treatments.)
|
||||
##
|
||||
# For carrier frequencies note:
|
||||
# +20% is pure-tuned minor-third above
|
||||
# +25% is pure-tuned major-third above
|
||||
# +50% is perfect fifth above
|
||||
# +100% is octave above
|
||||
#
|
||||
# Carrier frequencies
|
||||
# 100 200 400 800
|
||||
# 250 500
|
||||
# 150 300 600
|
||||
#
|
||||
# 100 and 125 would be too close together - 25 Hz is in beta
|
||||
# range
|
||||
#
|
||||
# Carrier frequency cycle:
|
||||
# 100 150 200 ...
|
||||
# 250 400 300 ...
|
||||
# 600 800 500 ...
|
||||
|
||||
# Carrier structure
|
||||
#ts-1: 100+/30 - 250+/20 - 600+/5
|
||||
#ts-2: - 150+/30 - 400+/10 - 800+/4
|
||||
#ts-3: 200+/25 - 300+/20 - 500+/8
|
||||
#ts-4: - 100+/30 - 250+/20 - 600+/5
|
||||
#ts-5: 150+/30 - 400+/10 - 800+/4
|
||||
#ts-6: - 200+/25 - 300+/20 - 500+/8
|
||||
|
||||
#
|
||||
# This sequence based on (logarithmically) equally-spaced
|
||||
# frequencies in the range 1.0 Hz to 6.5 Hz:
|
||||
#
|
||||
# 1.00 1.12 1.25 1.39 1.55 1.73
|
||||
# 1.94 2.16 2.41 2.69 3.01 3.36
|
||||
# 3.75 4.18 4.67 5.22 5.82 6.50
|
||||
#
|
||||
|
||||
ts1-1: 100+1.00/30 - 250+2.41/20 - 600+5.22/5
|
||||
ts1-2: - 150+1.73/30 - 400+3.01/10 - 800+4.67/4
|
||||
ts1-3: 200+1.12/25 - 300+3.36/20 - 500+3.75/8
|
||||
ts1-4: - 100+1.25/30 - 250+1.94/20 - 600+6.50/5
|
||||
ts1-5: 150+1.55/30 - 400+2.16/10 - 800+5.82/4
|
||||
ts1-6: - 200+1.39/25 - 300+2.69/20 - 500+4.18/8
|
||||
|
||||
|
||||
seq1: {
|
||||
+0:00 ts1-1 ->
|
||||
+0:05 ts1-2 ->
|
||||
+0:10 ts1-3 ->
|
||||
+0:15 ts1-4 ->
|
||||
+0:20 ts1-5 ->
|
||||
+0:25 ts1-6 ->
|
||||
}
|
||||
|
||||
|
||||
22:00 seq1
|
||||
22:30 seq1
|
||||
23:00 seq1
|
||||
23:30 seq1
|
||||
00:00 seq1
|
||||
00:30 seq1
|
||||
01:00 seq1
|
||||
01:30 seq1
|
||||
02:00 seq1
|
||||
02:30 seq1
|
||||
03:00 seq1
|
||||
03:30 seq1
|
||||
04:00 seq1
|
||||
04:30 seq1
|
||||
05:00 seq1
|
||||
05:30 seq1
|
||||
06:00 seq1
|
||||
06:30 seq1
|
||||
|
||||
wake-1: 100+1.5/30 200+4/15
|
||||
wake-2: 100+4/30 200+7/15 # Not sure what effect this will have
|
||||
off: -
|
||||
|
||||
07:00 wake-1 ->
|
||||
08:00 wake-2 ->
|
||||
09:00 off
|
||||
30
sbagen-1.4.5/examples/contrib/jim/prog-990112.sbg
Normal file
30
sbagen-1.4.5/examples/contrib/jim/prog-990112.sbg
Normal file
@@ -0,0 +1,30 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## Sleep waves - wavering around the 5-7 Hz mark for light
|
||||
## dreaming, hopefully, with 1.5Hz mixed in as well
|
||||
##
|
||||
|
||||
ts1: 100+1.5/30 200+5/15
|
||||
ts2: 100+1.5/30 200+7/15
|
||||
ts-wake: 100+1.5/15 200+8/30 150+4/15
|
||||
off: -
|
||||
|
||||
sleep-wave-1: {
|
||||
+0:00 ts1 ->
|
||||
+0:30 ts2 ->
|
||||
}
|
||||
|
||||
22:00 sleep-wave-1
|
||||
23:00 sleep-wave-1
|
||||
00:00 sleep-wave-1
|
||||
01:00 sleep-wave-1
|
||||
02:00 sleep-wave-1
|
||||
03:00 sleep-wave-1
|
||||
04:00 sleep-wave-1
|
||||
05:00 sleep-wave-1
|
||||
06:00 ts2 ->
|
||||
07:00 ts-wake ->
|
||||
08:00 off
|
||||
|
||||
18
sbagen-1.4.5/examples/contrib/jim/prog-990118.sbg
Normal file
18
sbagen-1.4.5/examples/contrib/jim/prog-990118.sbg
Normal file
@@ -0,0 +1,18 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## This should be connecting to my other self, and my Truth
|
||||
## all night (!?). You never know.
|
||||
##
|
||||
|
||||
ts1: 100+0.92/30 200+4.2/30
|
||||
ts-wake: 100+0.92/15 200+7/30
|
||||
off: -
|
||||
|
||||
22:00 ts1
|
||||
06:00 ts1 ->
|
||||
07:00 ts-wake ->
|
||||
08:00 off
|
||||
|
||||
|
||||
28
sbagen-1.4.5/examples/contrib/jim/prog-990209.sbg
Normal file
28
sbagen-1.4.5/examples/contrib/jim/prog-990209.sbg
Normal file
@@ -0,0 +1,28 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## I want to get up at 5:30 to put money in for a bath
|
||||
## at 8:00, okay? (i.e. put money in the coin meter to
|
||||
## heat up the hot water tank)
|
||||
##
|
||||
|
||||
ts1: 100+0.92/20 200+4.2/40
|
||||
ts-wake: 100+0.92/10 200+8/40
|
||||
ts-wake-ping: 100+0.92/10 200+8/40 bell+2050/50
|
||||
off: -
|
||||
|
||||
22:00 ts1
|
||||
05:15 ts1 ->
|
||||
05:30 ts-wake
|
||||
05:30:03 ts-wake-ping
|
||||
05:30:06 ts-wake-ping
|
||||
05:30:09 ts-wake-ping
|
||||
05:30:12 ts-wake-ping
|
||||
05:35 off ->
|
||||
06:00 ts1
|
||||
07:30 ts1 ->
|
||||
07:45 ts-wake
|
||||
08:00 off
|
||||
|
||||
|
||||
230
sbagen-1.4.5/examples/contrib/jim/prog-NSDWS-example.sbg
Normal file
230
sbagen-1.4.5/examples/contrib/jim/prog-NSDWS-example.sbg
Normal file
@@ -0,0 +1,230 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## EXPERIMENTAL OVERNIGHT SEQUENCE
|
||||
##
|
||||
## This is an example file generated from the script
|
||||
## p-nightly-sub-delta-with-surprises for use by people who don't
|
||||
## have Perl. Really it's better to use the script if you can,
|
||||
## because it generates a different sequence each night
|
||||
##
|
||||
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
##
|
||||
## The idea of this sequence is to play random tones in the sub
|
||||
## 1.0Hz band all night, accompanied by a 4.2Hz tone to somehow
|
||||
## provide a kind of link up to consciousness.
|
||||
##
|
||||
## I'm also now adding in some `surprise' tone-sets through the night
|
||||
##
|
||||
## This file was AUTOMATICALLY GENERATED
|
||||
##
|
||||
|
||||
sp0: 100+1.5/10 200+4.0/10 250+4.0/10 300+4.0/10
|
||||
sp1: 50+0.25/10 100+1.5/10 200+4.0/7 250+4.0/7 300+4.0/7 400+10.0/5 500+10.1/5 600+4.8/5
|
||||
sp2: 100+1.5/10 200+4.0/10 250+4.0/7 300+4.0/7 500+7.05/5 630+7.1/5 750+7.0/4
|
||||
sp3: 200+4.0/10 250+5.4/8 300+5.4/8 600+16.2/7 750+16.2/6 900+16.2/5
|
||||
sp4: 200+4.0/10 250+4.0/10 300+4.0/8 600+16.2/7 750+15.9/6 900+16.2/5
|
||||
sp5: 400+3.9/10 503+4.0/9 600+4.0/8 750+3.9/7 900+4.0/6
|
||||
sp6: 50+0.75/10 200+1.5/10 400+3.9/8 503+4.0/8 600+4.0/7 750+4.0/6 900+4.0/5
|
||||
sp7: 503+4.0/10 600+4.0/8 750+4.0/7 900+4.0/6
|
||||
sp8: 400+3.9/10 503+4.2/8 600+4.0/7 750+4.0/6 900+4.0/5
|
||||
sp9: 50+0.80/10 400+4.0/10 503+4.2/8 600+4.0/7 750+4.0/6 900+4.0/5
|
||||
|
||||
sp0i: 100+1.5/0 200+4.0/0 250+4.03/0 300+4.07/0
|
||||
sp1i: 50+0.25/0 100+1.5/0 200+4.0/0 250+4.03/0 300+4.07/0 400+10.0/0 500+10.1/0 600+4.8/0
|
||||
sp2i: 100+1.5/0 200+4.0/0 250+4.03/0 300+4.07/0 500+7.05/0 630+7.1/0 750+7.0/0
|
||||
sp3i: 200+4.0/0 250+5.4/0 300+5.45/0 600+16.2/0 750+16.23/0 900+16.27/0
|
||||
sp4i: 200+4.0/0 250+4.03/0 300+4.07/0 600+16.2/0 750+15.9/0 900+16.25/0
|
||||
sp5i: 400+3.9/0 503+4.0/0 600+4.03/0 750+3.95/0 900+4.07/0
|
||||
sp6i: 50+0.75/0 200+1.5/0 400+3.9/0 503+4.0/0 600+4.03/0 750+4.05/0 900+4.08/0
|
||||
sp7i: 503+4.0/0 600+4.03/0 750+4.05/0 900+4.08/0
|
||||
sp8i: 400+3.9/0 503+4.2/0 600+4.0/0 750+4.03/0 900+4.07/0
|
||||
sp9i: 50+0.80/0 400+4.0/0 503+4.2/0 600+4.03/0 750+4.05/0 900+4.08/0
|
||||
|
||||
t00: 89.16+0.789/40 178.31+4.50/10 445.78+32.05/3.5
|
||||
t01: 98.86+0.471/40 197.73+4.91/10 494.32+38.36/3.5
|
||||
t02: 63.77+0.553/40 127.55+4.98/10 318.86+34.51/3.5
|
||||
t03: 97.76+0.288/40 195.52+4.67/10 488.81+38.19/3.5
|
||||
t06: 92.16+0.298/40 184.31+3.51/10 460.78+38.20/3.5
|
||||
t07: 64.55+0.618/40 129.10+3.58/10 322.75+38.17/3.5
|
||||
t08: 115.81+0.318/40 231.61+3.91/10 579.03+38.52/3.5
|
||||
t09: 96.38+0.791/40 192.75+4.41/10 481.89+36.77/3.5
|
||||
t10: 66.80+0.988/40 133.60+4.85/10 333.99+36.44/3.5
|
||||
t11: 69.60+0.625/40 139.20+5.00/10 347.99+39.05/3.5
|
||||
t14: 66.62+0.669/40 133.25+3.80/10 333.12+32.92/3.5
|
||||
t15: 77.83+0.330/40 155.65+3.53/10 389.13+37.91/3.5
|
||||
t16: 82.58+0.429/40 165.16+3.54/10 412.90+33.54/3.5
|
||||
t17: 84.71+0.518/40 169.41+3.83/10 423.53+33.55/3.5
|
||||
t18: 62.85+0.484/40 125.71+4.83/10 314.27+32.77/3.5
|
||||
t19: 64.23+0.892/40 128.47+4.37/10 321.17+34.42/3.5
|
||||
t20: 61.45+0.856/40 122.90+3.88/10 307.25+37.63/3.5
|
||||
t21: 63.63+0.228/40 127.26+3.56/10 318.14+39.25/3.5
|
||||
t22: 61.82+0.292/40 123.63+3.52/10 309.08+39.75/3.5
|
||||
t23: 99.64+0.392/40 199.28+3.75/10 498.20+37.01/3.5
|
||||
t24: 109.00+0.273/40 218.01+4.20/10 545.02+33.14/3.5
|
||||
t25: 77.49+0.356/40 154.98+4.70/10 387.44+33.51/3.5
|
||||
t26: 74.49+0.403/40 148.99+4.99/10 372.46+32.57/3.5
|
||||
t27: 79.47+0.387/40 158.94+4.89/10 397.35+38.92/3.5
|
||||
t28: 91.12+0.406/40 182.24+4.47/10 455.60+32.79/3.5
|
||||
t29: 61.05+0.605/40 122.09+3.96/10 305.23+34.61/3.5
|
||||
t30: 75.08+0.223/40 150.16+3.60/10 375.40+35.54/3.5
|
||||
t31: 65.27+0.219/40 130.54+3.50/10 326.35+34.82/3.5
|
||||
t32: 86.95+0.973/40 173.89+3.69/10 434.74+32.23/3.5
|
||||
t33: 70.74+0.857/40 141.48+4.11/10 353.71+33.83/3.5
|
||||
t34: 75.34+0.484/40 150.68+4.62/10 376.71+37.46/3.5
|
||||
t35: 89.84+0.652/40 179.69+4.96/10 449.22+34.02/3.5
|
||||
t36: 78.27+0.269/40 156.54+4.94/10 391.35+37.36/3.5
|
||||
t37: 61.94+0.386/40 123.88+4.56/10 309.71+38.22/3.5
|
||||
t38: 72.16+0.362/40 144.32+4.05/10 360.79+39.67/3.5
|
||||
t39: 76.02+0.373/40 152.04+3.65/10 380.09+37.18/3.5
|
||||
t40: 97.75+0.820/40 195.49+3.50/10 488.73+37.51/3.5
|
||||
t41: 116.84+0.910/40 233.69+3.63/10 584.21+32.88/3.5
|
||||
t42: 106.40+0.319/40 212.81+4.02/10 532.02+35.39/3.5
|
||||
t45: 90.58+0.275/40 181.16+4.97/10 452.90+32.79/3.5
|
||||
t46: 85.89+0.424/40 171.78+4.65/10 429.45+39.45/3.5
|
||||
t47: 74.26+0.990/40 148.51+4.14/10 371.28+36.01/3.5
|
||||
t48: 113.29+0.650/40 226.57+3.71/10 566.44+34.20/3.5
|
||||
t49: 67.71+0.318/40 135.42+3.51/10 338.56+32.79/3.5
|
||||
t50: 62.14+0.930/40 124.28+3.59/10 310.70+39.65/3.5
|
||||
t51: 71.41+0.478/40 142.82+3.93/10 357.05+39.14/3.5
|
||||
t52: 74.47+0.311/40 148.94+4.43/10 372.35+37.57/3.5
|
||||
t53: 106.54+0.859/40 213.09+4.87/10 532.72+34.72/3.5
|
||||
t54: 74.03+0.349/40 148.06+4.99/10 370.16+36.88/3.5
|
||||
t55: 67.28+0.534/40 134.57+4.73/10 336.41+34.19/3.5
|
||||
t56: 90.58+0.228/40 181.17+4.24/10 452.92+37.81/3.5
|
||||
t57: 108.65+0.689/40 217.30+3.78/10 543.24+34.75/3.5
|
||||
t58: 75.44+0.861/40 150.89+3.52/10 377.22+38.26/3.5
|
||||
t59: 97.67+0.510/40 195.33+3.55/10 488.33+35.32/3.5
|
||||
t60: 67.14+0.205/40 134.28+3.85/10 335.69+34.44/3.5
|
||||
t61: 97.12+0.985/40 194.24+4.34/10 485.59+34.17/3.5
|
||||
t62: 114.27+0.997/40 228.54+4.80/10 571.36+37.21/3.5
|
||||
off: -
|
||||
wakeup: 100+0.92/20 200+4.2/20 400+13/40
|
||||
|
||||
21:00 t00
|
||||
21:05 off
|
||||
21:10 t01
|
||||
21:15 off
|
||||
21:20 t02
|
||||
21:25 off
|
||||
21:30 t03
|
||||
21:35 off
|
||||
21:40 sp3i ->
|
||||
+0:0:20 sp3 ->
|
||||
+0:14:40 sp3 ->
|
||||
+0:15 off
|
||||
22:00 t06
|
||||
22:05 off
|
||||
22:10 t07
|
||||
22:15 off
|
||||
22:20 t08
|
||||
22:25 off
|
||||
22:30 t09
|
||||
22:35 off
|
||||
22:40 t10
|
||||
22:45 off
|
||||
22:50 t11
|
||||
22:55 off
|
||||
23:00 sp3i ->
|
||||
+0:0:20 sp3 ->
|
||||
+0:14:40 sp3 ->
|
||||
+0:15 off
|
||||
23:20 t14
|
||||
23:25 off
|
||||
23:30 t15
|
||||
23:35 off
|
||||
23:40 t16
|
||||
23:45 off
|
||||
23:50 t17
|
||||
23:55 off
|
||||
00:00 t18
|
||||
00:05 off
|
||||
00:10 t19
|
||||
00:15 off
|
||||
00:20 t20
|
||||
00:25 off
|
||||
00:30 t21
|
||||
00:35 off
|
||||
00:40 t22
|
||||
00:45 off
|
||||
00:50 t23
|
||||
00:55 off
|
||||
01:00 t24
|
||||
01:05 off
|
||||
01:10 t25
|
||||
01:15 off
|
||||
01:20 t26
|
||||
01:25 off
|
||||
01:30 t27
|
||||
01:35 off
|
||||
01:40 t28
|
||||
01:45 off
|
||||
01:50 t29
|
||||
01:55 off
|
||||
02:00 t30
|
||||
02:05 off
|
||||
02:10 t31
|
||||
02:15 off
|
||||
02:20 t32
|
||||
02:25 off
|
||||
02:30 t33
|
||||
02:35 off
|
||||
02:40 t34
|
||||
02:45 off
|
||||
02:50 t35
|
||||
02:55 off
|
||||
03:00 t36
|
||||
03:05 off
|
||||
03:10 t37
|
||||
03:15 off
|
||||
03:20 t38
|
||||
03:25 off
|
||||
03:30 t39
|
||||
03:35 off
|
||||
03:40 t40
|
||||
03:45 off
|
||||
03:50 t41
|
||||
03:55 off
|
||||
04:00 t42
|
||||
04:05 off
|
||||
04:10 sp4i ->
|
||||
+0:0:20 sp4 ->
|
||||
+0:14:40 sp4 ->
|
||||
+0:15 off
|
||||
04:30 t45
|
||||
04:35 off
|
||||
04:40 t46
|
||||
04:45 off
|
||||
04:50 t47
|
||||
04:55 off
|
||||
05:00 t48
|
||||
05:05 off
|
||||
05:10 t49
|
||||
05:15 off
|
||||
05:20 t50
|
||||
05:25 off
|
||||
05:30 t51
|
||||
05:35 off
|
||||
05:40 t52
|
||||
05:45 off
|
||||
05:50 t53
|
||||
05:55 off
|
||||
06:00 t54
|
||||
06:05 off
|
||||
06:10 t55
|
||||
06:15 off
|
||||
06:20 t56
|
||||
06:25 off
|
||||
06:30 t57
|
||||
06:35 off
|
||||
06:40 t58
|
||||
06:45 off
|
||||
06:50 t59
|
||||
06:55 off
|
||||
07:00 t60
|
||||
07:05 off
|
||||
07:10 t61
|
||||
07:15 off
|
||||
07:20 t62
|
||||
07:25 off
|
||||
07:30 wakeup
|
||||
08:30 off
|
||||
51
sbagen-1.4.5/examples/contrib/jim/prog-scan-1.sbg
Normal file
51
sbagen-1.4.5/examples/contrib/jim/prog-scan-1.sbg
Normal file
@@ -0,0 +1,51 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## Scans the frequency range, gradually sliding up, then down,
|
||||
## independently on separate channels. If anything is going to
|
||||
## happen, hopefully it will at some point in the time-period.
|
||||
##
|
||||
|
||||
# Start at time 0:00
|
||||
-T 0:00
|
||||
|
||||
ts1: 100+0.5/30 200+2/15
|
||||
ts2: 100+1/30 200+1/15
|
||||
ts3: 100+2/30 200+0.5/15
|
||||
ts4: 100+4/30 200+1/15
|
||||
ts5: 100+8/30 200+2/15
|
||||
ts6: 100+4/30 200+4/15
|
||||
ts7: 100+2/30 200+8/15
|
||||
ts8: 100+1/30 200+4/15
|
||||
|
||||
seq: {
|
||||
+0:00 == ts5 ->
|
||||
+0:02 == ts6 ->
|
||||
+0:04 == ts7 ->
|
||||
+0:06 == ts8 ->
|
||||
+0:08 == ts1 ->
|
||||
+0:10 == ts2 ->
|
||||
+0:12 == ts3 ->
|
||||
+0:14 == ts4 ->
|
||||
}
|
||||
|
||||
seq80: { # 1:20 mins
|
||||
+0:00 seq
|
||||
+0:16 seq
|
||||
+0:32 seq
|
||||
+0:48 seq
|
||||
+1:04 seq
|
||||
}
|
||||
|
||||
seq4h: {
|
||||
+0:00 seq80
|
||||
+1:20 seq80
|
||||
+2:40 seq80
|
||||
}
|
||||
|
||||
0:00 seq4h
|
||||
4:00 seq4h
|
||||
8:00 seq4h
|
||||
12:00 seq4h
|
||||
16:00 seq4h
|
||||
20:00 seq4h
|
||||
|
||||
62
sbagen-1.4.5/examples/contrib/jim/prog-tape-1-hp.sbg
Normal file
62
sbagen-1.4.5/examples/contrib/jim/prog-tape-1-hp.sbg
Normal file
@@ -0,0 +1,62 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## !! EXPERIMENTAL !!
|
||||
##
|
||||
## 30 minute tape. Scans the frequency range, with two carriers,
|
||||
## sliding up and down, covering the delta/theta bands. Ends by
|
||||
## introducing a third tone so that there are two `anchors' (at
|
||||
## 0.92 and 4.2Hz) at the end, in addition to the carrier that
|
||||
## goes on up into the alpha band to bring the subject into
|
||||
## wakefulness.
|
||||
##
|
||||
## Hopefully, if there are any interesting points in these
|
||||
## frequency ranges, they will be stimulated as the frequency
|
||||
## scans by. The anchors at the end hopefully give a rounded,
|
||||
## balanced mood for the end of the session.
|
||||
##
|
||||
## Headphones recommended for maximum effect, not too loud.
|
||||
## Headphones on, lie down, relax, and allow things to happen.
|
||||
##
|
||||
## This version modified for low-quality earphones without any
|
||||
## bass response.
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
t00: 300+4.0/30 400+8.0/15
|
||||
t01: 300+1.5/30 400+5.6/15
|
||||
t02: 300+0.5/30 400+4.0/15
|
||||
t03: 300+1.5/30 400+1.5/15
|
||||
t04: 300+4.0/30 400+0.5/15
|
||||
t05: 300+5.6/30 400+1.5/15
|
||||
t06: 300+8.0/30 400+4.0/15
|
||||
t07: 300+5.6/30 400+5.6/15
|
||||
t08: 300+4.0/30 400+8.0/15
|
||||
t09: 300+1.5/30 400+5.6/15
|
||||
t10: 300+0.5/30 400+4.0/15
|
||||
t11: 300+0.7/30 400+1.5/15
|
||||
t12: 300+0.92/30 400+4.0/15
|
||||
t13: 300+0.92/30 400+5.6/15 500+4.2/0
|
||||
t14: 300+0.92/25 400+8.0/12.5 500+4.2/3.3
|
||||
t15: 300+0.92/20 400+10.0/10 500+4.2/6.7
|
||||
off: -
|
||||
|
||||
23:59:55 == off ->
|
||||
0:00 == t00 ->
|
||||
0:02 == t01 ->
|
||||
0:04 == t02 ->
|
||||
0:06 == t03 ->
|
||||
0:08 == t04 ->
|
||||
0:10 == t05 ->
|
||||
0:12 == t06 ->
|
||||
0:14 == t07 ->
|
||||
0:16 == t08 ->
|
||||
0:18 == t09 ->
|
||||
0:20 == t10 ->
|
||||
0:22 == t11 ->
|
||||
0:24 == t12 ->
|
||||
0:26 == t13 ->
|
||||
0:28 == t14 ->
|
||||
0:30 == t15 ->
|
||||
0:30:15 == off
|
||||
|
||||
94
sbagen-1.4.5/examples/contrib/jim/prog-tape-1.sbg
Normal file
94
sbagen-1.4.5/examples/contrib/jim/prog-tape-1.sbg
Normal file
@@ -0,0 +1,94 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## !! EXPERIMENTAL !!
|
||||
##
|
||||
## 30 minute tape. Scans the frequency range, with two carriers,
|
||||
## sliding up and down, covering the delta/theta bands. Ends by
|
||||
## introducing a third tone so that there are two `anchors' (at
|
||||
## 0.92 and 4.2Hz) at the end, in addition to the carrier that
|
||||
## goes on up into the alpha band to bring the subject into
|
||||
## wakefulness.
|
||||
##
|
||||
## Hopefully, if there are any interesting points in these
|
||||
## frequency ranges, they will be stimulated as the frequency
|
||||
## scans by. The anchors at the end hopefully give a rounded,
|
||||
## balanced mood for the end of the session.
|
||||
##
|
||||
## Headphones recommended for maximum effect, not too loud.
|
||||
## Headphones on, lie down, relax, and allow things to happen.
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
t00: 100+4.0/30 200+8.0/15
|
||||
t01: 100+1.5/30 200+5.6/15
|
||||
t02: 100+0.5/30 200+4.0/15
|
||||
t03: 100+1.5/30 200+1.5/15
|
||||
t04: 100+4.0/30 200+0.5/15
|
||||
t05: 100+5.6/30 200+1.5/15
|
||||
t06: 100+8.0/30 200+4.0/15
|
||||
t07: 100+5.6/30 200+5.6/15
|
||||
t08: 100+4.0/30 200+8.0/15
|
||||
t09: 100+1.5/30 200+5.6/15
|
||||
t10: 100+0.5/30 200+4.0/15
|
||||
t11: 100+0.7/30 200+1.5/15
|
||||
t12: 100+0.92/30 200+4.0/15
|
||||
t13: 100+0.92/30 200+5.6/15 300+4.2/0
|
||||
t14: 100+0.92/25 200+8.0/12.5 300+4.2/3.3
|
||||
t15: 100+0.92/20 200+10.0/10 300+4.2/6.7
|
||||
off: -
|
||||
|
||||
23:59:55 == off ->
|
||||
0:00 == t00 ->
|
||||
0:02 == t01 ->
|
||||
0:04 == t02 ->
|
||||
0:06 == t03 ->
|
||||
0:08 == t04 ->
|
||||
0:10 == t05 ->
|
||||
0:12 == t06 ->
|
||||
0:14 == t07 ->
|
||||
0:16 == t08 ->
|
||||
0:18 == t09 ->
|
||||
0:20 == t10 ->
|
||||
0:22 == t11 ->
|
||||
0:24 == t12 ->
|
||||
0:26 == t13 ->
|
||||
0:28 == t14 ->
|
||||
0:30 == t15 ->
|
||||
0:30:15 == off
|
||||
|
||||
|
||||
# ts1: 100+0.5/30 200+2/15
|
||||
# ts2: 100+1/30 200+1/15
|
||||
# ts3: 100+2/30 200+0.5/15
|
||||
# ts4: 100+4/30 200+1/15
|
||||
# ts5: 100+8/30 200+2/15
|
||||
# ts6: 100+4/30 200+4/15
|
||||
# ts7: 100+2/30 200+8/15
|
||||
# ts8: 100+1/30 200+4/15
|
||||
# ts5-w: 100+10/30 200+8/15
|
||||
# off: -
|
||||
#
|
||||
# seq: {
|
||||
# +0:00:00 == off ->
|
||||
# +0:00:05 == ts7 ->
|
||||
# +0:02 == ts8 ->
|
||||
# +0:04 == ts1 ->
|
||||
# +0:06 == ts2 ->
|
||||
# +0:08 == ts3 ->
|
||||
# +0:10 == ts4 ->
|
||||
# +0:12 == ts5 ->
|
||||
# +0:14 == ts6 ->
|
||||
# +0:16 == ts7 ->
|
||||
# +0:18 == ts8 ->
|
||||
# +0:20 == ts1 ->
|
||||
# +0:22 == ts2 ->
|
||||
# +0:24 == ts3 ->
|
||||
# +0:26 == ts4 ->
|
||||
# +0:28 == ts5 ->
|
||||
# +0:30 == ts5-w ->
|
||||
# +0:30:15 off
|
||||
# }
|
||||
#
|
||||
# NOW seq
|
||||
#
|
||||
135
sbagen-1.4.5/examples/contrib/jim/prog-tape-2.sbg
Normal file
135
sbagen-1.4.5/examples/contrib/jim/prog-tape-2.sbg
Normal file
@@ -0,0 +1,135 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## This is a version of prog-chakras-1, adjusted to fit better on one
|
||||
## side of a C90 tape (46:40 mins or so), using 2:55 mins between bells.
|
||||
## The frequencies have also been altered to scan across the range in
|
||||
## which I am guessing the chakra lies. This way, the chakra should
|
||||
## hopefully be stimulated at some point in the period, even if I have
|
||||
## all the frequencies wrong.
|
||||
##
|
||||
## This was designed for use for a Reiki meeting, in which 3 three people
|
||||
## give healing to one person on the table, for four positions of 3 mins
|
||||
## each, after which everyone changes around (so everyone has a turn on the
|
||||
## table). This is why the sequence repeats every 12 mins (approx) - this
|
||||
## is how long each person gets.
|
||||
##
|
||||
# Original notes follow ...
|
||||
#
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
#
|
||||
# ** WARNING: This is very experimental. I'm not at all sure that it is
|
||||
# ** possible to find frequencies for the Chakras, if they are the same for
|
||||
# ** each person, if they are always at the same frequency, or even if all
|
||||
# ** of the Chakras can be stimulated in this way. I AM NOT AWARE ENOUGH
|
||||
# ** TO SAY IF THIS REALLY WORKS. This is just an experiment.
|
||||
#
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
#
|
||||
# This cycles through a sequence of four pure-tuned chords, each
|
||||
# of which takes 3 minutes, and is designed to stimulate
|
||||
# different Chakras. A bell indicates the change between
|
||||
# chords. Each cycle of chords takes 12 minutes, and this is
|
||||
# repeated endlessly.
|
||||
#
|
||||
# The frequencies for the Chakras, and the idea that the Chakras
|
||||
# can indeed be stimulated in this way, using Theta frequencies,
|
||||
# has come purely from my own experience and sensations that I
|
||||
# have felt whilst listening to binaural beats at different
|
||||
# frequencies.
|
||||
#
|
||||
# I have no idea if the Chakras are at the same frequencies for
|
||||
# other people, or even if I have really got the right
|
||||
# frequencies for myself.
|
||||
#
|
||||
# So take this as it comes. You may need to experiment on
|
||||
# yourself a bit to find what the individual frequencies do to
|
||||
# you.
|
||||
#
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
#
|
||||
# Carriers:
|
||||
#
|
||||
# Root 50 100 200 400 800
|
||||
# 3rd 250 500 1000
|
||||
# 5th 150 300 600 1200
|
||||
# m7th 350 700 1400
|
||||
#
|
||||
# 100 250 600 or 150 375 900
|
||||
# 100 300 500 or 150 450 750
|
||||
# 100 250 600 or 150 375 900
|
||||
# 100 200 300 500 or 150 300 450 750
|
||||
#
|
||||
# Chakras, approx frequencies: (VERY APPROX, EXPERIMENTAL)
|
||||
#
|
||||
# 1 2 3 4 Sliding range (11%, 88%)
|
||||
# 7th 7.50 X 7.05->8.00 (7.16, 7.89)
|
||||
# 6th 6.60 X 6.10->7.05 (6.21, 6.94)
|
||||
# 5th 5.60 X 5.25->6.10 (5.34, 6.01)
|
||||
# 4th 4.90 X X 4.55->5.25 (4.63, 5.17)
|
||||
# 3rd 4.20 X 3.90->4.55 (3.97, 4.48)
|
||||
# 2nd 3.65 X 3.50->3.90 (3.54, 3.86)
|
||||
# 1st 3.30 X X 3.10->3.50 (3.14, 3.46)
|
||||
# 1.50 X X
|
||||
# 0.92 X X
|
||||
|
||||
-SE
|
||||
|
||||
# Set based on 50Hz fundamental
|
||||
#ts50-1: 100+1.50/30 250+4.20/12 600+4.90/5 bell+2050/20
|
||||
#ts50-2: 100+0.92/30 300+3.65/10 500+5.60/6 bell+2050/20
|
||||
#ts50-3: 100+1.50/30 250+3.30/12 600+6.60/5 bell+2050/20
|
||||
#ts50-4: 100+0.92/30 200+3.30/15 300+4.90/10 500+7.5/6 bell+2050/20
|
||||
|
||||
# Sliding set
|
||||
ts50-1a: 100+1.50/0 250+4.55/0 600+4.55/0 bell+2050/20
|
||||
ts50-1b: 100+1.50/30 250+4.48/12 600+4.63/5
|
||||
ts50-1c: 100+1.50/30 250+3.97/12 600+5.17/5
|
||||
ts50-1d: 100+1.50/0 250+3.90/0 600+5.25/0
|
||||
ts50-2a: 100+0.92/0 300+3.90/0 500+5.25/0 bell+2050/20
|
||||
ts50-2b: 100+0.92/30 300+3.86/10 500+5.34/6
|
||||
ts50-2c: 100+0.92/30 300+3.54/10 500+6.01/6
|
||||
ts50-2d: 100+0.92/0 300+3.50/0 500+6.10/0
|
||||
ts50-3a: 100+1.50/0 250+3.50/0 600+6.10/0 bell+2050/20
|
||||
ts50-3b: 100+1.50/30 250+3.46/12 600+6.21/5
|
||||
ts50-3c: 100+1.50/30 250+3.14/12 600+6.94/5
|
||||
ts50-3d: 100+1.50/0 250+3.10/0 600+7.05/0
|
||||
ts50-4a: 100+0.92/0 200+3.10/0 300+4.55/0 500+7.05/0 bell+2050/20
|
||||
ts50-4b: 100+0.92/30 200+3.14/15 300+4.63/10 500+7.16/6
|
||||
ts50-4c: 100+0.92/30 200+3.46/15 300+5.17/10 500+7.89/6
|
||||
ts50-4d: 100+0.92/0 200+3.50/0 300+5.25/0 500+8.00/0
|
||||
|
||||
# Misc
|
||||
off: -
|
||||
bell: bell+2050/20
|
||||
|
||||
seq1: { # 11:40 minutes (one cycle)
|
||||
+0:00:00 == ts50-1a ->
|
||||
+0:00:20 == ts50-1b ->
|
||||
+0:02:35 == ts50-1c ->
|
||||
+0:02:55 == ts50-1d ->
|
||||
+0:02:55 == ts50-2a ->
|
||||
+0:03:15 == ts50-2b ->
|
||||
+0:05:30 == ts50-2c ->
|
||||
+0:05:50 == ts50-2d ->
|
||||
+0:05:50 == ts50-3a ->
|
||||
+0:06:10 == ts50-3b ->
|
||||
+0:08:25 == ts50-3c ->
|
||||
+0:08:45 == ts50-3d ->
|
||||
+0:08:45 == ts50-4a ->
|
||||
+0:09:05 == ts50-4b ->
|
||||
+0:11:20 == ts50-4c ->
|
||||
+0:11:40 == ts50-4d ->
|
||||
}
|
||||
|
||||
seq4: { # 4x11:40 == 46:40 (four cycles)
|
||||
+0:00:00 seq1
|
||||
+0:11:40 seq1
|
||||
+0:23:20 seq1
|
||||
+0:35:00 seq1
|
||||
}
|
||||
|
||||
0:00:00 off ->
|
||||
0:00:01 seq4
|
||||
0:46:41 bell ->
|
||||
0:46:51 off ->
|
||||
|
||||
29
sbagen-1.4.5/examples/contrib/jim/prog-tape-3.sbg
Normal file
29
sbagen-1.4.5/examples/contrib/jim/prog-tape-3.sbg
Normal file
@@ -0,0 +1,29 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## !! EXPERIMENTAL !!
|
||||
##
|
||||
## 30 minute tape. Gently goes from the edge of alpha down
|
||||
## through theta to deep delta. The tape fades out in deep
|
||||
## delta. This is designed to help someone get to sleep. The
|
||||
## carrier also drops in pitch to give that `sinking feeling'.
|
||||
##
|
||||
## Headphones recommended, low volume.
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
off: -
|
||||
t00: 300+8.0/30
|
||||
t01: 275+6.0/30
|
||||
t02: 250+4.0/30
|
||||
t03: 225+2.5/30
|
||||
t04: 200+1.5/30
|
||||
|
||||
23:59:55 == off ->
|
||||
0:00 == t00 ->
|
||||
0:06 == t01 ->
|
||||
0:12 == t02 ->
|
||||
0:18 == t03 ->
|
||||
0:24 == t04 ->
|
||||
0:30 == off
|
||||
|
||||
22
sbagen-1.4.5/examples/contrib/jim/prog-test-wave.sbg
Normal file
22
sbagen-1.4.5/examples/contrib/jim/prog-test-wave.sbg
Normal file
@@ -0,0 +1,22 @@
|
||||
## From Jim Peters:
|
||||
##
|
||||
## Some testing of the wave stuff. This is EXPERIMENTAL, and probably
|
||||
## doesn't work as originally intended. See appendix in SBAGEN.TXT.
|
||||
|
||||
#wave00: 0 10 4 2 1 1 1 0.5
|
||||
#wave02: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
#wave02: 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
#wave00: 0 1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1
|
||||
#wave00: 9 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
#wave00: 9 9 9 9 0 0 0 0 5 5 5 5 0 0 0 0
|
||||
#wave01: 0 1 2 3 4 3 2 1
|
||||
#wave02: 0 1 2 3 4
|
||||
|
||||
wave00: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
||||
|
||||
#ts1: 300+4/50
|
||||
#ts1: wave02:300+0.125/50
|
||||
|
||||
ts1: wave00:300+5/50
|
||||
|
||||
0:00 ts1
|
||||
7
sbagen-1.4.5/examples/contrib/jim/ts-calm.sbg
Normal file
7
sbagen-1.4.5/examples/contrib/jim/ts-calm.sbg
Normal file
@@ -0,0 +1,7 @@
|
||||
## Delta 1.5 Hz + Theta 6 Hz
|
||||
|
||||
ts: pink/40 100+1.5/20 200+6/30
|
||||
|
||||
0:00 ts
|
||||
|
||||
|
||||
7
sbagen-1.4.5/examples/contrib/jim/ts-calm2.sbg
Normal file
7
sbagen-1.4.5/examples/contrib/jim/ts-calm2.sbg
Normal file
@@ -0,0 +1,7 @@
|
||||
## Delta 1.5 Hz + Theta 6 Hz
|
||||
|
||||
ts: pink/40 100+1.5/20 150+6/30
|
||||
|
||||
0:00 ts
|
||||
|
||||
|
||||
6
sbagen-1.4.5/examples/contrib/jim/ts-mix1.sbg
Normal file
6
sbagen-1.4.5/examples/contrib/jim/ts-mix1.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## These are 5Hz theta waves, plus a bit of delta at 2.1Hz
|
||||
|
||||
ts: pink/40 100+5/30 200+2.1/5
|
||||
|
||||
0:00 ts
|
||||
|
||||
14
sbagen-1.4.5/examples/contrib/jim/ts-purring-cat.sbg
Normal file
14
sbagen-1.4.5/examples/contrib/jim/ts-purring-cat.sbg
Normal file
@@ -0,0 +1,14 @@
|
||||
##
|
||||
## Sub-delta 0.2 Hz, delta 3.78Hz, beta 38.84Hz
|
||||
##
|
||||
## During one all-night randomly-generated sequence (see p-* files),
|
||||
## I was aware of a really strong effect from one set of tones, so I
|
||||
## awoke to take a note of the tone-set. This was it. For some reason
|
||||
## I can't remember, I called it 'purring cat'. It doesn't have quite
|
||||
## the effect now, so maybe I need to be deep already for it to work.
|
||||
##
|
||||
|
||||
ts: 112.85+0.20/40.00 225.70+3.78/10.00 564.26+38.84/3.50
|
||||
|
||||
0:00 ts
|
||||
|
||||
5
sbagen-1.4.5/examples/contrib/jim/ts-recharge.sbg
Normal file
5
sbagen-1.4.5/examples/contrib/jim/ts-recharge.sbg
Normal file
@@ -0,0 +1,5 @@
|
||||
## Recharge
|
||||
|
||||
ts: 102+4/10 412-4/10 502-4/10
|
||||
|
||||
0:00 ts
|
||||
6
sbagen-1.4.5/examples/contrib/jim/ts-test10.sbg
Normal file
6
sbagen-1.4.5/examples/contrib/jim/ts-test10.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## Test 10 -- hopefully similar to Focus 10: "body asleep, mind awake"
|
||||
|
||||
ts: pink/40 100.75+1.5/20 202+4/36 404+8/2
|
||||
|
||||
0:00 ts
|
||||
|
||||
6
sbagen-1.4.5/examples/contrib/jim/ts-test10b.sbg
Normal file
6
sbagen-1.4.5/examples/contrib/jim/ts-test10b.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## Test 10B
|
||||
|
||||
ts: pink/40 100+1.5/20 200+4/36 400+8/2
|
||||
|
||||
0:00 ts
|
||||
|
||||
6
sbagen-1.4.5/examples/contrib/jim/ts-test10c.sbg
Normal file
6
sbagen-1.4.5/examples/contrib/jim/ts-test10c.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## Test 10C
|
||||
|
||||
ts: 100+1.5/30 200+4/10 400+8/1
|
||||
|
||||
0:00 ts
|
||||
|
||||
6
sbagen-1.4.5/examples/contrib/jim/ts-truth-other.sbg
Normal file
6
sbagen-1.4.5/examples/contrib/jim/ts-truth-other.sbg
Normal file
@@ -0,0 +1,6 @@
|
||||
## TRUTH (4.2) and Other Self (0.92); in theory ...
|
||||
|
||||
ts: 100+0.92/30 200+4.2/15
|
||||
|
||||
0:00 ts
|
||||
|
||||
5
sbagen-1.4.5/examples/contrib/kh-lost-storm.sbg
Normal file
5
sbagen-1.4.5/examples/contrib/kh-lost-storm.sbg
Normal file
@@ -0,0 +1,5 @@
|
||||
# This one from Kevin Hardin
|
||||
|
||||
ts: 403.732+1.56/4.173 403.725+4.137/1.56
|
||||
|
||||
0:00 ts
|
||||
109
sbagen-1.4.5/examples/contrib/ng-1.sbg
Normal file
109
sbagen-1.4.5/examples/contrib/ng-1.sbg
Normal file
@@ -0,0 +1,109 @@
|
||||
##
|
||||
## This based on some ideas from Norman Grant.
|
||||
##
|
||||
## Take a rough average Shuman frequency (earth resonance: 7.83
|
||||
## +/- 0.50), multiply up to get it to around 40Hz (rumoured
|
||||
## super-harmonic of the brain), giving 39.15Hz, and generate
|
||||
## frequencies from this by dividing by primes.
|
||||
##
|
||||
# 39.15 / 1 == 39.15
|
||||
# 39.15 / 2 == 19.575
|
||||
# 39.15 / 3 == 13.05
|
||||
# 39.15 / 5 == 7.83
|
||||
# 39.15 / 7 == 5.59285714285714
|
||||
# 39.15 / 11 == 3.55909090909091
|
||||
# 39.15 / 13 == 3.01153846153846
|
||||
# 39.15 / 17 == 2.30294117647059
|
||||
# 39.15 / 19 == 2.06052631578947
|
||||
# 39.15 / 23 == 1.70217391304348
|
||||
# 39.15 / 29 == 1.35
|
||||
# 39.15 / 31 == 1.26290322580645
|
||||
# 39.15 / 37 == 1.05810810810811
|
||||
# 39.15 / 41 == 0.954878048780488
|
||||
# 39.15 / 43 == 0.91046511627907
|
||||
# 39.15 / 47 == 0.832978723404255
|
||||
# 39.15 / 53 == 0.738679245283019
|
||||
# 39.15 / 59 == 0.663559322033898
|
||||
# 39.15 / 61 == 0.641803278688525
|
||||
# 39.15 / 67 == 0.584328358208955
|
||||
# 39.15 / 71 == 0.551408450704225
|
||||
# 39.15 / 73 == 0.536301369863014
|
||||
# 39.15 / 79 == 0.495569620253165
|
||||
#
|
||||
|
||||
-SE
|
||||
|
||||
ts1: - 100+39.15/80
|
||||
ts2: 100+19.575/80
|
||||
ts3: - 100+13.05/80
|
||||
ts5: 100+7.83/80
|
||||
ts7: - 100+5.59285714285714/80
|
||||
ts11: 100+3.55909090909091/80
|
||||
ts13: - 100+3.01153846153846/80
|
||||
ts17: 100+2.30294117647059/80
|
||||
ts19: - 100+2.06052631578947/80
|
||||
ts23: 100+1.70217391304348/80
|
||||
ts29: - 100+1.35/80
|
||||
ts31: 100+1.26290322580645/80
|
||||
ts37: - 100+1.05810810810811/80
|
||||
ts41: 100+0.954878048780488/80
|
||||
ts43: - 100+0.91046511627907/80
|
||||
ts47: 100+0.832978723404255/80
|
||||
ts53: - 100+0.738679245283019/80
|
||||
ts59: 100+0.663559322033898/80
|
||||
ts61: - 100+0.641803278688525/80
|
||||
ts67: 100+0.584328358208955/80
|
||||
ts71: - 100+0.551408450704225/80
|
||||
ts73: 100+0.536301369863014/80
|
||||
ts79: - 100+0.495569620253165/80
|
||||
off: -
|
||||
|
||||
0:00:00 ts1 ->
|
||||
0:00:10 ts1 ->
|
||||
0:02:00 ts1 ->
|
||||
0:02:10 ts2 ->
|
||||
0:04:00 ts2 ->
|
||||
0:04:10 ts3 ->
|
||||
0:06:00 ts3 ->
|
||||
0:06:10 ts5 ->
|
||||
0:08:00 ts5 ->
|
||||
0:08:10 ts7 ->
|
||||
0:10:00 ts7 ->
|
||||
0:10:10 ts11 ->
|
||||
0:12:00 ts11 ->
|
||||
0:12:10 ts13 ->
|
||||
0:14:00 ts13 ->
|
||||
0:14:10 ts17 ->
|
||||
0:16:00 ts17 ->
|
||||
0:16:10 ts19 ->
|
||||
0:18:00 ts19 ->
|
||||
0:18:10 ts23 ->
|
||||
0:20:00 ts23 ->
|
||||
0:20:10 ts29 ->
|
||||
0:22:00 ts29 ->
|
||||
0:22:10 ts31 ->
|
||||
0:24:00 ts31 ->
|
||||
0:24:10 ts37 ->
|
||||
0:26:00 ts37 ->
|
||||
0:26:10 ts41 ->
|
||||
0:28:00 ts41 ->
|
||||
0:28:10 ts43 ->
|
||||
0:30:00 ts43 ->
|
||||
0:30:10 ts47 ->
|
||||
0:32:00 ts47 ->
|
||||
0:32:10 ts53 ->
|
||||
0:34:00 ts53 ->
|
||||
0:34:10 ts59 ->
|
||||
0:36:00 ts59 ->
|
||||
0:36:10 ts61 ->
|
||||
0:38:00 ts61 ->
|
||||
0:38:10 ts67 ->
|
||||
0:40:00 ts67 ->
|
||||
0:40:10 ts71 ->
|
||||
0:42:00 ts71 ->
|
||||
0:42:10 ts73 ->
|
||||
0:44:00 ts73 ->
|
||||
0:44:10 ts79 ->
|
||||
0:46:00 ts79 ->
|
||||
0:46:10 off
|
||||
|
||||
44
sbagen-1.4.5/examples/contrib/rusty-1.sbg
Normal file
44
sbagen-1.4.5/examples/contrib/rusty-1.sbg
Normal file
@@ -0,0 +1,44 @@
|
||||
##
|
||||
## A sequence from Rusty Wickell
|
||||
##
|
||||
|
||||
-SE
|
||||
|
||||
bluehigh: pink/65 709.4+11.08/5 354.7+5.54/10 177.35+2.77/20
|
||||
bluelow: pink/65 568.43+8.88/5 284.21+4.44/10 142.11+2.22/20
|
||||
bluemid: pink/65 640+10/5 320+5/10 160+2.5/20
|
||||
|
||||
00:00:00 bluemid ->
|
||||
00:15:00 bluehigh ->
|
||||
00:30:00 bluemid ->
|
||||
00:45:00 bluelow ->
|
||||
01:00:00 bluemid ->
|
||||
01:15:00 bluehigh ->
|
||||
01:30:00 bluemid ->
|
||||
01:45:00 bluelow ->
|
||||
02:00:00 bluemid ->
|
||||
02:15:00 bluehigh ->
|
||||
02:30:00 bluemid ->
|
||||
02:45:00 bluelow ->
|
||||
03:00:00 bluemid ->
|
||||
03:15:00 bluehigh ->
|
||||
03:30:00 bluemid ->
|
||||
03:45:00 bluelow ->
|
||||
04:00:00 bluemid ->
|
||||
04:15:00 bluehigh ->
|
||||
04:30:00 bluemid ->
|
||||
04:45:00 bluelow ->
|
||||
05:00:00 bluemid ->
|
||||
05:15:00 bluehigh ->
|
||||
05:30:00 bluemid ->
|
||||
05:45:00 bluelow ->
|
||||
06:00:00 bluemid ->
|
||||
06:15:00 bluehigh ->
|
||||
06:30:00 bluemid ->
|
||||
06:45:00 bluelow ->
|
||||
07:00:00 bluemid ->
|
||||
07:15:00 bluehigh ->
|
||||
07:30:00 bluemid ->
|
||||
07:45:00 bluelow ->
|
||||
08:00:00 bluemid
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user