Skip to content

Added ogx (ogg for multiplexed audio) to supported file formats #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions bongo.el
Original file line number Diff line number Diff line change
Expand Up @@ -3167,6 +3167,7 @@ See `bongo-line-proposed-external-fields'."
"mp3"
"mtm"
"ogg"
"ogx"
"okt"
"r36"
"ra"
Expand Down Expand Up @@ -5818,6 +5819,7 @@ These will come at the end or right before the file name, if any."
"mpg"
"mtm"
"ogg"
"ogx"
"ogm"
"ra"
"rm"
Expand Down Expand Up @@ -6086,7 +6088,7 @@ These will come at the end or right before the file name, if any."
;; Play generic URLs and files if the file extension
;; matches that of some potentially supported format.
:matcher '((local-file "file:" "http:" "ftp:")
"ogg" "flac" "mp3" "mka" "wav" "wma"
"ogg" "ogx" "flac" "mp3" "mka" "wav" "wma"
"mpg" "mpeg" "vob" "avi" "ogm" "mp4" "mkv"
"mov" "asf" "wmv" "rm" "rmvb" "ts")

Expand Down Expand Up @@ -6487,7 +6489,7 @@ Also fetch metadata and length of track if not fetched already."
;; TODO: The matchers below are just copied from MPlayer's config, since
;; mpv was forked off MPlayer
:matcher '((local-file "file:" "http:" "ftp:")
"ogg" "flac" "mp3" "mka" "wav" "wma"
"ogg" "ogx" "flac" "mp3" "mka" "wav" "wma"
"mpg" "mpeg" "vob" "avi" "ogm" "mp4" "mkv"
"mov" "asf" "wmv" "rm" "rmvb" "ts")

Expand Down