Commit 4a5f7d96 authored by Yoann Peronneau's avatar Yoann Peronneau

* update VLM help about inputdel

parent 0fee5c0f
...@@ -83,6 +83,10 @@ Note: an element is a media or a schedule. ...@@ -83,6 +83,10 @@ Note: an element is a media or a schedule.
Media Properties Syntax: Media Properties Syntax:
input (input_name) input (input_name)
Adds (input_name) at the end of the media input list. Adds (input_name) at the end of the media input list.
inputdel (input_name)|all
Deletes (input_name) or all items from the media input list.
inputdeln (input_number)
Deletes the item #(input_number) from the media input list.
output (output_name) output (output_name)
Defines the output of the media. Defines the output of the media.
The syntax is equivalent to the ":sout=..." option , but you The syntax is equivalent to the ":sout=..." option , but you
......
...@@ -1883,6 +1883,7 @@ static vlm_message_t *vlm_Help( vlm_t *vlm, char *psz_filter ) ...@@ -1883,6 +1883,7 @@ static vlm_message_t *vlm_Help( vlm_t *vlm, char *psz_filter )
message_child = MessageAdd( "Media Proprieties Syntax:" ); message_child = MessageAdd( "Media Proprieties Syntax:" );
MessageAddChild( "input (input_name)" ); MessageAddChild( "input (input_name)" );
MessageAddChild( "inputdel (input_name)|all" ); MessageAddChild( "inputdel (input_name)|all" );
MessageAddChild( "inputdeln input_number" );
MessageAddChild( "output (output_name)" ); MessageAddChild( "output (output_name)" );
MessageAddChild( "enabled|disabled" ); MessageAddChild( "enabled|disabled" );
MessageAddChild( "loop|unloop (broadcast only)" ); MessageAddChild( "loop|unloop (broadcast only)" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment