Most visited

Recently visited

Added in API level 1

MediaStore.Video.VideoColumns

public static interface MediaStore.Video.VideoColumns
implements MediaStore.MediaColumns

android.provider.MediaStore.Video.VideoColumns
Known Indirect Subclasses


Summary

Constants

String ALBUM

The album the video file is from, if any

Type: TEXT

String ARTIST

The artist who created the video file, if any

Type: TEXT

String BOOKMARK

The bookmark for the video.

String BUCKET_DISPLAY_NAME

The bucket display name of the video.

String BUCKET_ID

The bucket id of the video.

String CATEGORY

The YouTube category of the video

Type: TEXT

String DATE_TAKEN

The date & time that the video was taken in units of milliseconds since jan 1, 1970.

String DESCRIPTION

The description of the video recording

Type: TEXT

String DURATION

The duration of the video file, in ms

Type: INTEGER (long)

String IS_PRIVATE

Whether the video should be published as public or private

Type: INTEGER

String LANGUAGE

The language of the video

Type: TEXT

String LATITUDE

The latitude where the video was captured.

String LONGITUDE

The longitude where the video was captured.

String MINI_THUMB_MAGIC

The mini thumb id.

String RESOLUTION

The resolution of the video file, formatted as "XxY"

Type: TEXT

String TAGS

The user-added tags associated with a video

Type: TEXT

Inherited constants

From interface android.provider.MediaStore.MediaColumns
From interface android.provider.BaseColumns

Constants

ALBUM

Added in API level 1
String ALBUM

The album the video file is from, if any

Type: TEXT

Constant Value: "album"

ARTIST

Added in API level 1
String ARTIST

The artist who created the video file, if any

Type: TEXT

Constant Value: "artist"

BOOKMARK

Added in API level 3
String BOOKMARK

The bookmark for the video. Time in ms. Represents the location in the video that the video should start playing at the next time it is opened. If the value is null or out of the range 0..DURATION-1 then the video should start playing from the beginning.

Type: INTEGER

Constant Value: "bookmark"

BUCKET_DISPLAY_NAME

Added in API level 3
String BUCKET_DISPLAY_NAME

The bucket display name of the video. This is a read-only property that is automatically computed from the DATA column.

Type: TEXT

Constant Value: "bucket_display_name"

BUCKET_ID

Added in API level 3
String BUCKET_ID

The bucket id of the video. This is a read-only property that is automatically computed from the DATA column.

Type: TEXT

Constant Value: "bucket_id"

CATEGORY

Added in API level 1
String CATEGORY

The YouTube category of the video

Type: TEXT

Constant Value: "category"

DATE_TAKEN

Added in API level 1
String DATE_TAKEN

The date & time that the video was taken in units of milliseconds since jan 1, 1970.

Type: INTEGER

Constant Value: "datetaken"

DESCRIPTION

Added in API level 1
String DESCRIPTION

The description of the video recording

Type: TEXT

Constant Value: "description"

DURATION

Added in API level 1
String DURATION

The duration of the video file, in ms

Type: INTEGER (long)

Constant Value: "duration"

IS_PRIVATE

Added in API level 1
String IS_PRIVATE

Whether the video should be published as public or private

Type: INTEGER

Constant Value: "isprivate"

LANGUAGE

Added in API level 1
String LANGUAGE

The language of the video

Type: TEXT

Constant Value: "language"

LATITUDE

Added in API level 1
String LATITUDE

The latitude where the video was captured.

Type: DOUBLE

Constant Value: "latitude"

LONGITUDE

Added in API level 1
String LONGITUDE

The longitude where the video was captured.

Type: DOUBLE

Constant Value: "longitude"

MINI_THUMB_MAGIC

Added in API level 1
String MINI_THUMB_MAGIC

The mini thumb id.

Type: INTEGER

Constant Value: "mini_thumb_magic"

RESOLUTION

Added in API level 1
String RESOLUTION

The resolution of the video file, formatted as "XxY"

Type: TEXT

Constant Value: "resolution"

TAGS

Added in API level 1
String TAGS

The user-added tags associated with a video

Type: TEXT

Constant Value: "tags"

Hooray!