<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									ffProbe - How to generate a list of subtitles in a video file - Video				            </title>
            <link>https://www.tweaking4all.com/forum/video/ffprobe-how-to-generate-a-list-of-subtitles-in-a-video-file/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 22 Jul 2026 10:29:28 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>ffProbe - How to generate a list of subtitles in a video file</title>
                        <link>https://www.tweaking4all.com/forum/video/ffprobe-how-to-generate-a-list-of-subtitles-in-a-video-file/#post-5804</link>
                        <pubDate>Tue, 01 Apr 2025 11:03:46 +0000</pubDate>
                        <description><![CDATA[I was looking for a quick way to generate a list of subtitles found in a given video file using ffmpeg.
This does the trick:
ffprobe YourVideoFile.mkv  2&gt;&amp;1 | grep &quot;Subtitle&quot;
 
wh...]]></description>
                        <content:encoded><![CDATA[<p>I was looking for a quick way to generate a list of subtitles found in a given video file using ffmpeg.</p>
<p>This does the trick:</p>
<pre contenteditable="false">ffprobe YourVideoFile.mkv  2&gt;&amp;1 | grep "Subtitle"</pre>
<p> </p>
<p>which generates a list like so:</p>
<pre contenteditable="false">  Stream #0:2(eng): Subtitle: subrip (srt)
  Stream #0:3(eng): Subtitle: subrip (srt) (original) (hearing impaired)</pre>
<p>Or more advanced:</p>
<pre contenteditable="false">ffprobe -loglevel error -select_streams s -show_entries stream=index:stream_tags=language -of csv=p=0 YourVideoFile.mkv</pre>
<p>Which generates a more concise list:</p>
<pre contenteditable="false">2,eng
3,eng</pre>
<p>Or if you only want to see the English (<strong>eng</strong>) subtitles:</p>
<pre contenteditable="false">ffprobe -loglevel error -select_streams s -show_entries stream=index:stream_tags=eng -of csv=p=0 YourVideoFile.mkv</pre>
<p>Which generates:</p>
<pre contenteditable="false">2
3</pre>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/ffprobe-how-to-generate-a-list-of-subtitles-in-a-video-file/#post-5804</guid>
                    </item>
							        </channel>
        </rss>
		