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] doc/ffmpeg: slightly rework introductory examples
@ 2023-03-27  0:22 Stefano Sabatini
  2023-03-27  5:29 ` Gyan Doshi
  0 siblings, 1 reply; 5+ messages in thread
From: Stefano Sabatini @ 2023-03-27  0:22 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini

In particular, add a sentence to introduce the example, and add a simpler starting example.

Address issue:
http://trac.ffmpeg.org/ticket/8730
---
 doc/ffmpeg.texi | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
index adfc2726ff..68a6bc6e22 100644
--- a/doc/ffmpeg.texi
+++ b/doc/ffmpeg.texi
@@ -49,22 +49,30 @@ Do not mix input and output files -- first specify all input files, then all
 output files. Also do not mix options which belong to different files. All
 options apply ONLY to the next input or output file and are reset between files.
 
+Some simple examples follow.
+
 @itemize
 @item
-To set the video bitrate of the output file to 64 kbit/s:
+Convert an input media file to a different format:
+@example
+ffmpeg -i input.avi output.avi
+@end example
+
+@item
+Set the video bitrate of the output file to 64 kbit/s:
 @example
 ffmpeg -i input.avi -b:v 64k -bufsize 64k output.avi
 @end example
 
 @item
-To force the frame rate of the output file to 24 fps:
+Force the frame rate of the output file to 24 fps:
 @example
 ffmpeg -i input.avi -r 24 output.avi
 @end example
 
 @item
-To force the frame rate of the input file (valid for raw formats only)
-to 1 fps and the frame rate of the output file to 24 fps:
+Force the frame rate of the input file (valid for raw formats only) to 1 fps and
+the frame rate of the output file to 24 fps:
 @example
 ffmpeg -r 1 -i input.m2v -r 24 output.avi
 @end example
-- 
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: slightly rework introductory examples
  2023-03-27  0:22 [FFmpeg-devel] [PATCH] doc/ffmpeg: slightly rework introductory examples Stefano Sabatini
@ 2023-03-27  5:29 ` Gyan Doshi
  2023-03-28 23:22   ` Stefano Sabatini
  0 siblings, 1 reply; 5+ messages in thread
From: Gyan Doshi @ 2023-03-27  5:29 UTC (permalink / raw)
  To: ffmpeg-devel



On 2023-03-27 05:52 am, Stefano Sabatini wrote:
> In particular, add a sentence to introduce the example, and add a simpler starting example.
>
> Address issue:
> http://trac.ffmpeg.org/ticket/8730
> ---
>   doc/ffmpeg.texi | 16 ++++++++++++----
>   1 file changed, 12 insertions(+), 4 deletions(-)
>
> diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
> index adfc2726ff..68a6bc6e22 100644
> --- a/doc/ffmpeg.texi
> +++ b/doc/ffmpeg.texi
> @@ -49,22 +49,30 @@ Do not mix input and output files -- first specify all input files, then all
>   output files. Also do not mix options which belong to different files. All
>   options apply ONLY to the next input or output file and are reset between files.
>   
> +Some simple examples follow.
> +
>   @itemize
>   @item
> -To set the video bitrate of the output file to 64 kbit/s:
> +Convert an input media file to a different format:
> +@example
> +ffmpeg -i input.avi output.avi

It's not clear that the output is a different format.
A different extension, maybe.

Regards,
Gyan


> +@end example
> +
> +@item
> +Set the video bitrate of the output file to 64 kbit/s:
>   @example
>   ffmpeg -i input.avi -b:v 64k -bufsize 64k output.avi
>   @end example
>   
>   @item
> -To force the frame rate of the output file to 24 fps:
> +Force the frame rate of the output file to 24 fps:
>   @example
>   ffmpeg -i input.avi -r 24 output.avi
>   @end example
>   
>   @item
> -To force the frame rate of the input file (valid for raw formats only)
> -to 1 fps and the frame rate of the output file to 24 fps:
> +Force the frame rate of the input file (valid for raw formats only) to 1 fps and
> +the frame rate of the output file to 24 fps:
>   @example
>   ffmpeg -r 1 -i input.m2v -r 24 output.avi
>   @end example

_______________________________________________
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: slightly rework introductory examples
  2023-03-27  5:29 ` Gyan Doshi
@ 2023-03-28 23:22   ` Stefano Sabatini
  2023-03-30  8:37     ` Anton Khirnov
  0 siblings, 1 reply; 5+ messages in thread
From: Stefano Sabatini @ 2023-03-28 23:22 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

[-- Attachment #1: Type: text/plain, Size: 1157 bytes --]

On date Monday 2023-03-27 10:59:34 +0530, Gyan Doshi wrote:
> 
> 
> On 2023-03-27 05:52 am, Stefano Sabatini wrote:
> > In particular, add a sentence to introduce the example, and add a simpler starting example.
> > 
> > Address issue:
> > http://trac.ffmpeg.org/ticket/8730
> > ---
> >   doc/ffmpeg.texi | 16 ++++++++++++----
> >   1 file changed, 12 insertions(+), 4 deletions(-)
> > 
> > diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
> > index adfc2726ff..68a6bc6e22 100644
> > --- a/doc/ffmpeg.texi
> > +++ b/doc/ffmpeg.texi
> > @@ -49,22 +49,30 @@ Do not mix input and output files -- first specify all input files, then all
> >   output files. Also do not mix options which belong to different files. All
> >   options apply ONLY to the next input or output file and are reset between files.
> > +Some simple examples follow.
> > +
> >   @itemize
> >   @item
> > -To set the video bitrate of the output file to 64 kbit/s:
> > +Convert an input media file to a different format:
> > +@example
> > +ffmpeg -i input.avi output.avi
> 
> It's not clear that the output is a different format.
> A different extension, maybe.

Done with a fer more changes.

[-- Attachment #2: 0001-doc-ffmpeg-slightly-rework-introductory-examples.patch --]
[-- Type: text/x-diff, Size: 2079 bytes --]

From a92d8f8152cce3e349d21732248c6ccdecd000df Mon Sep 17 00:00:00 2001
From: Stefano Sabatini <stefasab@gmail.com>
Date: Mon, 27 Mar 2023 02:22:28 +0200
Subject: [PATCH 1/3] doc/ffmpeg: slightly rework introductory examples

In particular, add a sentence to introduce the example, and add a
simpler starting example with no options.

Also use different format for input.avi and output.mp4, to convey
that the conversion also works on the container format.

Address issue:
http://trac.ffmpeg.org/ticket/8730
---
 doc/ffmpeg.texi | 23 ++++++++++++++++-------
 1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
index adfc2726ff..33dc271b8d 100644
--- a/doc/ffmpeg.texi
+++ b/doc/ffmpeg.texi
@@ -49,24 +49,33 @@ Do not mix input and output files -- first specify all input files, then all
 output files. Also do not mix options which belong to different files. All
 options apply ONLY to the next input or output file and are reset between files.
 
+Some simple examples follow.
+
 @itemize
 @item
-To set the video bitrate of the output file to 64 kbit/s:
+Convert an input media file to a different format, by re-encoding media streams
+to the target format:
+@example
+ffmpeg -i input.avi output.mp4
+@end example
+
+@item
+Set the video bitrate of the output file to 64 kbit/s:
 @example
-ffmpeg -i input.avi -b:v 64k -bufsize 64k output.avi
+ffmpeg -i input.avi -b:v 64k -bufsize 64k output.mp4
 @end example
 
 @item
-To force the frame rate of the output file to 24 fps:
+Force the frame rate of the output file to 24 fps:
 @example
-ffmpeg -i input.avi -r 24 output.avi
+ffmpeg -i input.avi -r 24 output.mp4
 @end example
 
 @item
-To force the frame rate of the input file (valid for raw formats only)
-to 1 fps and the frame rate of the output file to 24 fps:
+Force the frame rate of the input file (valid for raw formats only) to 1 fps and
+the frame rate of the output file to 24 fps:
 @example
-ffmpeg -r 1 -i input.m2v -r 24 output.avi
+ffmpeg -r 1 -i input.m2v -r 24 output.mp4
 @end example
 @end itemize
 
-- 
2.25.1


[-- Attachment #3: Type: text/plain, Size: 251 bytes --]

_______________________________________________
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: slightly rework introductory examples
  2023-03-28 23:22   ` Stefano Sabatini
@ 2023-03-30  8:37     ` Anton Khirnov
  2023-04-02 15:15       ` Stefano Sabatini
  0 siblings, 1 reply; 5+ messages in thread
From: Anton Khirnov @ 2023-03-30  8:37 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

Quoting Stefano Sabatini (2023-03-29 01:22:23)
> On date Monday 2023-03-27 10:59:34 +0530, Gyan Doshi wrote:
> > 
> > 
> > On 2023-03-27 05:52 am, Stefano Sabatini wrote:
> > > In particular, add a sentence to introduce the example, and add a simpler starting example.
> > > 
> > > Address issue:
> > > http://trac.ffmpeg.org/ticket/8730
> > > ---
> > >   doc/ffmpeg.texi | 16 ++++++++++++----
> > >   1 file changed, 12 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
> > > index adfc2726ff..68a6bc6e22 100644
> > > --- a/doc/ffmpeg.texi
> > > +++ b/doc/ffmpeg.texi
> > > @@ -49,22 +49,30 @@ Do not mix input and output files -- first specify all input files, then all
> > >   output files. Also do not mix options which belong to different files. All
> > >   options apply ONLY to the next input or output file and are reset between files.
> > > +Some simple examples follow.
> > > +
> > >   @itemize
> > >   @item
> > > -To set the video bitrate of the output file to 64 kbit/s:
> > > +Convert an input media file to a different format:
> > > +@example
> > > +ffmpeg -i input.avi output.avi
> > 
> > It's not clear that the output is a different format.
> > A different extension, maybe.
> 
> Done with a fer more changes.
> 
> From a92d8f8152cce3e349d21732248c6ccdecd000df Mon Sep 17 00:00:00 2001
> From: Stefano Sabatini <stefasab@gmail.com>
> Date: Mon, 27 Mar 2023 02:22:28 +0200
> Subject: [PATCH 1/3] doc/ffmpeg: slightly rework introductory examples
> 
> In particular, add a sentence to introduce the example, and add a
> simpler starting example with no options.
> 
> Also use different format for input.avi and output.mp4, to convey
> that the conversion also works on the container format.
> 
> Address issue:
> http://trac.ffmpeg.org/ticket/8730
> ---
>  doc/ffmpeg.texi | 23 ++++++++++++++++-------
>  1 file changed, 16 insertions(+), 7 deletions(-)
> 
> diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
> index adfc2726ff..33dc271b8d 100644
> --- a/doc/ffmpeg.texi
> +++ b/doc/ffmpeg.texi
> @@ -49,24 +49,33 @@ Do not mix input and output files -- first specify all input files, then all
>  output files. Also do not mix options which belong to different files. All
>  options apply ONLY to the next input or output file and are reset between files.
>  
> +Some simple examples follow.
> +
>  @itemize
>  @item
> -To set the video bitrate of the output file to 64 kbit/s:
> +Convert an input media file to a different format, by re-encoding media streams
> +to the target format:

IMO 'to the target format' confuses people about what exactly 'format'
means and how does it relate to 'container' and 'codec' used elsewhere
in the manual. I'd just drop that part.

-- 
Anton Khirnov
_______________________________________________
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH] doc/ffmpeg: slightly rework introductory examples
  2023-03-30  8:37     ` Anton Khirnov
@ 2023-04-02 15:15       ` Stefano Sabatini
  0 siblings, 0 replies; 5+ messages in thread
From: Stefano Sabatini @ 2023-04-02 15:15 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On date Thursday 2023-03-30 10:37:34 +0200, Anton Khirnov wrote:
> Quoting Stefano Sabatini (2023-03-29 01:22:23)
[...]
> > +Some simple examples follow.
> > +
> >  @itemize
> >  @item
> > -To set the video bitrate of the output file to 64 kbit/s:
> > +Convert an input media file to a different format, by re-encoding media streams
> > +to the target format:
> 
> IMO 'to the target format' confuses people about what exactly 'format'
> means and how does it relate to 'container' and 'codec' used elsewhere
> in the manual. I'd just drop that part.

Applied with that change.
_______________________________________________
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] 5+ messages in thread

end of thread, other threads:[~2023-04-02 15:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-27  0:22 [FFmpeg-devel] [PATCH] doc/ffmpeg: slightly rework introductory examples Stefano Sabatini
2023-03-27  5:29 ` Gyan Doshi
2023-03-28 23:22   ` Stefano Sabatini
2023-03-30  8:37     ` Anton Khirnov
2023-04-02 15:15       ` 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