<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    <title>自爆前別忘了帶走我的青春 - 便利貼</title>
    <link>http://blog.sikazozo.org/</link>
    <description></description>
    <dc:language>tn</dc:language>
    <generator>Serendipity 1.5.3 - http://www.s9y.org/</generator>
    <pubDate>Sat, 13 Mar 2010 19:00:31 GMT</pubDate>

    <image>
        <url>http://blog.sikazozo.org/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: 自爆前別忘了帶走我的青春 - 便利貼 - </title>
        <link>http://blog.sikazozo.org/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>影片格式轉換</title>
    <link>http://blog.sikazozo.org/index.php?/archives/285-tw.html</link>
            <category>便利貼</category>
    
    <comments>http://blog.sikazozo.org/index.php?/archives/285-tw.html#comments</comments>
    <wfw:comment>http://blog.sikazozo.org/wfwcomment.php?cid=285</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.sikazozo.org/rss.php?version=2.0&amp;type=comments&amp;cid=285</wfw:commentRss>
    

    <author>nospam@example.com (Dante Mason)</author>
    <content:encoded>
    &lt;p&gt;TS to mkv&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;
&lt;blockquote&gt;ffmpeg -i sourcefile.m2ts -vcodec copy -sameq -acodec copy output.mp4&lt;/blockquote&gt; &lt;br /&gt;&lt;a href=&quot;http://blog.sikazozo.org/index.php?/archives/285-tw.html#extended&quot;&gt;繼續閱讀 &quot;影片格式轉換&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 14 Mar 2010 02:37:03 +0800</pubDate>
    <guid isPermaLink="false">http://blog.sikazozo.org/index.php?/archives/285-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>Fluxbox 的 日期格式</title>
    <link>http://blog.sikazozo.org/index.php?/archives/218-Fluxbox.html</link>
            <category>便利貼</category>
    
    <comments>http://blog.sikazozo.org/index.php?/archives/218-Fluxbox.html#comments</comments>
    <wfw:comment>http://blog.sikazozo.org/wfwcomment.php?cid=218</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.sikazozo.org/rss.php?version=2.0&amp;type=comments&amp;cid=218</wfw:commentRss>
    

    <author>nospam@example.com (Dante Mason)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;網路上可以找到不少fluxbox的相關設定，像是這篇要講的，titlebar 的 clock 部份要如何顯示。&lt;/p&gt;&lt;p&gt;當然最直接的答案就是看 strftime&lt;/p&gt;&lt;p&gt;但是如果我要顯示中文字呢？(像是 &amp;quot;星期&amp;quot; &amp;quot;日&amp;quot; 這種)&lt;/p&gt;&lt;p&gt;以下以 UTF-8 環境為例：&lt;/p&gt;&lt;p&gt;像是 11月22日 星期四 02:17&lt;/p&gt;&lt;p&gt;就將格式填為 &lt;/p&gt;&lt;blockquote&gt;%h%d\346\227\245 \346\230\237\346\234\237%a  %H:%M&lt;/blockquote&gt;&lt;p /&gt;&lt;p&gt;我也忘記從哪裡找來那些數字的...&lt;/p&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 22 Nov 2007 01:10:22 +0800</pubDate>
    <guid isPermaLink="false">http://blog.sikazozo.org/index.php?/archives/218-guid.html</guid>
    <category>linux</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>聲音格式的轉換</title>
    <link>http://blog.sikazozo.org/index.php?/archives/72-tw.html</link>
            <category>便利貼</category>
    
    <comments>http://blog.sikazozo.org/index.php?/archives/72-tw.html#comments</comments>
    <wfw:comment>http://blog.sikazozo.org/wfwcomment.php?cid=72</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.sikazozo.org/rss.php?version=2.0&amp;type=comments&amp;cid=72</wfw:commentRss>
    

    <author>nospam@example.com (Dante Mason)</author>
    <content:encoded>
    &lt;ol&gt; &lt;br /&gt;
&lt;li&gt;wav to ac3&lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;ffmpeg -i movie_audio.wav -ac 2 -ab 192 -ar 48000 audio.ac3&lt;/blockquote&gt; &lt;br /&gt;
&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;ac3 to wav&lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;a52dec -o wav audio.ac3 &amp;gt; audio.wav&lt;/blockquote&gt; &lt;br /&gt;
&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;wav to mp2&lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;使用mp2enc：mp2enc -b 160 -l 2 -o audio.mpa -r 48000 -s &amp;lt; audio.wav&lt;br /&gt;使用ffmpeg：ffmpeg -i audio.wav -acodec mp2 -ac 2 -ar 48000 -ab 160 -y audio.mp2&lt;/blockquote&gt; &lt;br /&gt;
&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;aac to wav&lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;使用 faad：faad audio.aac&lt;br /&gt;使用 ffmpeg：ffmpeg -i audio.aac audio.wav&lt;/blockquote&gt; &lt;br /&gt;
&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;DTS to AC3&lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;1)Convert the audio in the movie in WAV PCM:&lt;br /&gt;nice -n 10 mencoder input_video.avi -oac pcm -ovc copy -o output_movie.avi&lt;br /&gt;&lt;br /&gt;2)Extract the WAV file from the new AVI:&lt;br /&gt;nice -n 10 ffmpeg -i output_movie.avi -acodec copy movie_audio.wav&lt;br /&gt;&lt;br /&gt;3)Convert the WAV to AC3 Stereo&lt;br /&gt;nice -n 10 ffmpeg -i movie_audio.wav -ac 2 -ab 192 -ar 48000 audio.ac3&lt;/blockquote&gt; &lt;br /&gt;
&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;DTS to AC3 (dcadec and aften)&lt;/li&gt;&lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;dcadec -o wavall /tmp/dts.file.dts | aften - /tmp/ac3.file.ac3 &lt;br /&gt;&lt;/blockquote&gt; &lt;br /&gt;
&lt;li&gt;DTS to AAC 5.1 using FAAC&lt;br /&gt;&lt;br /&gt;
&lt;blockquote&gt;ffmpeg -i file.dts -f dts -acodec pcm_s16le - | \&lt;br /&gt;sox -t raw -s -b 16 -c6 -r48000 - -t wav - | \&lt;br /&gt;faac -q 210 -o file.m4a -w -P -C 6 -I 1,2 -X -R 48000 --mpeg-vers 4 -&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;high quality mp3&lt;/li&gt; &lt;br /&gt;
&lt;blockquote&gt;lame -V 2 -q 2 --vbr-new -b 80 --lowpass 19.7 input.wav output.mp3&lt;br /&gt;&lt;/blockquote&gt; &lt;br /&gt;
&lt;p&gt; &lt;/p&gt; &lt;br /&gt;
&lt;/ol&gt; 
    </content:encoded>

    <pubDate>Sat, 26 Aug 2006 14:02:58 +0800</pubDate>
    <guid isPermaLink="false">http://blog.sikazozo.org/index.php?/archives/72-guid.html</guid>
    <category>linux</category>
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>

</channel>
</rss>