Jellyfin Forum
Jellyfin can access mounted SMB share but FFMPEG reports no such file error - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Jellyfin can access mounted SMB share but FFMPEG reports no such file error (/t-jellyfin-can-access-mounted-smb-share-but-ffmpeg-reports-no-such-file-error)



Jellyfin can access mounted SMB share but FFMPEG reports no such file error - Vollhorst - 2024-12-15

Hi,

First time Jellyfin user here and so far I am quite impressed with your work - thank you! I am experiencing an issue similar to https://forum.jellyfin.org/t-solved-jellyfin-can-access-mounted-nfs-but-ffmpeg-says-no-such-file but with Jellyfin 10.10.3 running in a LXC under Proxmox I have setup via https://community-scripts.github.io/ProxmoxVE/scripts?id=jellyfin.

When attempting to play back a file with hardware encoding enabled (Intel QSV) via the Jellyfin iOS App, the playback will fail and I can observe the following error in ffmpeg.log:

Code:
libva info: VA-API version 1.22.0
libva info: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_22
libva info: va_openDriver() returns 0
[in#0 @ 0x608208a61100] Error opening input: No such file or directory
Error opening input file file:/mnt/fileserver-public/Videos/Shows/Test.avi.
Error opening input files: No such file or directory
 

/mnt/fileserver-public is a SMB share on my NAS which I made available to the Proxmox host via /etc/fstab and passed through to the virtual machine via the conf file for the LXC. Jellyfin itself can access the folder and files without issues (successfully added as library and playback works when using direct access).

Any pointers to the issue would be appreciated. Thanks a lot for your help in advance!


RE: Jellyfin can access mounted SMB share but FFMPEG reports no such file error - TheDreadPirate - 2024-12-15

What parameters did you use for the SMB mount in fstab?


RE: Jellyfin can access mounted SMB share but FFMPEG reports no such file error - Vollhorst - 2024-12-16

Code:
//fileserver/public /mnt/fileserver-public cifs username=proxmox,password=XXX,iocharset=utf8,vers=3.0 0 0



RE: Jellyfin can access mounted SMB share but FFMPEG reports no such file error - TheDreadPirate - 2024-12-16

Add "noperm" to the the end of the options.

Code:
//fileserver/public /mnt/fileserver-public cifs username=proxmox,password=XXX,iocharset=utf8,vers=3.0,noperm 0 0



RE: Jellyfin can access mounted SMB share but FFMPEG reports no such file error - Vollhorst - 2024-12-18

This fixed the issue. Thank you very much for your help!