Commit 8b626b7a authored by Antoine Cellerier's avatar Antoine Cellerier

Automatically choose ffmpeg{mux=flv} if dst ends in ".flv"

parent 6b04a018
/***************************************************************************** /*****************************************************************************
* standard.c: standard stream output module * standard.c: standard stream output module
***************************************************************************** *****************************************************************************
* Copyright (C) 2003-2004 the VideoLAN team * Copyright (C) 2003-2007 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
...@@ -203,6 +203,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -203,6 +203,7 @@ static int Open( vlc_object_t *p_this )
{ "ps", "ps" }, { "ps", "ps" },
{ "mpeg1","mpeg1" }, { "mpeg1","mpeg1" },
{ "wav","wav" }, { "wav","wav" },
{ "flv", "ffmpeg{mux=flv}" },
{ NULL, NULL } { NULL, NULL }
}; };
const char *psz_ext = strrchr( psz_url, '.' ) + 1; const char *psz_ext = strrchr( psz_url, '.' ) + 1;
......
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