Example #1
0
// Parse the current media source.
//
// This fetches (local) meta data and track information.
// The method is synchronous version of Media.ParseAsync().
func (this *Media) Parse() {
	if this.ptr != nil {
		C.libvlc_media_parse(this.ptr)
	}
}
Example #2
0
// Parse parses a media.
// This fetches (local) art, meta data and tracks information.
// The method is synchronous.
func (m *Media) Parse() {
	C.libvlc_media_parse((*C.struct_libvlc_media_t)(m))
}