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 sys | |
import mutagen | |
def write_style_to_genre(input_path): | |
# Open the file | |
file = mutagen.File(input_path) | |
print(file.tags.pprint()) | |
# Check if the file has a STYLE tag |
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
#!/bin/bash | |
SUPPORTED_FILES=('.wav' '.wave' '.aif' '.aiff' '.flac') | |
INPUT_PATH=$1 | |
BASE_PATH=${INPUT_PATH##*/} | |
FILE_EXTENSION= | |
FILE_NAME= | |
setup_file() { |
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
// DEPRECATED | |
const { | |
withDangerousMod, | |
WarningAggregator, | |
AndroidConfig, | |
withAppBuildGradle, | |
} = require("@expo/config-plugins"); | |
const path = require("path"); | |
const fs = require("fs"); |
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" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DisplayProductID</key> | |
<integer>26116</integer> | |
<key>DisplayProductName</key> | |
<string>AWS Nitro D-1</string> | |
<key>DisplayVendorID</key> | |
<integer>1779</integer> |
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: Expo Preview | |
on: [pull_request] | |
jobs: | |
preview: | |
name: Deploy Pull Request | |
runs-on: ubuntu-latest | |
steps: |