Class: Poppler::Media
- Inherits:
-
Object
- Object
- Poppler::Media
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#auto_play ⇒ Boolean
Returns the auto-play parameter.
-
#filename ⇒ String
Returns the media clip filename, in case of non-embedded media.
-
#is_embedded ⇒ Boolean
Whether the media clip is embedded in the PDF.
-
#mime_type ⇒ String
Returns the media clip mime-type.
-
#repeat_count ⇒ Poppler::gfloat
Returns the repeat count parameter.
-
#save(filename) ⇒ Boolean
Saves embedded stream of poppler_media to a file indicated by filename.
-
#save_to_callback(save_func, user_data) ⇒ Boolean
Saves embedded stream of poppler_media by feeding the produced data to save_func.
-
#save_to_fd(fd) ⇒ Boolean
Saves embedded stream of poppler_media to a file referred to by fd.
-
#show_controls ⇒ Boolean
Returns the show controls parameter.
Instance Method Details
#auto_play ⇒ Boolean
Returns the auto-play parameter.
#filename ⇒ String
Returns the media clip filename, in case of non-embedded media. filename might be a local relative or absolute path or a URI
#is_embedded ⇒ Boolean
Whether the media clip is embedded in the PDF. If the result is true, the embedded stream can be saved with poppler_media_save() or poppler_media_save_to_callback() function. If the result is false, the media clip filename can be retrieved with poppler_media_get_filename() function.
#mime_type ⇒ String
Returns the media clip mime-type
#repeat_count ⇒ Poppler::gfloat
Returns the repeat count parameter.
#save(filename) ⇒ Boolean
Saves embedded stream of poppler_media to a file indicated by filename. If error is set, false will be returned. Possible errors include those in the #G_FILE_ERROR domain and whatever the save function generates.
#save_to_callback(save_func, user_data) ⇒ Boolean
Saves embedded stream of poppler_media by feeding the produced data to save_func. Can be used when you want to store the media clip stream to something other than a file, such as an in-memory buffer or a socket. If error is set, false will be returned. Possible errors include those in the #G_FILE_ERROR domain and whatever the save function generates.
#save_to_fd(fd) ⇒ Boolean
Saves embedded stream of poppler_media to a file referred to by fd. If error is set, false will be returned. Possible errors include those in the #G_FILE_ERROR domain and whatever the save function generates. Note that this function takes ownership of fd; you must not operate on it again, nor close it.
#show_controls ⇒ Boolean
Returns the show controls parameter.