May 27th, 2014, 5:18
May 27th, 2014, 5:58
May 27th, 2014, 6:14
May 27th, 2014, 8:32
May 27th, 2014, 9:16
May 27th, 2014, 11:51
May 27th, 2014, 14:14
michael chiklis wrote:I downloaded the Fusion Filesystem Reader:
http://www.hope.co.nz/projects/fusion/
but seems not working, it's not able to read the boot sector
May 28th, 2014, 5:21
What happens if you ignore the warning?
Could you upload the first 16 sectors in BIN form? I'm wondering whether the "boot signature" is actually a checksum.
They talk about a second data extraction tool (Syphon):
http://web.archive.org/web/201203260221 ... rg/Syphon/
http://web.archive.org/web/200711051603 ... 0.1.20.zip
May 28th, 2014, 14:58
Fusion / Thomson Digiality Nokia 260T
Std FS A/V FS Std FS A/V FS Std FS A/V FS
0x0000000C 0x00000008 0x00000009 0x00000008 0x0000000D 0x00000008May 29th, 2014, 11:47
May 29th, 2014, 14:38
/**
* Fusion Viewer Project
*
* Tool to view the drive contents of the Fusion FVRT100 PVR hard drive
*
* fusion.h - Contains common definitions for fusion drive layout
*
* $Revision: 1.9 $
* $Date: 2007/08/27 20:58:35 $
* $Author: danielh $
* $Log: fusion.h,v $
* Revision 1.9 2007/08/27 20:58:35 danielh
* Version 0.98 (27 August 2007)
*
* Revision 1.8 2007/08/27 16:18:28 danielh
* Version 0.98 (27 August 2007)
*
* Revision 1.7 2006/07/17 22:03:26 danielh
* Increase version to 0.9.7
*
* Revision 1.6 2006/04/14 19:18:34 danielh
* Win95 support
*
* Revision 1.5 2006/01/31 02:02:33 danielh
* Digiality support
* Version 0.9.6
*
* Revision 1.4 2006/01/11 02:22:24 danielh
* Update version to 0.9.5
*
* Revision 1.3 2005/12/30 21:15:24 danielh
* Changes to compile on linux
*
* Revision 1.2 2005/10/21 04:37:58 danielh
* 0.92
*
* Revision 1.1 2005/10/06 20:33:41 danielh
* Initial Revision
*
*
*
* Copyright: (c) 2005 Daniel Hope http://www.hope.co.nz
*/
#ifndef _FUSION_H_
#define _FUSION_H_
#define FUSION_PRODUCT "DigiFusion FVRT100 File System Reader"
#define FUSION_VERSION "0.9.8"
#define FUSION_VERDATE "27 August 2007"
#define FUSION_COPYRIGHT "Copyright 2007 Daniel Hope"
#include "ftypes.h"
#define SECTOR_SIZE 512
typedef struct tagFATHEADER {
uint8 fat_sequence[4]; // FAT sequence number
uint8 directory_sequence[4]; // Root directory sequence number
uint8 signature[4]; // always 0x12345678
uint8 clusters_used[4];
uint8 unused[0x0200];
uint8 cluster_size[4];
uint8 cluster_count[4];
} FATHEADER; // 0x218 = 536 bytes
#define PARTTYPE_STANDARD 0x0000000C
#define PARTTYPE_DIGIALITY 0x00000009
#define PARTTYPE_NOKIA 0x0000000D
#define PARTTYPE_AV 0x00000008
typedef struct tagPARTITION { // Fusion / Thomson // Digiality
// Nokia 260T
uint32 unknown0; // 0x00000001 0x00000001 0x00000001
0x00000001 0x00000001 0x00000001
char fs_name[32]; // Std FS A/V FS Std FS A/V
FS Std FS A/V FS
uint32 part_type; // 0x0000000C 0x00000008 0x00000009
0x00000008 0x0000000D 0x00000008
uint32 unknown2; // 0x00000FFF 0x000000FF 0x000001FF
0x000000FF 0x00001FFF 0x000000FF
uint32 cluster_size; // 0x00020000 0x04000000 0x00008000
0x04000000 0x00020000 0x04000000
uint32 cluster_count; // 0x00008000 0x00000212 0x00000400
0x00000726 0x00003000 0x0000048E
uint32 unknown5; // 0x00000004 0x00000004 0x00000004
0x00000004 0x00000004 0x00000004
uint32 max_files; // 0x00001000 0x00000100 0x00000200
0x00000100 0x00002000 0x00000100
uint32 fat_count; // 0x00000004 0x00000004 0x00000004
0x00000004 0x00000004 0x00000004
uint32 fat_sector; // 0x00000010 0x00821030 0x00000010
0x00010220 0x00000010 0x00321CF0
uint32 fat_length; // 0x00010400 0x00007800 0x00000C00
0x00019400 0x00006400 0x00010200
uint32 directory_sector; // 0x00000220 0x00821120 0x00000030
0x00010550 0x000000E0 0x00321F00
uint32 directory_size; // 0x0001C200 0x0000D200 0x00003A00
0x0000D200 0x00038200 0x0000D200
uint32 first_data_sector; // 0x00001030 0x008217B0 0x00000200
0x00010BE0 0x00001CF0 0x00322590
uint32 last_data_sector; // 0x00801030 0x04A617B0 0x00010200
0x0E4D0BE0 0x00301CF0 0x094E2590
uint32 unknown14; // 0x00000001 0x00000000 0x00000001
0x00000000 0x00000001 0x00000000
uint32 unknown15; // 0x00821030 0x00000000 0x00010200
0x00000000 0x00301CF0 0x00000000
uint32 unknown16; // 0x00200000 0x00000000 0x00000020
0x00000000 0x00020000 0x00000000
uint32 unknown17; // 0x00821030 0x00000000 0x00010200
0x00000000 0x00321CF0 0x00000000
} PARTITION; // 104 bytes = 0x68 bytes
#define BOOT_SIGNATURE 0x31415926
typedef struct tagBOOTSECTOR {
uint16 init_date; // EPG style date
uint16 zero1;
uint32 signature; // signature - 0x31415926
uint32 sector_count;
PARTITION partition1;
PARTITION partition2;
uint8 padding1[4]; // 0 filled
uint8 av_direntry[0xD0]; // see fsav.h for definition - actually -
this is likely just junk...
uint8 padding2[80];
} BOOTSECTOR;
#endif /* _FUSION_H_ */May 29th, 2014, 15:54
May 29th, 2014, 22:33
Vilpo wrote:I have a problem with the Hard drive of my Vision 4400 pvr
May 29th, 2014, 23:55
Dmitri wrote:Is it some device used to record television programs on demand ...
Vilpo wrote:I have a problem with the Hard drive of my Vision 4400pvr -set top box ...
June 1st, 2014, 18:13
fzabkar wrote:Dmitri wrote:Is it some device used to record television programs on demand ...Vilpo wrote:I have a problem with the Hard drive of my Vision 4400pvr -set top box ...
June 1st, 2014, 21:21
June 2nd, 2014, 5:42
fzabkar wrote:The user manuals for the Medion and Vision 4400 PVRs look very similar.
Vision VDC 4400 PVR User Manual:
http://fi.pdf-instructions.com/dref/3242870
Medion MDC 4400 PVR User Manual:
http://fi.pdf-instructions.com/dref/3828722
Photos of Medion MDC 4400:
http://cache.osta.ee/iv2/auctions/1_1_17598185.jpg (inside)
http://cache.osta.ee/iv2/auctions/1_1_17598192.jpg (rear panel)
http://cache.osta.ee/iv2/auctions/1_1_17598189.jpg (front slots)
http://cache.osta.ee/iv2/auctions/1_1_17598186.jpg (front panel)
AFAIK, Medion is an Aldi supermarket brand. I have a Tevion DVD/HDD recorder which is also an Aldi trademark. My Tevion is just an OEM version of a Chinese brand, with a different front panel. The same device was also OEM-ed by Salora. In fact the Salora service manual is applicable to my Tevion.
Page 46 of the Medion 4400 manual refers to a firmware upgrade file named "ODC7200CPVR_V0075.pgm". This would suggest that your PVR may be an OEM version of Opentech's ODC7200CPVR. In fact their rear panels appear identical. The front panel differs cosmetically, but I suspect that it is functionally identical.
Opentel/Opentech ODC7200CPVR:
http://www.tele-satellite.com/TELE-sate ... entech.pdf (review)
http://web.archive.org/web/200606282020 ... asp?no=288 (brochure)
http://web.archive.org/web/200607191828 ... stb40.html (product specs)
June 4th, 2014, 14:16
Thanks, fzabkar, with the pictures you've posted it's obvious what this topic is about. I've never heard "set top box" term previously (that's why I skipped it in my quote above) and would expect something like "receiver" or "tuner" for the device pictured (and here we use a completely different word for them).fzabkar wrote:Vilpo wrote:set top box ...
Thanks, I believe we should be able to help with this, please check your PMs.Vilpo wrote:My first priority is to recover videos from the drive.
If possible, please make a full sector-by-sector image of the drive before doing anything with the drive.Vilpo wrote:i will post results once i get a chance to test it in the pvr.
I can't tell for sure about the PVR, but DVRs don't have any file system in the traditional meaning of this term.Vilpo wrote:Does this tell anyone anything about the file system?
June 6th, 2014, 5:22
June 6th, 2014, 5:41
Powered by phpBB © phpBB Group.