Mojave DVD Player bug - drops .dvdmedia support

Talk to other Pedia users about the programs, share tricks and tips or ask questions about existing features.
Post Reply
Ted
Addicted to Bruji
Addicted to Bruji
Posts: 94
Joined: Thu Jan 20, 2005 3:30 pm
Location: NYC, NY

Mojave DVD Player bug - drops .dvdmedia support

Post by Ted »

DVD Player stopped opening .dvdmedia files in Mojave - you need to put DVDs in Folder/Video_TS format. (Which .dvdmedia files are, just inside a container)

"Bug" may be the wrong word - I'd bet this was a planned decision at Apple - no idea why, DVD Player has supported .dvdmedia since the dawn of man. This is related to DVDPedia if I end up replacing all the .dvdnedia files with Folders I'll have to re-link them in DVDPedia
User avatar
Conor
Top Dog
Posts: 5335
Joined: Sat Jul 03, 2004 12:58 pm
Contact:

Re: Mojave DVD Player bug - drops .dvdmedia support

Post by Conor »

If you replace all .dvdmedia media files you can use the SQL backend to run a find and replace on the links to change all the links as well. As the format is likely to be consistent. It would be done in the program named Terminal and would be something like this assuming you keep the same name and make it a folder instead with a VIDEO_TS inside:

Code: Select all

cp ~/Library/Application\ Support/DVDpedia/Database.dvdpd ~/Library/Application\ Support/DVDpedia/BackupSQL.dvdpd 
sqlite3 ~/Library/Application\ Support/DVDpedia/Database.dvdpd
update ZLINK Set ZURL = replace(ZURL, '.dvdmedia', '/VIDEO_TS');
.exit
Post Reply