(2013-11-18, 03:51)jmarshall Wrote: Using the AFP protocol in the same way? It's likely the protocol, not the host machine that is the cause.
Using whatever protocol VMWare uses for a shared drive on the host machine. I tried copying the '5 Step Grayscale' folder directly to the system drive of the MBP that is running XBMC and the files did open no problem. But that is not over a network so the path resolution is done differently:
Code:
20:13:23 T:2685891904 NOTICE: DVDPlayer: Opening: /Users/user/Movies/5 Step Grayscale/1-100% White.mp4
as opposed to:
Code:
13:20:42 T:2685891904 NOTICE: DVDPlayer: Opening: afp://192.168.1.100/Movies/AVS HD 709 - Blu-ray Calibration/MP4-2c/CalMAN Fields/5 Step Grayscale/1-100% White.mp4
which results in:
Code:
13:20:42 T:2957688832 INFO: CAFPFile::Open: Unable to open file : '/AVS HD 709 - Blu-ray Calibration/MP4-2c/CalMAN Fields/5 Step Grayscale/1-100White.mp4'
unix_err:'2' error : 'No such file or directory'
It seems AFP is performing as it should, the path is being read correctly when attempting to open it but "% " is being converted to "" when attempting to read it, resulting in 'file not found' error.
I get similar results with VLC if I don't enclose the path in quotes:
Code:
Mac-Pro-2010:5 Step Grayscale user$ /Applications/VLC.app/Contents/MacOS/VLC 1-100% White.mp4
VLC media player 2.1.0 Rincewind (revision 2.1.0-0-gedd8835)
[0x100207570] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
[0x10a90a320] filesystem access error: cannot open file /Users/user/Movies/AVS HD 709 - Blu-ray Calibration/MP4-2c/CalMAN Fields/5 Step Grayscale/1-100% (No such file or directory)
[0x103a59ed0] main input error: open of `file:///Users/user/Movies/AVS%20HD%20709%20-%20Blu-ray%20Calibration/MP4-2c/CalMAN%20Fields/5%20Step%20Grayscale/1-100%25' failed
[0x103e11f50] filesystem access error: cannot open file /Users/user/Movies/AVS HD 709 - Blu-ray Calibration/MP4-2c/CalMAN Fields/5 Step Grayscale/White.mp4 (No such file or directory)
[0x108400c90] main input error: open of `file:///Users/user/Movies/AVS%20HD%20709%20-%20Blu-ray%20Calibration/MP4-2c/CalMAN%20Fields/5%20Step%20Grayscale/White.mp4' failed
The path must be quoted to work. I can play any media file that does not have that character in the name over AFP. It is how XBMC resolves the path over a network that is likely the problem, and not the protocol. It is converting that character pair and changing the filename when it passes it to the play routine.