Skip to content

Commit

Permalink
created skeleton of FLV class
Browse files Browse the repository at this point in the history
  • Loading branch information
showstopper committed Nov 26, 2011
1 parent 79f0ea9 commit dc6db0b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions source/fluke.ooc
Expand Up @@ -113,3 +113,21 @@ FLV: class {
FRAME_DISP_INTER := static 3 << VIDEO_FRAMETYPE_OFFSET

}

FLV: class {

audioFile: File
fileName: String
binWriter: BinaryWriter
fWriter: FileWriter
output := "test.flv"

init: func(=fileName) {
//read that audio file
f := File new(output)
fWriter = FileWriter new(f)
binWriter = BinaryWriter new(fWriter)
}

writeHeader: func { }
}

0 comments on commit dc6db0b

Please sign in to comment.