Reputation: 15
I basically need to do 4 steps:
But the hardest thing I face is step 4.
What is the simplest method I can use to convert a binary file to video file?
Upvotes: 0
Views: 5839
Reputation: 3923
IF you are trying to convert a file to byte array then this it's very easy
var bytes = File.ReadAllBytes(pathToFile)
Upvotes: 1