Skip to content

Commit

Permalink
VLC: fix quit command (vlc://quit) to prevent looping
Browse files Browse the repository at this point in the history
  • Loading branch information
chocolateboy committed May 18, 2013
1 parent 66d3360 commit f5524e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.txt
Expand Up @@ -4,6 +4,9 @@ Changelog:
1.82.0 - 2013-??-??

Engines:
- dcraw Thumbnailer:
- Fix image transcoding
- Add support for more extensions
- FFmpeg:
- Fix bug that disabled FFmpeg for compatible files
- Fix audio channel selection (thanks, valib)
Expand All @@ -13,9 +16,8 @@ Changelog:
- tsMuxeR:
- Fixed 24-bit FLAC support with tsMuxeR (thanks, SubJunk)
- Fix bug that disabled tsMuxeR for compatible files
- dcraw Thumbnailer:
- Fix image transcoding
- Add support for more extensions
- VLC:
- Fix looping playback
- Misc:
- New engine: VLCWebVideo ("vlcwebvideo")
- Clean up engine names
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/pms/encoders/VLCVideo.java
Expand Up @@ -324,8 +324,8 @@ public ProcessWrapper launchTranscode(String fileName, DLNAResource dlna, DLNAMe
cmdList.add("--sout");
cmdList.add(transcodeSpec);

// Force VLC to die when finished
cmdList.add("vlc:// quit");
// Force VLC to exit when finished
cmdList.add("vlc://quit");

// Add any extra parameters
if (!extraParams.getText().trim().isEmpty()) { // Add each part as a new item
Expand Down

0 comments on commit f5524e0

Please sign in to comment.