From 3a3e0b7d9c68da218f08b4e0a946f447361e2f59 Mon Sep 17 00:00:00 2001 From: AndreStork Date: Tue, 6 Jan 2026 20:07:58 +0100 Subject: [PATCH] Renamed File Structure to File System and defined Directory Layout Prototype --- docs/fs.md | 16 ++++++++++++++++ docs/structure.md | 2 -- mkdocs.yml | 4 ++-- 3 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 docs/fs.md delete mode 100644 docs/structure.md diff --git a/docs/fs.md b/docs/fs.md new file mode 100644 index 0000000..bc47aa6 --- /dev/null +++ b/docs/fs.md @@ -0,0 +1,16 @@ +# File System +## Directory Layout +```text +/META + fopen.json +/MENU + 1.fim +/VIDEO + 1.av1.mkv + 2.vp9.mkv +``` + +- **META** + - **fopen.json:** contains all of the informations about the FOD disc (title, starting point etc.) +- **MENU:** contains menu files in FOpen Interactive Markup format, more informations on the documentation page +- **VIDEO:** contains video titles in MKV format, these must follow the standard specs diff --git a/docs/structure.md b/docs/structure.md deleted file mode 100644 index 9ff8ae7..0000000 --- a/docs/structure.md +++ /dev/null @@ -1,2 +0,0 @@ -# Format Structure -## Directory Layout \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index f31bb63..01b5502 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,5 @@ -site_name: My Docs +site_name: FOpen Drive Documentation theme: readthedocs nav: - - Structure: structure.md \ No newline at end of file + - File System: fs.md \ No newline at end of file