Commit b2128822 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

record: explicitly disable append and format

Just in case they have been manually enabled in the configuration.
parent 400b9b64
...@@ -330,8 +330,8 @@ static int OutputNew( sout_stream_t *p_stream, ...@@ -330,8 +330,8 @@ static int OutputNew( sout_stream_t *p_stream,
} }
free( psz_tmp ); free( psz_tmp );
if( asprintf( &psz_output, "std{access=file,mux='%s',dst='%s'}", if( asprintf( &psz_output, "std{access=file,mux='%s',dst='%s',no-append,"
psz_muxer, psz_file ) < 0 ) "no-format}", psz_muxer, psz_file ) < 0 )
{ {
psz_output = NULL; psz_output = NULL;
goto error; goto error;
......
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