kopia lustrzana https://github.com/corrscope/corrscope
new username uwu
rodzic
790610461c
commit
734afb2658
|
@ -122,7 +122,7 @@ This is a bugfix release, since master has regressions in pitch tracking.
|
|||
- Add pitch-tracking trigger checkbox
|
||||
- Waves should no longer jump around when pitch changes.
|
||||
- Rapidly repeating pitch changes (less than 6 frames apart) are skipped for performance.
|
||||
- Pitch tracking may increase CPU usage on noise channels. See https://github.com/nyanpasu64/corrscope/issues/213 for details
|
||||
- Pitch tracking may increase CPU usage on noise channels. See https://github.com/corrscope/corrscope/issues/213 for details
|
||||
- Add stereo rendering support
|
||||
- Located in stereo tab in GUI
|
||||
- Add per-channel amplification support
|
||||
|
@ -138,4 +138,4 @@ This is a bugfix release, since master has regressions in pitch tracking.
|
|||
|
||||
## 0.2.0 and before
|
||||
|
||||
See https://github.com/nyanpasu64/corrscope/releases.
|
||||
See https://github.com/corrscope/corrscope/releases.
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
BSD 2-Clause License
|
||||
|
||||
Copyright (c) 2018, nyanpasu64
|
||||
Copyright (c) 2018-2020+, nyanpasu64
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
|
14
README.md
14
README.md
|
@ -1,9 +1,9 @@
|
|||
# Corrscope
|
||||
|
||||
[](https://ci.appveyor.com/project/nyanpasu64/ovgenpy/branch/master)
|
||||
[](https://github.com/nyanpasu64/corrscope/releases)
|
||||

|
||||
[](https://codecov.io/gh/nyanpasu64/corrscope)
|
||||
[](https://ci.appveyor.com/project/nyanpasu64/corrscope/branch/master)
|
||||
[](https://github.com/corrscope/corrscope/releases)
|
||||
[](https://pypi.org/project/corrscope/)
|
||||
[](https://codecov.io/gh/corrscope/corrscope)
|
||||
|
||||
Corrscope renders oscilloscope views of WAV files recorded from chiptune (game music from retro sound chips).
|
||||
|
||||
|
@ -11,7 +11,7 @@ Corrscope uses "waveform correlation" to track complex waves (including SNES and
|
|||
|
||||
Sample results can be found on my Youtube channel at https://www.youtube.com/nyanpasu64/videos.
|
||||
|
||||
Documentation is available at https://nyanpasu64.github.io/corrscope/.
|
||||
Documentation is available at https://corrscope.github.io/corrscope/.
|
||||
|
||||

|
||||
|
||||
|
@ -21,8 +21,8 @@ Documentation is available at https://nyanpasu64.github.io/corrscope/.
|
|||
|
||||
## Installation
|
||||
|
||||
- Releases (recommended): https://github.com/nyanpasu64/corrscope/releases
|
||||
- Dev Builds: https://ci.appveyor.com/project/nyanpasu64/ovgenpy/history
|
||||
- Releases (recommended): https://github.com/corrscope/corrscope/releases
|
||||
- Dev Builds: https://ci.appveyor.com/project/nyanpasu64/corrscope/history
|
||||
|
||||
Instructions:
|
||||
|
||||
|
|
|
@ -635,7 +635,7 @@ class MainWindow(qw.QMainWindow, Ui_MainWindow):
|
|||
# Misc.
|
||||
@qc.pyqtSlot()
|
||||
def on_action_help(self):
|
||||
help_url = r"https://nyanpasu64.github.io/corrscope/"
|
||||
help_url = r"https://corrscope.github.io/corrscope/"
|
||||
QDesktopServices.openUrl(qc.QUrl(help_url))
|
||||
|
||||
|
||||
|
|
|
@ -368,7 +368,7 @@ class CorrelationTrigger(MainTrigger):
|
|||
def _calc_lag_prevention(self) -> np.ndarray:
|
||||
""" Returns input-data window,
|
||||
which zeroes out all data older than 1-ish frame old.
|
||||
See https://github.com/nyanpasu64/corrscope/wiki/Correlation-Trigger
|
||||
See https://github.com/corrscope/corrscope/wiki/Correlation-Trigger
|
||||
"""
|
||||
N = self._buffer_nsamp
|
||||
halfN = N // 2
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Corrscope Help
|
||||
|
||||
Homepage at <https://github.com/nyanpasu64/corrscope>. Report bugs at https://github.com/nyanpasu64/corrscope/issues/ or https://discord.gg/CCJZCjc.
|
||||
Homepage at <https://github.com/corrscope/corrscope>. Report bugs at https://github.com/corrscope/corrscope/issues/ or https://discord.gg/CCJZCjc.
|
||||
|
||||
*Corrscope is named because it cross-correlates the input wave and a history buffer, to maximize wave alignment between frames.*
|
||||
|
||||
|
|
|
@ -532,7 +532,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
|
|||
testing = ["pathlib2", "contextlib2", "unittest2"]
|
||||
|
||||
[metadata]
|
||||
content-hash = "73c834ecb9c640a11558eb7b2c1d42d960ead3bdfeb111e9d2671452172b808a"
|
||||
content-hash = "ae44a40e4ce4457a285cb2ca2885ac134b7191410c983e6318e85d45012765b2"
|
||||
python-versions = "^3.6"
|
||||
|
||||
[metadata.files]
|
||||
|
|
|
@ -506,7 +506,7 @@ def test_unicode_dump_load():
|
|||
https://bitbucket.org/ruamel/yaml/issues/316/unicode-encoding-decoding-errors-on
|
||||
|
||||
And affects real users when they save "most recent files" containing Unicode.
|
||||
https://github.com/nyanpasu64/corrscope/issues/308
|
||||
https://github.com/corrscope/corrscope/issues/308
|
||||
|
||||
Workaround in MyYAML.dump(), to encode as UTF-8 instead of locale.
|
||||
"""
|
||||
|
|
Ładowanie…
Reference in New Issue