R/video_dataset.R

Defines functions video_dataset

Documented in video_dataset

#' Create a `VideoDataset` that reads the video file.
#'
#' This allows a user to read data from a video file with ffmpeg. The output of
#' VideoDataset is a sequence of (height, weight, 3) tensor in rgb24 format.
#'
#' @param filenames A `tf.string` tensor containing one or more filenames.
#'
#' @examples \dontrun{
#' dataset <- video_dataset(
#'     filenames = list("testdata/small.mp4")) %>%
#'   dataset_repeat(2)
#'
#' sess <- tf$Session()
#' iterator <- make_iterator_one_shot(dataset)
#' next_batch <- iterator_get_next(iterator)
#'
#' until_out_of_range({
#'   batch <- sess$run(next_batch)
#'   print(batch)
#' })
#' }
#'
#' @export
video_dataset <- function(filenames) {
  dataset <- tfio_lib$video$VideoDataset(filenames = filenames)
  as_tf_dataset(dataset)
}

Try the tfio package in your browser

Any scripts or data that you put into this service are public.

tfio documentation built on Dec. 25, 2019, 5:06 p.m.