Skip to content

torcado194/scritch-player

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scritch player

logo

Scritch player is a simple HTML media player designed for ease of creation and customization. If you have a collection of audio files, simply drop them in and upload to a website to get a player to listen to it!

The original intention was to create a media player for musicians to use to upload their albums to itch.io. Something for them to easily copy/migrate their existing albums from sites like bandcamp.

How to

Scritch editor

The Scritch editor is a tool made to streamline this process. You can use it to create a Scritch player right in your browser, and see customization changes immediately.

Otherwise, manually setting up the player is just as easy.

Manual

  1. Place audio files and cover art in the /media folder

  2. Edit config.json to include the audio files. Add entries to the media array like so:

"media": [
    {
        "file": "track1.mp3",
        "title": "Track 1",
        "info": "(lyrics or other information can go here)",
        "feature": true
    },
    {
        "file": "track2.mp3",
        "title": "Track 2",
    },
    ...
]
  1. Set the cover art file in config.json:
"cover": "cover.png"
  1. (optional) Add a title to config.json, like so:
"title": "My Album"
  1. (optional) Add a description to config.json, like so:
"description": "(add text here)"
  1. (optional) Edit config.json to modify the player's theme to your liking:
"theme": {
    "coverSize": 480,
    "layoutStyle": "horizontal",
    "infoStyle": "overlaid",
    "titleStyle": "span",
    "contentWidth": 400,
    "nativePlayer": false
},

And that's it! you can upload the files to your website, or zip them up and upload to itch.io, or anywhere else that can host HTML projects.

config.json settings

note: all display-text options can include HTML, not just plain text

title (optional)

Text at the top of the player
"title": "My Album"


media

List of media files to include in the player

"media": [
    {"file": "track1.mp3", "title": "Track 1"},
    ...
]


cover (optional)

The name of the file in the /media folder for the cover image


description (optional)

The text at the bottom of the player


theme (optional)

An object containing theme settings and colors


loopModeDefault (optional)

The type of loop mode to start with.
Can be set to one of:

  • "none" (no looping) (default)
  • "playlist" (after the last track ends, start playing the first track)
  • "track" (loop the same selected track repeatedly)

media entry options

file

The name of the file in the /media folder
Not required if entry is set to "locked"


title (optional)

The name shown for this entry in the player.
Defaults to the file name if not specified


cover (optional)

The name of the file in the /media folder for the cover image for this track.
This will replace the main cover image when this track is playing, and uses the same theme options (such as coverSize)
NOTE: this will have no effect when the media is a video, the video display takes precedence.


feature (optional)

If true, sets this file as the "featured" track, which will queue up first when loading the page.
Can be either true or false
Defaults to false


autoplay (optional)

If true and feature is also true, this track will play after loading.
NOTE: this will not work in most cases, due to browsers preventing autoplaying audio until the user interacts with the page. This will only be relevant if the player is loaded after user interaction, e.g. when running on itch.io with autoload disabled.
Can be either true or false
Defaults to false


type (optional)

The type of the media.
Can be either "audio" or "video"
Defaults to "audio"


info (optional)

Extra text for this file, such as for lyrics or artist attributions. This will be optionally shown over/under the cover image, or togglable below the track.


locked (optional)

If true, sets this file as "locked" preventing it from being playable.
Can be either true or false
Defaults to false
Enable this if e.g. you want to show that this file would be available in the purchased download of your album.
Note: the file field is not required if this is enabled, you shouldn't include the file in the player.


loopCount (optional)

The number of times to repeat the track after the first play
Ignored if set to 0 or lower
Defaults to 0

preview options

a preview is a section of a full track, used if e.g. you want to include a snippet of a track that would be available in the full download of your album.
note: it is highly recommended that the file you use for a preview track is clipped to the region you want to preview, because the file can be accessed by users. Scritch will support the file in either case, however.

e.g. {"file": "track1.mp3", "title": "Track 1", previewStart: 12, previewEnd: 42, originalDuration: "1:20"}


previewStart (optional, required for preview)

The start time for the preview section of the full track.
Can be a number of seconds or an H:M:S string, e.g. 125.3, "2:05", "00:21:13.5" are all valid.


previewEnd (optional, required for preview)

The end time for the preview section of the full track.
Can be a number of seconds or an H:M:S string, e.g. 125.3, "2:05", "00:21:13.5" are all valid.


originalDuration (optional, required for preview)

The duration of the full (unclipped) track.
Can be a number of seconds or an H:M:S string, e.g. 125.3, "2:05", "00:21:13.5" are all valid.


previewFade (optional)

If true, the player will automatically fade the audio at the start and end of the preview section.
Can be either true or false
Defaults to true


theme options

all settings are optional. colors can be any valid CSS color

titleStyle

Styles the title text, if available.
"none" (default) no styling
"span" title spans the entire width, centered.


backgroundColor

Color of the page background


primaryColor

Main color of the controls (e.g. the circle of the play button, the prev/next track buttons, the filled progress bar, etc.)


primaryAltColor

Color of e.g. the unfilled section of the progress bar and volume bar


secondaryColor

Secondary color of the controls (e.g. the triangle of the play button)


highlightColor

Background color of the selected track


primaryTextColor

Color of most text (e.g. titles, description, info, etc.)


primaryAltTextColor

Color of e.g. the track numbers and duration, and the track info button


previewStripeColor1

First color of the striped bar on a preview track.


previewStripeColor2

Second color of the striped bar on a preview track.


linkColor

Color of links in text


overlayTextColor

Color of info text on the cover overlay


overlayBackgroundColor

Color of the overlay background


layoutStyle

Styles the overall structure of the player
"horizontal" (default) the cover image sits to the right of the player controls and track list
"vertical" all elements align vertically (from top to bottom: title -> cover -> controls -> track list)


infoStyle

Styles the track info of the currently playing track
"overlaid" (default) text sits layered on top of the cover image
"overlaid-toggle" text sits layered on top of the cover image only if the info drawer is toggled on the current track, otherwise it is hidden
"below" text sits below the cover image (note: this will push down the controls and track list in a vertical layout)
"none" text is not displayed (other than in the info drawer under the track, when toggled)


hideInfoDropdown

Hides the info dropdown box beneath tracks
false (default) info dropdown is not hidden
true info dropdown is hidden


contentWidth

Width of the column containing the controls, track list, and description


coverSize

Width of the cover image (non-square images will scale accordingly)


nativePlayer

Changes the player controls
false (default) custom player controls
true uses the browser's default audio player (also hides the player when a video is playing, the video's default controls will be available)


customCSS

Custom changes to the page's CSS

License

This project is under the MIT license

About

A simple, customizable HTML media player designed for artists

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages