<?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>
									Video - Forum				            </title>
            <link>https://www.tweaking4all.com/forum/video/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 13 Jun 2026 22:18:11 +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/</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/</guid>
                    </item>
				                    <item>
                        <title>Subtitles: How to extract EIA-608 / EIA-708 subtitles from an MP4 or MKV?</title>
                        <link>https://www.tweaking4all.com/forum/video/subtitles-how-to-extract-eia-608-eia-708-subtitles-from-an-mp4/</link>
                        <pubDate>Fri, 28 Mar 2025 11:37:27 +0000</pubDate>
                        <description><![CDATA[Sometimes one runs into that weird (HDTV) video file with an obscure subtitle format which ffmpeg and ffprobe do not even see but your media player (I use IINA on my Mac) and Media Info do s...]]></description>
                        <content:encoded><![CDATA[<p>Sometimes one runs into that weird (HDTV) video file with an obscure subtitle format which <a href="https://ffmpeg.org/" target="_blank" rel="noopener">ffmpeg and ffprobe</a> do not even see but your media player (I use <a href="https://iina.io/" target="_blank" rel="noopener">IINA</a> on my Mac) and <a href="https://mediaarea.net/en/MediaInfo" target="_blank" rel="noopener">Media Info</a> do show these subtitle tracks marked as EIA-608 and/or EIA-708.</p>
<p>An example screenshot of Media Info:</p>
673
<p><strong>So how do we extract this subtitle to an SRT file?</strong></p>
<p>Seem ffmpeg can actually do something with this file. Extract the subtitle like so:</p>
<pre contenteditable="false">ffmpeg -f lavfi  -i "movie='YourVideoFilename.mp4' " -map 0:s:0 eia608_subs.srt
</pre>
<p>** Mind the double and single quotes ...</p>
<p>This will result in a proper SRT file (with a potentially formatting tags).</p>
<p>Note: <strong>-map 0:s:0</strong> will select the <em>first</em> EIA-608 subtitle. <br />If there are multiple you can select the next one with <strong>-map 0:s:1</strong>, and the next one with <strong>-map 0:s:2</strong>, etc.</p>]]></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/subtitles-how-to-extract-eia-608-eia-708-subtitles-from-an-mp4/</guid>
                    </item>
				                    <item>
                        <title>Transmission gopro to videoprojector</title>
                        <link>https://www.tweaking4all.com/forum/video/transmission-gopro-to-videoprojector/</link>
                        <pubDate>Tue, 04 Apr 2023 17:51:10 +0000</pubDate>
                        <description><![CDATA[HiFor the needs of a show, i&#039;d like to get the image from gopro black 7 to videoprojector who has hdmi port. The link has to be wireless ( wifi/bluetooth..). And without any delay.Do you thi...]]></description>
                        <content:encoded><![CDATA[<p>Hi<br /><br />For the needs of a show, i'd like to get the image from gopro black 7 to videoprojector who has hdmi port. The link has to be wireless ( wifi/bluetooth..). And without any delay.<br /><br />Do you think it's possible ?<br /><br />Thanks you very much</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/transmission-gopro-to-videoprojector/</guid>
                    </item>
				                    <item>
                        <title>Youtube Comments are not Loading, any help</title>
                        <link>https://www.tweaking4all.com/forum/video/youtube-comments-are-not-loading-any-help/</link>
                        <pubDate>Fri, 19 Feb 2021 13:46:33 +0000</pubDate>
                        <description><![CDATA[Hello everyone, Today I am facing a serious issue. I have a youtube channel. But I am shocked to see that the youtube comments are not loading. I also checked the other comments on youtube, ...]]></description>
                        <content:encoded><![CDATA[<p>Hello everyone, Today I am facing a serious issue. I have a youtube channel. But I am shocked to see that the youtube comments are not loading. I also checked the other comments on youtube, the same issue is happening.</p>
<p>I checked out my friend's laptop to verify, whether the same issue is happening or not. It's fine, there is showing the comments properly. But it is not loading on my laptop. I can't figure out the problem.</p>
<p>Can anyone suggest me is this my laptop issue or anything else? Any helps would be definitely appreciated.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>edstracke23</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/youtube-comments-are-not-loading-any-help/</guid>
                    </item>
				                    <item>
                        <title>Fonts Hard To Read On RMTS</title>
                        <link>https://www.tweaking4all.com/forum/video/fonts-hard-to-read-on-rmts/</link>
                        <pubDate>Tue, 25 Jun 2019 07:13:54 +0000</pubDate>
                        <description><![CDATA[hoping you might have a idea where i can go to edia the fonts for your program, and others that have the issue mentioned in the linked thread. thank]]></description>
                        <content:encoded><![CDATA[<p>hoping you might have a idea where i can go to edia the fonts for your program, and others that have the issue mentioned in the linked thread. thanks</p><p>https://forum.deluge-torrent.org/viewtopic.php?f=7&amp;t=55398&amp;p=229923#p229923</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>CCCP64</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/fonts-hard-to-read-on-rmts/</guid>
                    </item>
				                    <item>
                        <title>The Umbrella Academy Is Missing</title>
                        <link>https://www.tweaking4all.com/forum/video/the-umbrella-academy-is-missing/</link>
                        <pubDate>Fri, 15 Feb 2019 06:30:59 +0000</pubDate>
                        <description><![CDATA[good morning though you might want to know &quot;the Umbrella Academy&quot; is not found by renamemytvseries. i don&#039;t know how it polls for new shows, but i do know that the umbrella academy is correc...]]></description>
                        <content:encoded><![CDATA[<p>good morning though you might want to know "the Umbrella Academy" is not found by renamemytvseries. i don't know how it polls for new shows, but i do know that the umbrella academy is correct on the tvdb cause if it wasn't it wouldn't be listed on trakt or in duckietv.&nbsp; o.k. just thought to enter "Umbrella" ny itself and the show was listed. no idea why it's not finding it by the full title.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>CCCP64</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/the-umbrella-academy-is-missing/</guid>
                    </item>
				                    <item>
                        <title>All Episodes Not Being Listed</title>
                        <link>https://www.tweaking4all.com/forum/video/all-episodes-not-being-listed/</link>
                        <pubDate>Thu, 24 Jan 2019 06:45:37 +0000</pubDate>
                        <description><![CDATA[good day i have noticed that sometimes not all episodes are listed for a series. sample image below is the best way of showing what i&#039;m referring to.&nbsp; as you can see all american has 1 ...]]></description>
                        <content:encoded><![CDATA[good day i have noticed that sometimes not all episodes are listed for a series. sample image below is the best way of showing what i'm referring to.&nbsp; as you can see all american has 1 through 12 then skips to episode 16.<div id="wpfa-11421" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="https://www.tweaking4all.com/wp-content/uploads/2019/01/TMTS.png" target="_blank"><i class="fa fa-paperclip"></i>TMTS.png</a></div>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>CCCP64</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/all-episodes-not-being-listed/</guid>
                    </item>
				                    <item>
                        <title>Cannot Rename Multiple Episodes At The Same Time</title>
                        <link>https://www.tweaking4all.com/forum/video/cannot-rename-multiple-episodes-at-the-same-time/</link>
                        <pubDate>Fri, 18 Jan 2019 08:06:17 +0000</pubDate>
                        <description><![CDATA[i just launched renamemytvseries and added 13 episodes of the punisher and i got what you see in the image. i tried twice with the same results, so i rebooted tried one more time and got the...]]></description>
                        <content:encoded><![CDATA[i just launched renamemytvseries and added 13 episodes of the punisher and i got what you see in the image. i tried twice with the same results, so i rebooted tried one more time and got the same thing. i then tried with just one episode and it worked perfectly. just downloaded the latest version the day before yesterday. for this issue i honestly do not know where to begin to look to fix it. any help and or suggestion on this would be greatly appreciated, thanks<div><br><div><br><div></div><div></div><div>Mint Cinnamon 19.1 Tessa 64 Bit</div><div>AMD FX 6300</div><div>Asus 970 Gaming/Aura</div><div>Samsung 120 Gig 850 EVO</div><div>2 USB 3.0 Drivea</div><div>16 Gig DDR3</div><div>USB 3.0 Card</div><div>AOC 29" Ultra Wide At 2560x1080</div></div></div><div id="wpfa-11361" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="https://www.tweaking4all.com/wp-content/uploads/2019/01/renamethepunisher.png" target="_blank"><i class="fa fa-paperclip"></i>renamethepunisher.png</a></div>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>CCCP64</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/cannot-rename-multiple-episodes-at-the-same-time/</guid>
                    </item>
				                    <item>
                        <title>Jercio XT1511 can replace WS2812, APA102</title>
                        <link>https://www.tweaking4all.com/forum/video/jercio-xt1511-can-replace-ws2812-apa102/</link>
                        <pubDate>Mon, 19 Dec 2016 01:14:26 +0000</pubDate>
                        <description><![CDATA[XT1511 by threee Ann (RGB) 5050+ Ming for chip drive IC photositive integrated single serial constant current IC-LED,umlimited cascade, bnuilt-in power supply, reverse connect protection tem...]]></description>
                        <content:encoded><![CDATA[<p>XT1511 by threee Ann (RGB) 5050+ Ming for chip drive IC photositive integrated single serial constant current IC-LED,umlimited cascade, bnuilt-in power supply, reverse connect protection templeate power reverse will not damage</p><p>the IC, the history of the most stable LED RGB built-in IC-5050. Artcle is suitable for the magic lantern, balance the light belt,audio module, LED electronic screen and other LED products.</p><p>Model:XT1511</p><p>Brand:JERCIO</p><p>Product specification:SMD 5050RGB</p><p>Operating voltage:DC 5V</p><p>Product Chip:Sanan</p><p>Drive IC:mingwei Sk6812 IC</p><p>Rated current:12mA</p><p>Product power:0.25W</p><p>Service life:50000H</p><div id="wpfa-7429" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="https://www.tweaking4all.com/wp-content/uploads/2016/12/XT1511.jpg" target="_blank"><i class="fa fa-paperclip"></i>XT1511.jpg</a></div>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>what</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/jercio-xt1511-can-replace-ws2812-apa102/</guid>
                    </item>
				                    <item>
                        <title>Share a Amazon Lightning Deals for capture video&amp;game with you</title>
                        <link>https://www.tweaking4all.com/forum/video/share-a-amazon-lightning-deals-for-capture-videogame-with-you/</link>
                        <pubDate>Fri, 28 Oct 2016 04:09:28 +0000</pubDate>
                        <description><![CDATA[HDML-Cloner Box will be on Amazon Lightning Deal at Oct 28，4:15 pm-Oct 28，8:15 pm PDT.
Then you can enjoy 38% OFF (saving $50) for HDML-Cloner Box on(Fulfillment by Amazon) to record and cap...]]></description>
                        <content:encoded><![CDATA[HDML-Cloner Box will be on Amazon Lightning Deal at Oct 28，4:15 pm-Oct 28，8:15 pm PDT.
Then you can enjoy 38% OFF (saving $50) for HDML-Cloner Box on <a href="http://amzn.to/2fqTu6j" target="_blank">https://www.amazon.com/dp/B00TF9MCXU</a> (Fulfillment by Amazon) to record and capture streaming video and game via HDMI. Original price: $129.99,&nbsp; Lightning Deal price: $79.99  Limited stock. Only 65 in stock. Hurry now!<div id="wpfa-7291" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="https://www.tweaking4all.com/wp-content/uploads/2016/10/ld.jpg" target="_blank"><i class="fa fa-paperclip"></i>ld.jpg</a></div>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/video/">Video</category>                        <dc:creator>jaffson</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/video/share-a-amazon-lightning-deals-for-capture-videogame-with-you/</guid>
                    </item>
							        </channel>
        </rss>
		