From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 43D7648756 for ; Wed, 17 Jan 2024 12:42:24 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 351F868D04A; Wed, 17 Jan 2024 14:41:43 +0200 (EET) Received: from mail1.khirnov.net (quelana.khirnov.net [94.230.150.81]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 78AA468D01C for ; Wed, 17 Jan 2024 14:41:36 +0200 (EET) Authentication-Results: mail1.khirnov.net; dkim=pass (2048-bit key; unprotected) header.d=khirnov.net header.i=@khirnov.net header.a=rsa-sha256 header.s=mail header.b=HgfyDv36; dkim-atps=neutral Received: from localhost (mail1.khirnov.net [IPv6:::1]) by mail1.khirnov.net (Postfix) with ESMTP id 6712F19C0 for ; Wed, 17 Jan 2024 13:41:31 +0100 (CET) Received: from mail1.khirnov.net ([IPv6:::1]) by localhost (mail1.khirnov.net [IPv6:::1]) (amavis, port 10024) with ESMTP id JUKHLk2qrPMg for ; Wed, 17 Jan 2024 13:41:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=khirnov.net; s=mail; t=1705495289; bh=5oKOgj9w14MbSdfcx52XUq/wbqmMu68netzlTXixCJ8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=HgfyDv36R+T00jzOY+QRuUpZa69vo7JqmFKhz0yqptr6y7ImaKu04PCEGvOhS9gge JhopYZj+TeycCH3i1O44zbEYFngJ0XFuibmJSPASsJW1z7h9L6AZtRhk+yENWBMBhg B9b4TGEsCsH8Ta5iNqklhlkbT8K0u+TUHlFncIf2Zf7hw5Jc0Kc9rIX1HtYVG67L/t ozTsEa8XD5vU+2Q+KwHwj7EmrtmsLhCz75oM3ByeV9F1553ekrV8JLdBnGtIcTHQhO 7BkSKc6a3PuK3KKiZeXUUvbJeMlQBRQSafn1CGAx6A4ybMGAHkAZ1QaXWMJYm/9Awk 6nhJ9Jk0pRtvQ== Received: from libav.khirnov.net (libav.khirnov.net [IPv6:2a00:c500:561:201::7]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "libav.khirnov.net", Issuer "smtp.khirnov.net SMTP CA" (verified OK)) by mail1.khirnov.net (Postfix) with ESMTPS id 8CAE519BE for ; Wed, 17 Jan 2024 13:41:29 +0100 (CET) Received: from libav.khirnov.net (libav.khirnov.net [IPv6:::1]) by libav.khirnov.net (Postfix) with ESMTP id 7D6B73A07AE for ; Wed, 17 Jan 2024 13:41:29 +0100 (CET) From: Anton Khirnov To: ffmpeg-devel@ffmpeg.org Date: Wed, 17 Jan 2024 13:40:33 +0100 Message-ID: <20240117124036.7877-6-anton@khirnov.net> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20240117124036.7877-1-anton@khirnov.net> References: <20240117124036.7877-1-anton@khirnov.net> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 6/8] fftools/ffmpeg_opt: briefly mention stream specifier syntax in help output X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- fftools/ffmpeg_opt.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index 4abdd457d3..bdb71d4283 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -1194,6 +1194,9 @@ void show_help_default(const char *opt, const char *arg) " -h full -- print all options (including all format and codec specific options, very long)\n" " -h type=name -- print all options for the named decoder/encoder/demuxer/muxer/filter/bsf/protocol\n" " See man %s for detailed description of the options.\n" + "\n" + "Per-stream options can be followed by : to apply that option to specific streams only. " + " can be a stream index, or v/a/s for video/audio/subtitle (see manual for full syntax).\n" "\n", program_name); show_help_options(options, "Print help / information / capabilities:", -- 2.42.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".