openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
M
morituri
Settings
|
Report Duplicate
1
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Inactive
Commits
: Listings
Analyzed
23 days
ago. based on code collected
24 days
ago.
Jan 29, 2024 — Jan 29, 2025
Showing page 25 of 33
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
* morituri/test/cdparanoia.progress: Add a shorter test file, 23 seconds. * morituri/test/test_program_cdparanoia.py: Update the test to adapt. Check for track quality. * morituri/program/cdparanoia.py: Add a measure of track quality based on the number of reads. Use the [wrote] output for progress updates, a bit more jittery in its output. * morituri/rip/cd.py: Set track quality on RipResult.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/rip/cd.py: Use RipResult to store result information. * morituri/result/logger.py (added): Add a Logger to handle the RipResult, much like EAC's log file.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/rip/cd.py: Comment out number of track setting on tag for now. MusicBrainz can give us dates in YYYY, YYYY-MM, and YYYY-MM-DD format, so convert to YYYY-MM-DD always. Unmount the data part of the CD we want to rip if it is mounted. Adapt to peak level change. Don't try to write data tracks to the m3u file. Resolve the device path to the actual device path.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/result/result.py: Add a Logger base class.
Thomas Vander Stichele
More...
over 15 years ago
* configure.ac: * morituri/Makefile.am: * morituri/result (added): * morituri/result/result.py (added): * morituri/result/__init__.py (added): * morituri/result/Makefile.am (added): Add classes to store track and rip results in.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/common.py: Add an argument for the delimiter in formatting. * morituri/common/encode.py: Most programs use peak volume, not power, so do this too.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/test/common.py: Add a method for diffing multiline strings.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/encode.py: Add a test() method to the profile so we can warn about bad flacenc versions. Encode track number and count, and release date, if possible. * morituri/rip/cd.py: Fix another off-by-one error in the tag encoding.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/program/cdparanoia.py: * morituri/rip/cd.py: Handle another off-by-one error in the m3u handling. Add a getTagList function. Use it to encode tags.
Thomas Vander Stichele
More...
over 15 years ago
add some goals
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/encode.py: * morituri/program/cdparanoia.py: * morituri/rip/cd.py: Clean up the temporary unencoded file. Pass profile as objects to tasks, so that temp files have the right extension.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/encode.py: * morituri/program/cdparanoia.py: Add encoding profiles, kept simple for now as a class and subclasses. Use them to encode. Calculate peak level while encoding, compared to EAC and replaygain's value. * morituri/rip/cd.py: Use the encoding profiles, ripping with the right extension. Add a --profile parameter for it.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/rip/cd.py: Clean up track numbering confusion.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/encode.py (added): * examples/encode.py (added): Add an Encode Task, hardcoded to flac for now. Add an example, that also sets tags.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/task.py: Add debug. * morituri/rip/drive.py: Show all drives, not just the ones that happen to have an Audio CD inserted.
Thomas Vander Stichele
More...
over 15 years ago
add doc
Thomas Vander Stichele
More...
over 15 years ago
* morituri/rip/cd.py: Add asserts for comparing id's between the simple toc and the full table. Create the output directory before ripping the htoa. Ignore data tracks for now. Don't fail if we have no AccurateRip responses. * morituri/image/table.py: Add a session ivar to Track. Factor in session leadin when calculating track length of last track in a session. add getMusicBrainzSubmitURL() add _getSessionGap() because the session gap size is different for session 2 and all following. Use it in merge() to get offsets right. Fix getAccurateRipURL by only using the audio tracks for the 'length in tracks' number Temporarily disable writing out data tracks to a .cue file, since it's not implemented yet. Add canCue to see if we can write a .cue file from the given table, and debug why not if not. * morituri/program/cdrdao.py: Rework to rip each session separately instead of using session 9. This fixes session 9 read-toc missing the pregap. Add a simple LineParser for handling output from disk-info. Count tracks relatively for the session, because the output for session 2 for track numbers picks up where session 1 left off. Don't set leadout from TOC printing since for the same reason session 2's leadout is absolute, not relative to start of session. Add a DiscInfoTask. Convert Table and Toc reading tasks to multitasks, first getting the number of sessions, then reading table/toc for each session. * morituri/test/test_image_table.py: Fix up MusicBrainz disc id for my Ladyhawke disc. Add AccurateRip URL verification, compared against EAC's. * morituri/test/test_image_toc.py: Use two separate session read-toc output files to verify the case of Das Capital. Verify musicbrainz URL.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/task.py: Add documentation. Use a _task counter instead of duplicating tasks to __tasks; this allows us to add tasks after starting. Catch Exceptions during next() so that we don't get stuck in a main loop that doesn't exit. Raise it later when we're done.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/common.py: Since the version was inherited from the current code in unpickled objects, separate into classVersion and an instanceVersion set from __init__.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/image/toc.py: Add a logName for debugging.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/program/cdparanoia.py: * morituri/image/image.py: Correctly chain up to parent __init__ for MultiTasks
Thomas Vander Stichele
More...
over 15 years ago
* morituri/test/capital.1.toc (added): * morituri/test/capital.2.toc (added): Add two .toc's for two sessions of a 2 session disc * morituri/image/table.py: Add a merge method to merge in a second session. * morituri/test/Makefile.am: * morituri/test/test_image_toc.py: Add a test for merging the Das Capital sessions, gets the CDDB disc id right.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/common/common.py: Add a persisted cache so that we can store pickles on discs. Automatically delete them if the class version is newer than the object's. * morituri/rip/cd.py: Use it.
Thomas Vander Stichele
More...
over 15 years ago
* morituri/image/table.py: Add a version ivar to help with versioning pickled objects.
Thomas Vander Stichele
More...
almost 16 years ago
* morituri/program/cdparanoia.py: Add copy and test CRC's to object.
Thomas Vander Stichele
More...
almost 16 years ago
* morituri/common/Makefile.am: * morituri/common/drive.py (added): Add drive module.
Thomas Vander Stichele
More...
almost 16 years ago
pychecker fixes
Thomas Vander Stichele
More...
almost 16 years ago
* morituri/program/cdparanoia.py: * morituri/program/cdrdao.py: * morituri/rip/cd.py: * morituri/rip/offset.py: Add device argument to ripping/scanning tasks.
Thomas Vander Stichele
More...
almost 16 years ago
* morituri/common/accurip.py: * morituri/image/image.py: * morituri/test/Makefile.am: * morituri/test/test_image_image.py: * morituri/test/test_common_accurip.py (added): Move accuraterip stuff to the accurip module. Move/create new test file.
Thomas Vander Stichele
More...
almost 16 years ago
* morituri/rip/Makefile.am: * morituri/rip/main.py: * morituri/rip/drive.py (added): Add 'rip drive list' command to list available drives. * morituri/common/accurip.py: Add force. * morituri/rip/cd.py: Add --output-directory argument.
Thomas Vander Stichele
More...
almost 16 years ago
←
1
2
…
21
22
23
24
25
26
27
28
29
…
32
33
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree