Skip to content

Commit

Permalink
feat: link to open sample spatial audio file
Browse files Browse the repository at this point in the history
  • Loading branch information
godly-devotion committed Mar 27, 2024
1 parent 71a3b69 commit eebc149
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Front Row/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,9 @@
}
}
}
},
"Experience Spatial Audio" : {

},
"Float on Top" : {
"localizations" : {
Expand Down
16 changes: 16 additions & 0 deletions Front Row/Main Menu/AppCommands.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,22 @@ struct AppCommands: Commands {
Text("Check for Updates…")
}
.disabled(!updater.canCheckForUpdates)

Section {
Button {
Task {
guard
let url = URL(
string:
"https://media.developer.dolby.com/DDP/MP4_HPL40_30fps_channel_id_51.mp4"
)
else { return }
await PlayEngine.shared.openFile(url: url)
}
} label: {
Text("Experience Spatial Audio")
}
}
}
}

Expand Down

0 comments on commit eebc149

Please sign in to comment.