TSK API を調べると、ファイル システムのブロック/セクターあたりのサイズを返す関数を見つけました。pytsk3 を使用して Python で試してみます。
import pytsk3
#defining the path of the disk image
url="10-ntfs-disk.dd"
#getting an Img_Info object
img=pytsk3.Img_Info(url)
#opening the file system, 32256 is the offset of the file system in bytes
fs=pytsk3.TSK_FS_INFO(img, 32256, pytsk3.TSK_FS_TYPE_NTFS)
print fs.block_size
ただし、出力は「セグメンテーション違反」です。次に何をすべきかわかりません。pytsk3 のGitHub wikiでは、この例ではpytsk3.FS_Info()
ファイル システムを開くために使用されていますが、このクラスにはブロック サイズを返す関数がないようです。