<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to FAQ</title><link>https://sourceforge.net/p/glmixer/wiki/FAQ/</link><description>Recent changes to FAQ</description><atom:link href="https://sourceforge.net/p/glmixer/wiki/FAQ/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 14 Mar 2015 18:33:13 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/glmixer/wiki/FAQ/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for FAQ page</title><link>https://sourceforge.net/p/glmixer/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Originally posted by: &lt;a class="" href="http://code.google.com/u/100353793994799745703" rel="nofollow"&gt;daytona....@gmail.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;thanks, it works great. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 14 Mar 2015 18:33:13 -0000</pubDate><guid>https://sourceforge.neta326c79a421d6f35e053b218a1a3521e9e89997e</guid></item><item><title>Discussion for FAQ page</title><link>https://sourceforge.net/p/glmixer/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Originally posted by: &lt;a class="" href="http://code.google.com/u/108427247717855799229" rel="nofollow"&gt;bruno.he...@gmail.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;New download glmixer0.9_r323 should fix the problem. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 14 Mar 2015 18:33:13 -0000</pubDate><guid>https://sourceforge.netd35f2e73964d666f6355b0931d5877a323c03b2e</guid></item><item><title>Discussion for FAQ page</title><link>https://sourceforge.net/p/glmixer/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Originally posted by: &lt;a class="" href="http://code.google.com/u/100353793994799745703" rel="nofollow"&gt;daytona....@gmail.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;qtcore.dll is not registering for me using glmixer0.9_r319.exe on a windows xp system. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 14 Mar 2015 18:33:13 -0000</pubDate><guid>https://sourceforge.netb09a5abbdccd876846b03f1b37ba90eb927723b3</guid></item><item><title>FAQ modified by Anonymous</title><link>https://sourceforge.net/p/glmixer/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Submit your questions by adding comments to this page. &lt;/p&gt;
&lt;h1 id="generalities"&gt;Generalities&lt;/h1&gt;
&lt;h3 id="how-can-i-add-audio-to-a-video-created-with-glmixer"&gt;How can I add audio to a video created with GLMixer ?&lt;/h3&gt;
&lt;p&gt;Using the &lt;a class="" href="http://www.ffmpeg.org" rel="nofollow"&gt;ffmpeg&lt;/a&gt; command line, you can merge a video and an audio stream in this way: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;ffmpeg&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="n"&gt;my_video&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;avi&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="n"&gt;my_music&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;mp3&lt;/span&gt; &lt;span class="n"&gt;final&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;mp4&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;To get correct bitrate and image size (with the aspect ratio matching your original video), add the flags '-b' and '-s'. &lt;/p&gt;
&lt;p&gt;For example, with a 16/9 video: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;ffmpeg&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="n"&gt;my_video&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;avi&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="n"&gt;my_music&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;mp3&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;s&lt;/span&gt; &lt;span class="mi"&gt;512&lt;/span&gt;&lt;span class="n"&gt;x288&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;b&lt;/span&gt; &lt;span class="mi"&gt;2500&lt;/span&gt;&lt;span class="n"&gt;k&lt;/span&gt;  &lt;span class="n"&gt;final&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;mp4&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;or for higher quality: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;ffmpeg&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="n"&gt;my_video&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;avi&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="n"&gt;my_music&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;mp3&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;s&lt;/span&gt; &lt;span class="mi"&gt;1024&lt;/span&gt;&lt;span class="n"&gt;x576&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;b&lt;/span&gt; &lt;span class="mi"&gt;5000&lt;/span&gt;&lt;span class="n"&gt;k&lt;/span&gt; &lt;span class="n"&gt;final&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;mp4&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;See &lt;a class="" href="http://www.ffmpeg.org/ffmpeg-doc.html#SEC15" rel="nofollow"&gt;ffmpeg documentation&lt;/a&gt; for more details. &lt;/p&gt;
&lt;h1 id="technicalities"&gt;Technicalities&lt;/h1&gt;
&lt;h3 id="nothing-works-after-an-update-under-osx"&gt;Nothing works after an update under OSX&lt;/h3&gt;
&lt;p&gt;If you have been using an old version of GLMixer under OSX (e.g. 0.8), and have downloaded a newer version (0.9), you should remove the former application preferences because they are not compatible. &lt;/p&gt;
&lt;p&gt;Remove the following files from your home directory: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="o"&gt;~/&lt;/span&gt;&lt;span class="n"&gt;Library&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;Preferences&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;glmixer&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;plist&lt;/span&gt;
&lt;span class="o"&gt;~/&lt;/span&gt;&lt;span class="n"&gt;Library&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;Preferences&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;fr&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;free&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;bhbn&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;GLMixer&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;plist&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;NB: the path may be different according to the locals of your system (e.g. under a French system, the &lt;em&gt;Library&lt;/em&gt; folder is called &lt;em&gt;'Bibliotheque'&lt;/em&gt;) &lt;/p&gt;
&lt;h3 id="the-rendering-frame-rate-is-low-wzxhzdk420fps-even-without-any-source-loaded-why"&gt;The rendering frame rate is low (&amp;lt;20fps) even without any source loaded; why?&lt;/h3&gt;
&lt;p&gt;There is a known issue with the openGL driver option &lt;strong&gt;SYNC to VBLANK&lt;/strong&gt; (synchronizing a refresh with the display frequency). Just disable this option in your drivers / display settings (GLMixer has its own synchronization to 60Hz refresh). &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 14 Mar 2015 18:33:13 -0000</pubDate><guid>https://sourceforge.net711db7fa86ca02fcddcf2c769d5d90c0146e931e</guid></item></channel></rss>