BB FlashBack SDK: FBEditor

IsMovieInOldFormat

Description

Determines whether the specified FlashBack movie file (.FBR file) uses an older format than the latest used by version 2.5 of the SDK

See FlashBack Movie File Format Versions to learn more about FBR file formats versions and how they relate to SDK versions.

Syntax

[C#/C++]
public Bool IsMovieInOldFormat (String sFileName)

[VB.NET]
Public Function IsMovieInOldFormat (ByVal sFileName As String) As Boolean

Parameters

sFileName : [In] string containing the file path.
 

Return Values

Returns True if the file is in an older FBR format than v2.0.

Returns False if the file is FBR v2.0.

Remarks

Older format FBR movies are converted to the new format on loading. FBMovie::SaveAs can be used to save the movie in the new format while retaining the original. You may want to retain the original, because the application that produced it will be unable to work with newer format movies.

FBMovie::SaveAsUsingFormat can be used to save the movie in an older FBR format once loaded into FBEditor.

See Also

FBMovie::SaveAs  FBMovie::IsOldFormat  FBMovie::SaveAsUsingFormat