Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH 2/2] doc/ffprobe: clarify that the input file is not optional
@ 2022-04-20 21:43 Stefano Sabatini
  2022-04-21  4:47 ` Gyan Doshi
  0 siblings, 1 reply; 4+ messages in thread
From: Stefano Sabatini @ 2022-04-20 21:43 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini

Fix trac issue http://trac.ffmpeg.org/ticket/9562
---
 doc/ffprobe.texi  | 2 +-
 fftools/ffprobe.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi
index 59a397a225..c61b8979b1 100644
--- a/doc/ffprobe.texi
+++ b/doc/ffprobe.texi
@@ -12,7 +12,7 @@
 
 @chapter Synopsis
 
-ffprobe [@var{options}] [@file{input_url}]
+ffprobe [@var{options}] @file{input_url}
 
 @chapter Description
 @c man begin DESCRIPTION
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index 05c167eeb5..c51c82ff65 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -3417,7 +3417,7 @@ end:
 static void show_usage(void)
 {
     av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
-    av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
+    av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] INPUT_FILE\n", program_name);
     av_log(NULL, AV_LOG_INFO, "\n");
 }
 
-- 
2.25.1

_______________________________________________
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".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [FFmpeg-devel] [PATCH 2/2] doc/ffprobe: clarify that the input file is not optional
  2022-04-20 21:43 [FFmpeg-devel] [PATCH 2/2] doc/ffprobe: clarify that the input file is not optional Stefano Sabatini
@ 2022-04-21  4:47 ` Gyan Doshi
  2022-04-21  7:06   ` Gyan Doshi
  0 siblings, 1 reply; 4+ messages in thread
From: Gyan Doshi @ 2022-04-21  4:47 UTC (permalink / raw)
  To: ffmpeg-devel

Will apply.

On 2022-04-21 03:13 am, Stefano Sabatini wrote:
> Fix trac issue http://trac.ffmpeg.org/ticket/9562
> ---
>   doc/ffprobe.texi  | 2 +-
>   fftools/ffprobe.c | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi
> index 59a397a225..c61b8979b1 100644
> --- a/doc/ffprobe.texi
> +++ b/doc/ffprobe.texi
> @@ -12,7 +12,7 @@
>   
>   @chapter Synopsis
>   
> -ffprobe [@var{options}] [@file{input_url}]
> +ffprobe [@var{options}] @file{input_url}
>   
>   @chapter Description
>   @c man begin DESCRIPTION
> diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
> index 05c167eeb5..c51c82ff65 100644
> --- a/fftools/ffprobe.c
> +++ b/fftools/ffprobe.c
> @@ -3417,7 +3417,7 @@ end:
>   static void show_usage(void)
>   {
>       av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
> -    av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
> +    av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] INPUT_FILE\n", program_name);
>       av_log(NULL, AV_LOG_INFO, "\n");
>   }
>   

_______________________________________________
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".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [FFmpeg-devel] [PATCH 2/2] doc/ffprobe: clarify that the input file is not optional
  2022-04-21  4:47 ` Gyan Doshi
@ 2022-04-21  7:06   ` Gyan Doshi
  2022-06-12 10:42     ` Stefano Sabatini
  0 siblings, 1 reply; 4+ messages in thread
From: Gyan Doshi @ 2022-04-21  7:06 UTC (permalink / raw)
  To: ffmpeg-devel

Pushed as 83e1a1de8833845224948e5d002355c03dd117d5

On 2022-04-21 10:17 am, Gyan Doshi wrote:
> Will apply.
>
> On 2022-04-21 03:13 am, Stefano Sabatini wrote:
>> Fix trac issue http://trac.ffmpeg.org/ticket/9562
>> ---
>>   doc/ffprobe.texi  | 2 +-
>>   fftools/ffprobe.c | 2 +-
>>   2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi
>> index 59a397a225..c61b8979b1 100644
>> --- a/doc/ffprobe.texi
>> +++ b/doc/ffprobe.texi
>> @@ -12,7 +12,7 @@
>>     @chapter Synopsis
>>   -ffprobe [@var{options}] [@file{input_url}]
>> +ffprobe [@var{options}] @file{input_url}
>>     @chapter Description
>>   @c man begin DESCRIPTION
>> diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
>> index 05c167eeb5..c51c82ff65 100644
>> --- a/fftools/ffprobe.c
>> +++ b/fftools/ffprobe.c
>> @@ -3417,7 +3417,7 @@ end:
>>   static void show_usage(void)
>>   {
>>       av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
>> -    av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] [INPUT_FILE]\n", 
>> program_name);
>> +    av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] INPUT_FILE\n", 
>> program_name);
>>       av_log(NULL, AV_LOG_INFO, "\n");
>>   }
>
> _______________________________________________
> 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".

_______________________________________________
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".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [FFmpeg-devel] [PATCH 2/2] doc/ffprobe: clarify that the input file is not optional
  2022-04-21  7:06   ` Gyan Doshi
@ 2022-06-12 10:42     ` Stefano Sabatini
  0 siblings, 0 replies; 4+ messages in thread
From: Stefano Sabatini @ 2022-06-12 10:42 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On date Thursday 2022-04-21 12:36:15 +0530, Gyan Doshi wrote:
> Pushed as 83e1a1de8833845224948e5d002355c03dd117d5

Thanks.
_______________________________________________
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".

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-06-12 10:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-20 21:43 [FFmpeg-devel] [PATCH 2/2] doc/ffprobe: clarify that the input file is not optional Stefano Sabatini
2022-04-21  4:47 ` Gyan Doshi
2022-04-21  7:06   ` Gyan Doshi
2022-06-12 10:42     ` Stefano Sabatini

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git