This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| it2fss.py, version 0.2 | |
| ---------------------- | |
| Python 3 only. | |
| This script converts single-channel Impulse Tracker module into a FSS text file | |
| for use with fsound.exe. No effects commands are supported. Needless to say, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| Program that renders a WAV file by converting IT pattern data into a | |
| playback routine for an imaginary sound chip. | |
| """ | |
| import operator | |
| import wave |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2 | |
| from argparse import ArgumentParser | |
| from sys import stderr | |
| import mutagen | |
| def get_args(): | |
| parser = ArgumentParser(description='view and edit audio tags') | |
| parser.add_argument('-t', '--title', type=str, help='set title') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Controls: | |
| // - Arrow keys - move cursor | |
| // - Esc - toggle reprint of last character on movement | |
| // - ^C - exit program, printing the screen to standard output | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdbool.h> | |
| #include <ncurses.h> |