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

record: fix sout-access-file syntax (fixes #10473)

parent 379eb766
......@@ -330,8 +330,8 @@ static int OutputNew( sout_stream_t *p_stream,
}
free( psz_tmp );
if( asprintf( &psz_output, "std{access=file,mux='%s',dst='%s',no-append,"
"no-format}", psz_muxer, psz_file ) < 0 )
if( asprintf( &psz_output, "std{access=file{no-append,no-format},"
"mux='%s',dst='%s'}", psz_muxer, psz_file ) < 0 )
{
psz_output = NULL;
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