media_start(var handle)

Starts the paused multimedia stream.

Parameters:

handle - The handle of the multimedia stream that returns from Media_play or Media_loop.

Example:

var x;
...
// Play film"news.avi" on the entities' texture tv_model with the maximum loudness
media_play("news.avi",bmap_for_entity(tv_model,0),100);
x = media_handle; // save the handle at X
...
media_pause(x); // pause the stream with x
while(any_key == 0){wait(1);} // wait for pressing any key
media_start(x); // play the stream from paused place

See also:

media_play, media_pause, media_playing, media_stop, media_tune, media_layer, media_handle