#[cfg(feature = "audio")]
#[cfg_attr(docsrs, doc(cfg(feature = "audio")))]
pub mod audio;
pub mod leaves;
pub mod media;
pub mod media_file;
pub mod person;
#[cfg(feature = "subtitle")]
#[cfg_attr(docsrs, doc(cfg(feature = "subtitle")))]
pub mod subtitle;
#[cfg(feature = "video")]
#[cfg_attr(docsrs, doc(cfg(feature = "video")))]
pub mod video;
#[cfg(feature = "audio")]
pub use audio::{
SqliteAudioRow, SqliteAudioSegmentRow, SqliteAudioSegmentWordRow, SqliteAudioTrackIndexErrorRow,
SqliteAudioTrackRow,
};
pub use leaves::{
SqliteSceneAnnotationRow, SqliteSpeakerRow, SqliteUserTagRow, SqliteWatchedLocationRow,
};
pub use media::SqliteMediaRow;
pub use media_file::SqliteMediaFileRow;
pub use person::SqlitePersonRow;
#[cfg(feature = "subtitle")]
pub use subtitle::{
SqliteSubtitleCueAssRow, SqliteSubtitleCueBaseRow, SqliteSubtitleCueLrcRow,
SqliteSubtitleCueLrcWordRow, SqliteSubtitleCueVttRow, SqliteSubtitleRow,
SqliteSubtitleTrackAssStyleRow, SqliteSubtitleTrackIndexErrorRow,
SqliteSubtitleTrackLrcMetadataRow, SqliteSubtitleTrackRow, SqliteSubtitleTrackVttRegionRow,
SqliteSubtitleTrackVttStyleRow,
};
#[cfg(feature = "video")]
pub use video::{
SqliteKeyframeActionRow, SqliteKeyframeBarcodeRow, SqliteKeyframeBodyPose3DJointRow,
SqliteKeyframeBodyPose3DRow, SqliteKeyframeBodyPoseJointRow, SqliteKeyframeBodyPoseRow,
SqliteKeyframeClassificationRow, SqliteKeyframeColorRow, SqliteKeyframeDocumentSegmentRow,
SqliteKeyframeFaceLandmarkPointRow, SqliteKeyframeFaceLandmarkRegionRow,
SqliteKeyframeFaceLandmarksRow, SqliteKeyframeFaceRow, SqliteKeyframeHandPoseRow,
SqliteKeyframeMaskRow, SqliteKeyframeObjectRow, SqliteKeyframeRow, SqliteKeyframeRows,
SqliteKeyframeSaliencyRow, SqliteKeyframeSubjectRow, SqliteKeyframeTextDetectionRow,
SqliteKeyframeVlmLabelRow, SqliteSceneRow, SqliteVideoRow, SqliteVideoTrackIndexErrorRow,
SqliteVideoTrackRow,
};
pub const SCHEMA_SQL: &str = include_str!("schema.sql");
pub const MIGRATION_0001_INIT: &str = include_str!("migrations/0001_init.sql");