Skip to content

Commit

Permalink
Merge pull request #205 from kagemomiji/issue195-documentation-cue-sheet
Browse files Browse the repository at this point in the history
#195 add troubleshooting for cue sheet tracks do not end
  • Loading branch information
kagemomiji committed Apr 29, 2023
2 parents 4bfd2ec + 6c630d7 commit f34416d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,11 @@ First migration to 11.x will create a backup DB next to the DB folder. It will b
If you use HSQLDB for 10.6.0, DB migration must fails.
First upgrade to 11.0.0-SNAPSHOT.20221224143241 then upgrade to latest release.

Troubleshooting
------

See the [Troubleshooting](./docs/troubleshooting.md)

History
-----

Expand Down
17 changes: 17 additions & 0 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Troubleshooting

## Cue sheet tracks do not end at the end of the track

See also [issue #195](https://github.com/kagemomiji/airsonic-advanced/issues/195)

If you have a cue sheet with multiple tracks, and you play a track which is not the last track, the client will continue to play the next track without ending.

Please check the following settings.

`Settings` -> `Transcoding` -> `Downsample command`

To fix this, you need to add split option `%S` to the beginning of the command.

Before: `ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -`

After: `ffmpeg %S -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -`

0 comments on commit f34416d

Please sign in to comment.