Re: TOS 7.0.0777 Official Release (X86) is Now Available
Posted: 09 Jul 2026, 03:40
Device: F2-425 Plus
TOS Version: 7.0.0777
Affected Apps: Emby
Core Issue
No thumbnail/preview images are generated for video files
How to Reproduce
1. Fresh install of Emby from TerraMaster App Store on TOS 7
2. Run ps aux | grep EmbyServer - observe missing -programdata value
3. Try to generate thumbnail for any video file
4. Check Emby logs for "output file not found" error and Data path: -ffdetect
Details. What I found (Sorry for the long text):
1.No thumbnail/preview images are generated for video files
When trying to generate thumbnails, Emby fails with:
Code: Select all
Error ImageExtraction: ffmpeg image extraction failed for /path/to/video.mp4 (output file not found)In the Emby log (embyserver.txt), the Data path is shown as:
Code: Select all
Data path: -ffdetectCode: Select all
Data path: /Volume1/EmbyThe file /Volume1/@apps/emby/emby-server/bin/emby-server contains:
Code: Select all
APP_DATA_DIR=$(ter_share_add -name "Emby")Resulting broken command (-programdata has no value):
Code: Select all
/Volume1/@apps/emby/emby-server/system/EmbyServer -programdata -ffdetect /Volume1/@apps/emby/emby-server/bin/ffdetect ...
Code: Select all
/Volume1/@apps/emby/emby-server/system/EmbyServer -programdata /Volume1/Emby -ffdetect /Volume1/@apps/emby/emby-server/bin/ffdetect ...Workaround
Added line to /Volume1/@apps/emby/emby-server/bin/emby-server
Code: Select all
APP_DATA_DIR="/Volume1/Emby"Code: Select all
APP_DATA_DIR=$(ter_share_add -name "Emby")Please fix this. Thanks!

