<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.visionaire2d.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=David</id>
	<title>VisionaireWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.visionaire2d.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=David"/>
	<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Special:Contributions/David"/>
	<updated>2026-06-02T04:44:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2192</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2192"/>
		<updated>2012-09-05T20:36:49Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
==Tools you need==&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like MKVToolNix&lt;br /&gt;
&lt;br /&gt;
== Some good result settings ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;You can experiment with the bitrate and quality yourself, but note: Higher Bitrates and Quality = higher CPU usage&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;MKV _512Kbps_288p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on average 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 400 Kbps	-	2 Pass VBR	-	512x288 pixels&lt;br /&gt;
::Vorbis	-	64Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_768Kbps_360p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on fast 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 600 Kbps	-	2 Pass VBR	-	480x360 pixels&lt;br /&gt;
::Vorbis	-	96Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_1200Kbps_480p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on fast Wi-Fi network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 990 Kbps	-	2 Pass VBR	-	852x480 pixels&lt;br /&gt;
::Vorbis	-	128Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_2000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on slow broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 1800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_3000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 2800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_5000Kbps_1080p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 5000 Kbps	-	2 Pass VBR	-	1920x1080 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
== Encoding example ==&lt;br /&gt;
In this example you will learn how to encode your movies with ffmpeg manually to create an Video:&lt;br /&gt;
* based on the MKV_3000Kbps_720p quality result settings (720p widescreen)&lt;br /&gt;
* which uses the VP8 codec for video&lt;br /&gt;
* which uses the libvorbis codec for audio&lt;br /&gt;
* which is 2-pass-VBR encoded&lt;br /&gt;
* which was 16:9 (Widescreen)&lt;br /&gt;
&lt;br /&gt;
For an 2-pass-VBR encoding we need to execute the same command at 2 times, nothing changed except the flag -pass (1 and 2).&lt;br /&gt;
The first pass writes an logfile and not the OUTPUT.WEBM video.&lt;br /&gt;
The second pass creates the video from the Logfile which was be written by the flag -passlogfile.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;First Pass:&#039;&#039;&#039;&lt;br /&gt;
 ./ffmpeg -i YOURVIDEO.RAW -c:a libvorbis -b:a 160k -aq 9 -strict experimental -async 1 -c:v libvpx -b:v 2800k -bt 234k -r 25 -s 1280x720 -aspect 16:9 -trellis 0 -me_range 16 -i_qfactor 0.71 -b_strategy 1 -qmin 3 -qmax 51 -qdiff 4 -sc_threshold 40 -sn -pass 1 -passlogfile ./pass -threads 2 -y OUTPUT.WEBM&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Second Pass:&#039;&#039;&#039;&lt;br /&gt;
 ./ffmpeg -i YOURVIDEO.RAW -c:a libvorbis -b:a 160k -aq 9 -strict experimental -async 1 -c:v libvpx -b:v 2800k -bt 234k -r 25 -s 1280x720 -aspect 16:9 -trellis 0 -me_range 16 -i_qfactor 0.71 -b_strategy 1 -qmin 3 -qmax 51 -qdiff 4 -sc_threshold 40 -sn -pass 2 -passlogfile ./pass -threads 2 -y OUTPUT.WEBM&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== WebSites ==&lt;br /&gt;
* [http://ffmpeg.zeranoe.com/builds/ FFmpeg] (english) – Windows Builds&lt;br /&gt;
* [http://www.evermeet.cx/ffmpeg/ FFmpeg] (english) – Macintosh Builds&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/downloads.html MKVToolNix] (english) - All Platforms&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2191</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2191"/>
		<updated>2012-09-05T20:35:21Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
==Tools you need==&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like MKVToolNix&lt;br /&gt;
&lt;br /&gt;
== Some good result settings ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;You can experiment with the bitrate and quality yourself, but note: Higher Bitrates and Quality = higher CPU usage&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;MKV _512Kbps_288p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on average 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 400 Kbps	-	2 Pass VBR	-	512x288 pixels&lt;br /&gt;
::Vorbis	-	64Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_768Kbps_360p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on fast 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 600 Kbps	-	2 Pass VBR	-	480x360 pixels&lt;br /&gt;
::Vorbis	-	96Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_1200Kbps_480p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on fast Wi-Fi network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 990 Kbps	-	2 Pass VBR	-	852x480 pixels&lt;br /&gt;
::Vorbis	-	128Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_2000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on slow broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 1800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_3000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 2800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_5000Kbps_1080p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 5000 Kbps	-	2 Pass VBR	-	1920x1080 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
== Encoding example ==&lt;br /&gt;
In this example you will learn how to encode your movies with ffmpeg manually to create an Video:&lt;br /&gt;
* based on the MKV_3000Kbps_720p quality result settings&lt;br /&gt;
* which uses the VP8 codec for video&lt;br /&gt;
* which uses the libvorbis codec for audio&lt;br /&gt;
* which is 2-pass-VBR encoded&lt;br /&gt;
&lt;br /&gt;
For an 2-pass-VBR encoding we need to execute the same command at 2 times, nothing changed except the flag -pass (1 and 2).&lt;br /&gt;
The first pass writes an logfile and not the OUTPUT.WEBM video.&lt;br /&gt;
The second pass creates the video from the Logfile which was be written by the flag -passlogfile.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;First Pass:&#039;&#039;&#039;&lt;br /&gt;
 ./ffmpeg -i YOURVIDEO.RAW -c:a libvorbis -b:a 160k -aq 9 -strict experimental -async 1 -c:v libvpx -b:v 2800k -bt 234k -r 23.98 -s 1280x720 -aspect 16:9 -trellis 0 -me_range 16 -i_qfactor 0.71 -b_strategy 1 -qmin 3 -qmax 51 -qdiff 4 -sc_threshold 40 -sn -pass 1 -passlogfile ./pass -threads 2 -y OUTPUT.WEBM&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Second Pass:&#039;&#039;&#039;&lt;br /&gt;
 ./ffmpeg -i hd_distributor_universal_100th_anniversary.m2ts -c:a libvorbis -b:a 160k -aq 9 -strict experimental -async 1 -c:v libvpx -b:v 2800k -bt 234k -r 23.98 -s 1280x720 -aspect 16:9 -trellis 0 -me_range 16 -i_qfactor 0.71 -b_strategy 1 -qmin 3 -qmax 51 -qdiff 4 -sc_threshold 40 -sn -pass 2 -passlogfile ./pass -threads 2 -y output.webm&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== WebSites ==&lt;br /&gt;
* [http://ffmpeg.zeranoe.com/builds/ FFmpeg] (english) – Windows Builds&lt;br /&gt;
* [http://www.evermeet.cx/ffmpeg/ FFmpeg] (english) – Macintosh Builds&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/downloads.html MKVToolNix] (english) - All Platforms&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2190</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2190"/>
		<updated>2012-09-04T22:16:51Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
==Tools you need==&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like MKVToolNix&lt;br /&gt;
&lt;br /&gt;
== Some good result settings ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;You can experiment with the bitrate and quality yourself, but note: Higher Bitrates and Quality = higher CPU usage&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;MKV _512Kbps_288p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on average 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 400 Kbps	-	2 Pass VBR	-	512x288 pixels&lt;br /&gt;
::Vorbis	-	64Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_768Kbps_360p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on fast 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 600 Kbps	-	2 Pass VBR	-	480x360 pixels&lt;br /&gt;
::Vorbis	-	96Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_1200Kbps_480p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on fast Wi-Fi network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 990 Kbps	-	2 Pass VBR	-	852x480 pixels&lt;br /&gt;
::Vorbis	-	128Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_2000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on slow broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 1800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_3000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 2800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_5000Kbps_1080p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 5000 Kbps	-	2 Pass VBR	-	1920x1080 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
== WebSites ==&lt;br /&gt;
* [http://ffmpeg.zeranoe.com/builds/ FFmpeg] (english) – Windows Builds&lt;br /&gt;
* [http://www.evermeet.cx/ffmpeg/ FFmpeg] (english) – Macintosh Builds&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/downloads.html MKVToolNix] (english) - All Platforms&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2189</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2189"/>
		<updated>2012-09-04T22:08:50Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
==Tools you need==&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like MKVToolNix&lt;br /&gt;
&lt;br /&gt;
== Some good result settings ==&lt;br /&gt;
* &#039;&#039;&#039;MKV _512Kbps_288p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on average 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 400 Kbps	-	2 Pass VBR	-	512x288 pixels&lt;br /&gt;
::Vorbis	-	64Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_768Kbps_360p&#039;&#039;&#039;		&#039;&#039;Matroska video for progressive download on fast 3g network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 600 Kbps	-	2 Pass VBR	-	480x360 pixels&lt;br /&gt;
::Vorbis	-	96Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_1200Kbps_480p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on fast Wi-Fi network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 990 Kbps	-	2 Pass VBR	-	852x480 pixels&lt;br /&gt;
::Vorbis	-	128Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_2000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on slow broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 1800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_3000Kbps_720p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 2800 Kbps	-	2 Pass VBR	-	1280x720 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MKV_5000Kbps_1080p&#039;&#039;&#039;	&#039;&#039;Matroska video for progressive download on average broadband network connections.&#039;&#039;&lt;br /&gt;
::VP8		-	DataRate: 5000 Kbps	-	2 Pass VBR	-	1920x1080 pixels&lt;br /&gt;
::Vorbis	-	160Kbps				-	44100Hz		-	Stereo			-	Sample Size: 16&lt;br /&gt;
&lt;br /&gt;
== WebSites ==&lt;br /&gt;
* [http://ffmpeg.zeranoe.com/builds/ FFmpeg] (english) – Windows Builds&lt;br /&gt;
* [http://www.evermeet.cx/ffmpeg/ FFmpeg] (english) – Macintosh Builds&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/downloads.html MKVToolNix] (english) - All Platforms&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2188</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2188"/>
		<updated>2012-09-04T21:44:12Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
===Tools you need===&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like mkvtoolnix&lt;br /&gt;
&lt;br /&gt;
== WebSites ==&lt;br /&gt;
* [http://ffmpeg.zeranoe.com/builds/ FFmpeg] (english) – Windows Builds&lt;br /&gt;
* [http://www.evermeet.cx/ffmpeg/ FFmpeg] (english) – Macintosh Builds&lt;br /&gt;
* [http://www.bunkus.org/videotools/mkvtoolnix/downloads.html MKVToolNix] (english) - All Platforms&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2187</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2187"/>
		<updated>2012-09-04T21:35:29Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
===Tools you need===&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like mkvtoolnix&lt;br /&gt;
&lt;br /&gt;
===Download===&lt;br /&gt;
* ffmpeg for windows [http://ffmpeg.zeranoe.com/builds/]&lt;br /&gt;
*&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2186</id>
		<title>Video encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Video_encoding&amp;diff=2186"/>
		<updated>2012-09-04T21:34:16Z</updated>

		<summary type="html">&lt;p&gt;David: Created page with &amp;quot;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.  We recommed google&amp;#039;s free V...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Visionaire Studio 3.7 we support matroska (mkv) videos with subtitles, this is while i want to give you some tips and inspirations to use that.&lt;br /&gt;
&lt;br /&gt;
We recommed google&#039;s free VP8  video codec with ogg/vorbis audio for the mkv container. These codec has an very good quality which is similar to H.264, but there are no license fees.&lt;br /&gt;
&lt;br /&gt;
==Tools you need==&lt;br /&gt;
* an video encoder / we recommed ffmpeg for it, because it has can read very much format&#039;s and convert it with an excellent quality.&lt;br /&gt;
* an subtitle editor for the format: Advanced Substation Alpha (ASS) / encoded File Encoding = UTF8&lt;br /&gt;
* an mkv editor like mkvtoolnix&lt;br /&gt;
&lt;br /&gt;
===Download===&lt;br /&gt;
* ffmpeg for windows [http://ffmpeg.zeranoe.com/builds/]&lt;br /&gt;
*&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Main_Page&amp;diff=2185</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Main_Page&amp;diff=2185"/>
		<updated>2012-09-04T21:22:16Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Visionaire Website ==&lt;br /&gt;
* [http://www.visionaire2d.net Visionaire Portal] (with Downloads, Forum, etc)&lt;br /&gt;
&lt;br /&gt;
== Visionaire Manual ==&lt;br /&gt;
* [[Visionaire Manual]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials/HowTos ==&lt;br /&gt;
* [[Frequently Asked Questions/FAQ]]&lt;br /&gt;
* [[General Questions]]&lt;br /&gt;
* [[Step by Step HowTos]] (We appreciate contributions by our users!)&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
	<entry>
		<id>https://wiki.visionaire2d.net/index.php?title=Main_Page&amp;diff=2184</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.visionaire2d.net/index.php?title=Main_Page&amp;diff=2184"/>
		<updated>2012-09-04T19:06:13Z</updated>

		<summary type="html">&lt;p&gt;David: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Visionaire Website ==&lt;br /&gt;
* [http://www.visionaire2d.net Visionaire Portal] (with Downloads, Forum, etc)&lt;br /&gt;
&lt;br /&gt;
== Visionaire Manual ==&lt;br /&gt;
* [[Visionaire Manual]]&lt;br /&gt;
&lt;br /&gt;
== Scripting ==&lt;br /&gt;
[[Data_Structure_3.x]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials/HowTos ==&lt;br /&gt;
* [[Frequently Asked Questions/FAQ]]&lt;br /&gt;
* [[General Questions]]&lt;br /&gt;
* [[Step by Step HowTos]] (We appreciate contributions by our users!)&lt;/div&gt;</summary>
		<author><name>David</name></author>
	</entry>
</feed>