Lip Syncer Import File Format
The following .json file format is used to import tracks into the Lip Syncer app.
LastModified
- The date this import file was last LastModified
Track1
- URL to an audio file which will be imported as the "Song" track
Track2
- (Optional) URL to an audio file which will be imported as the "Tempo" track
Track3
- (Optional) URL to an audio file which will be imported as the "Clap" track
TrackSections
- (Optional) Array containing:
- Name - Section Name
- Start - Start timecode (in seconds)
- End - End timecode (in seconds)
Example
{
"LastModified": "2023-10-24T00:00:00Z",
"Track1": "https://myDomain/testsong.mp3",
"Track2": "https://myDomain/testtempo.mp3",
"Track3": "https://myDomain/testclap.mp3",
"TrackSections": [
{
"Name": "Intro",
"Start": 0,
"End": 5000
},
{
"Name": "Middle",
"Start": 5000,
"End": 8000
},
{
"Name": "End",
"Start": 8000,
"End": 11000
}
]
}