Skip to content

smrg-lm/t2m

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Repository content

config.yaml       # runtime configurable parameters
freesound_v2.yaml # blueprint to zip freesound login data
README.md         # this readme
requirements.txt  # python required packages
t2m.py            # the app script
twitter_v1.yaml   # blueprint to zip twitter login data

After install and setup this directory will contain:

credentials.zip   # a zip file with passowrd
t2mvenv           # a python virtual environmnet folder

Install

This is a command line application that has to be installed and run manually. python, git and ffmpeg commands must be accessible from a terminal.

  1. Install SuperCollider: https://supercollider.github.io/download

    Run the SuperCollider's IDE and boot the server at least once to enable network permissions for the server and quit the IDE. The IDE is not needed later.

  2. Install ffmpeg command.

    On Windows 10:

  3. Install git: https://git-scm.com/downloads

  4. Install Python 3.8+ in your platform: https://www.python.org/downloads

  5. Clone t2m repo

    git clone https://github.com/smrg-lm/t2m
    

    and move to the t2m created directory.

  6. Create a virtual env within t2m directory

    python -m venv t2mvenv
    

    To activate it on Linux or Mac:

    source t2mvenv/bin/activate

    To activate it on Windows 10:

    Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
    t2mvenv\Scripts\Activate.ps1

    Upgrade pip:

    python -m pip install pip --upgrade
    
  7. Install required packages with t2mvenv activated

    python -m pip install -r requirements.txt
    

    Install spacy en model afterwards

    python -m spacy download en_core_web_sm
    

Credentials

The program needs a standard (e.g. Info-ZIP) password protected zip file containing only two files: freesounds_v2.yaml and twitter_v1.yaml that in turn contain the keys and secrets to use the app. Blueprints of these files are provided.

Info-ZIP on Linux will compress and encrypt the files with this command:

zip -e credentials.zip freesound_v2.yaml twitter_v1.yaml

Configuration

A few run time parameters can be configured using the config.yaml file.

hashtag: '#t2mtest'            # a str with the hastag or search query for Twitter API
select: [ADJ, NOUN]            # a list of word types (without quotes) for spacy analysis
filter: 'duration:[15 TO 30]'  # Freesound API search filters
search_wait_time: 15           # a number as wait time between searches (also initial wait time)
tweet_dur: 40                  # a number as the duration of shown tweets if sounds were found
credentials: 'credentials.zip' # the filename of the credentials file

Run

  1. cd to the t2m directory.

  2. Activate t2mvenv

    Linux or Mac:

    source t2mvenv/bin/activate

    Windows 10:

    Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
    t2mvenv\Scripts\Activate.ps1
  3. Run the script

    python t2m.py
    

    The password for credentials.zip file will be prompted in the terminal then the app creates a window that can be placed in another screen for projection. The window has two keyboard actions, F to toggle full screen and Esc to exit the app. All runtime log information will post in the running terminal for monitoring.

Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages