<multimedia:av>.pause

This action will pause the playing of the multimedia object

 

<multimedia:av>.pause()

 

Remarks

This will pause the audio or video file. It will resume from its current position once it is played

Return Value

None

Example

song = viz.addAudio('music.mp3')
song.play()
.
.
.
song.pause()