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
<?xml version="1.0"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | |
http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<parent> | |
<groupId>org.sonatype.oss</groupId> | |
<artifactId>oss-parent</artifactId> | |
<version>7</version> | |
</parent> |
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
<distributionManagement> | |
<repository> | |
<id>OPF Artefactory</id> | |
<name>OPF Artefactory-releases</name> | |
<url>http://artifactory.opf-labs.org/artifactory/libs-release-local</url> | |
</repository> | |
</distributionManagement> | |
<repositories> | |
<repository> |
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 bash | |
# | |
# Script to mix multiple CDs (< 10) into all combinations (order considered unimportant). | |
# Mixing to a set of 2 channel mixes where all lefts are combined to the final left | |
# channel and all right channels are combined to the final right. | |
# | |
# While I've tried to make it reasonably forgiving failure to follow these rules | |
# may have unexpected results. | |
# | |
# CD Directory rules: |
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
import multiprocessing as mp | |
import os | |
import sys | |
# pip import soundfile | |
import soundfile as SF | |
# pip install numpy | |
import numpy | |
# pip install scipy | |
from scipy import signal |
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
import json | |
import os | |
import subprocess | |
from swagger_server.models import ValidationReport | |
MAIN_OPTS = [ | |
'java', | |
'-jar', | |
'/home/cfw/Downloads/commons-ip2-cli-2.0.0.jar', |
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
--- | |
- name: context | |
type: markdown | |
path: context/index.md | |
- name: requirements.structure | |
type: markdown | |
path: requirements/stucture/index.md | |
- name: requirements.METS.package_reps |