2014年11月16日日曜日

WEB フォント Noto Sans CJKを blogger へ 適用する

WEB フォント Noto Sans CJKを blogger へ 適用する

概略

blogger で WEB フォントを使いたくなった.

使用するWEB フォントの候補はオープンソースフォントの Noto Sans ファミリー.

Noto Sans ファミリーは Google が提供している.

このファミリーのNoto Sans CJK というバージョンを採用した。

以降には WEB フォント Noto Sans CJKを blogger へ 適用するまでの履歴を記述する。

フォントの公開

まずは フォントをダウンロード。 伸張した後、適当な共有サービスへフォントファイルをアップロードする。アップロードしたフォントファイルは誰でも見れるように共有する。

見た感じ NotoSansCJKjp-DemiLight.otf のフォントウェイトが気に入ったのでこれを試す。

対象のhtmlファイルに @font-face を適用

対象のhtmlに @font-face を適用。しかし、この実装ではフォントファイルのダウンロードが完了するまでフォントレンダリングが反映されない。ダウンロードの非同期化の手段を探る。

フォントファイル 非同期ダウンロード Web Font Loader

フォントファイルの非同期ダウンロードに適した JavaScript、Web Font Loader を使う。

@font-face を外部CSS化と公開

Web Font Loader は @font-face が定義された css ファイルへの URL を使うので、これも適当なファイル共有サービスへアップロード。

@font-face {
  font-family: 'NotoSansCJKjp-DemiLight';
  src: url('適当なファイル共有サービス/NotoSansCJKjp-DemiLight.otf')  format('opentype'); 
}

#NotoSansCJKjp-DemiLight {
  font-family: 'NotoSansCJKjp-DemiLight';
}

Web Font Loader を blogger の テンプレート html へ埋め込み

blogger の テンプレート html を編集。編集箇所は </head> の前へ Web Font Loader を挿入。
<script src='http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js' type='text/javascript'/> 
<script type='text/javascript'> 
//<![CDATA[
<!--
    WebFont.load({ 
        custom: {  
            families: [ 'NotoSansCJKjp-DemiLight' ], // 読み込みたいフォントファミリ
            urls: ['適当なファイル共有サービス/webFonts.css'] //@font-face が定義された css ファイルへの URL
        }, 
        loading: function() { 
            // ロードが開始されたとき 
        }, 
        active: function() { 
            // Web Fontが使用可能になったとき 
        }, 
        inactive: function() { 
            // ブラウザがサポートしていないとき 
        }, 
        fontloading: function(fontFamily, fontDescription) { 
            // fontFamilyのロードが開始されたとき 
        }, 
        fontactive: function(fontFamily, fontDescription) { 
            // fontFamilyが使用可能になったとき 
        }, 
        fontinactive: function(fontFamily, fontDescription) { 
            // fontFamilyをブラウザがサポートしていないとき 
        } 
    }); 
//-->
//]]>
</script> 
</head> 

対象のhtmlファイルに Web Font Loader を適用

Web Font Loader を使うことで、フォントに関するイベントをフックし、CSSで制御できるようになる。(参考)

  • 読み込み(.wf-loading):Web フォントの読み込み中
  • アクティブ(.wf-active):Web フォントがアクティブな状態
  • 非アクティブ(.wf-inactive):Web フォントが非アクティブな状態

それを対象のhtmlファイルに適用する。

.wf-loading body  {font-family: sans-serif;}
.wf-active body   {font-family: "NotoSansCJKjp-DemiLight";}
.wf-active h3   {font-family: "NotoSansCJKjp-DemiLight";}
.wf-active h2   {font-family: "NotoSansCJKjp-DemiLight";}
.wf-active h1   {font-family: "NotoSansCJKjp-DemiLight";}
.wf-inactive body h2 h1 {font-family: sans-serif;}

フォントのサブセット化

Web Font Loader により 非同期ダウンロードに対応したが、まだレンダリングに時間がかかる。

時間がかかる理由はフォントのファイルサイズが16MB弱と大きく、初回アクセス時などノンキャッシュ環境では、レンダリングまでかなり待たされてしまう。

モバイルネットワークといった公衆網ではとても使えない。

そこで最低限の文字だけを抽出したサブセット化によりファイルサイズの圧縮を試みた。

抽出した文字は、 常用漢字(JIS第1水準漢字), ひらがな, カタカナ, 半角英数字, 全角英数字, 記号。

結果、数百キロバイトまで圧縮に成功。

@font-face 外部CSSの更新

フォントのサブセット化に併せて @font-face 外部CSSの更新。

/* NotoSansCJKjp-DemiLight-Subset */
@font-face {
  font-family: 'NotoSansCJKjp-DemiLight-Subset';
  src: url('適当なファイル共有サービス/NotoSansCJKjp-DemiLight-Subset.eot'); /* IE9 Compat Modes */
  src: url('適当なファイル共有サービス/NotoSansCJKjp-DemiLight-Subset.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('適当なファイル共有サービス/NotoSansCJKjp-DemiLight-Subset.woff')  format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
       url('適当なファイル共有サービス/NotoSansCJKjp-DemiLight-Subset.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

#NotoSansCJKjp-DemiLight-Subset {
  font-family: 'NotoSansCJKjp-DemiLight-Subset';
}

対象htmlファイルのフォントを差し替え

フォントのサブセット化に併せて、対象htmlファイルのフォントを差し替え。

.wf-loading body  {font-family: sans-serif;}
.wf-active body   {font-family: "NotoSansCJKjp-DemiLight-Subset";}
.wf-active h3   {font-family: "NotoSansCJKjp-DemiLight-Subset";}
.wf-active h2   {font-family: "NotoSansCJKjp-DemiLight-Subset";}
.wf-active h1   {font-family: "NotoSansCJKjp-DemiLight-Subset";}
.wf-inactive body h2 h1 {font-family: sans-serif;}

モバイル用カスタマイズ

blogger の テンプレート の モバイル 設定を変更する。これを変更しないとモバイルで閲覧した場合に Web Font が適用されない。

携帯端末では現在のテンプレートのモバイル バージョンを表示する。はい。携帯端末でモバイル テンプレートを表示する。

モバイル テンプレートを選択 を カスタム へ変更。

ライセンスと告知の公開

オープンソースフォントの Noto Sans ファミリー とはいえ、サブセット化による改変はライセンスに則る。

License と NOTICE を サブセット化フォントと同じパスへ設置した。

License 参考

Noto is Google’s font family that aims to support all the world’s languages.

Its design goal is to achieve visual harmonization across languages. Noto fonts are under Apache License 2.0.

http://www.apache.org/licenses/
NOTICE 参考

Outline

  Noto Sans CJK has been provided by Google.
  The following fonts are derived font from free OpenType fonts Noto Sans CJK.

    NotoSansCJKjp-DemiLight-Subset.eot
    NotoSansCJKjp-DemiLight-Subset.otf
    NotoSansCJKjp-DemiLight-Subset.ttf
    NotoSansCJKjp-DemiLight-Subset.woff

Change

  The subset of the following

    Kanji (JIS first level Chinese characters ) , Hiragana , Katakana , alphanumeric characters , double-byte alphanumeric characters , symbols

License

  The above font conforms to the following license.

    Apache License 2.0
    http://www.apache.org/licenses/LICENSE-2.0.html

概略

  Noto Sans CJKはGoogleによって提供されています。
  下記のフォントは、フリーの OpenType フォント Noto Sans CJK からの派生フォントです。

    NotoSansCJKjp-DemiLight-Subset.eot
    NotoSansCJKjp-DemiLight-Subset.otf
    NotoSansCJKjp-DemiLight-Subset.ttf
    NotoSansCJKjp-DemiLight-Subset.woff

変更

  下記をサブセット化

    常用漢字(JIS第1水準漢字), ひらがな, カタカナ, 半角英数字, 全角英数字, 記号

ライセンス

  上記のフォントは下記ライセンスに準拠します。

    Apache License 2.0
    http://sourceforge.jp/projects/opensource/wiki/licenses%2FApache_License_2.0

最後に

最後まで読んでくれてありがとう。指摘、間違いなどあればコメントお願いします。

FreeSound.org

FreeSound.org

FreeSound.org

http://yoppa.org/?s=SuperCollider

GUIライブラリも色々あると思いますがP5といえばcontrolP5

http://www.sojamo.de/libraries/controlP5/

http://yoppa.org/geidai_music14/6064.html

入門記事で探したいときは、まずはyoppa.orgでサイト内検索かけるのが吉

Emacs 24.3.1 (Org mode 8.2.5h)

Validate

2014年11月12日水曜日

vj

vj

vj

iPad 向けアプリ

Vjay Algoriddim June 15th, 2012 $9.99

シンプルな構成で手始めにはいいかも。値段も手ごろ。

COLORCODE VJ $23.99

シンプルな構成で手始めにはいいかも。だけどちと高い

Vidibox Video June 22nd, 2014 $9.99

ビデオと音楽をリアルタイムでミックスするマッシュアップアプリケーション。ちと方向性違うかも。

Serato

PCDJ でメジャープロダクツ Serato(セラート)。Serato DJ のアドインとしてVJキットがこれ

Arkaos Grand VJ 2 XT UPG

47,429円 (税込 51,223 円) 送料込

はじめてのJitter

有益な情報てきなもの

秋葉系VJソフトウェア「あのタグで待ってる」 #ANOTAG

タグを用いて動画をガンガン繋げる事ができるMac用のVJソフトウェア。

http://www.vjvault.com/

VSXu

Price: Free Platforms: Windows, Linux Customizable patterns? Yes

A favorite in the demoscene crowd, VSXu is another option for Windows and Linux users (a Mac version is promised). VSXu is unique in it’s ability to treat the visualizer as an object: you can change the viewing perspective, zoom in/out of a pattern and change the absolute position of the program within the screen. VSXu player is a real-time visualizer that takes audio-in and creates some pretty particle and mesh graphic patches based on a built-in audio analysis system (aka Spectral Analyzer). VSXu Artiste lets you create patches in a Max MSP-type environment that you can use with the VSXu player, and even supports timeline actions to play in combination with your set. Still have to work to develop your own transitions and it does not support video, but a good start for Windows/Linux users.

What is VSXu?

VSXu (VSX Ultra) is an OpenGL-based (hardware-accelerated), modular programming environment with its main purpose to visualize music and create graphic effects in real-time.

Its intention is to bridge the gap between programmer and artist and enabling acreative and inspiring environment to work in for all parties involved.

VSXu is built on a modular plug-in-based architecture so anyone can extend it and or make visualization presets ("visuals" or "states").

The program is free software which means it's free from restrictions, free to share and copy, free to adapt / modify and use it any way you like.

Gephex

What is Gephex?

Gephex is a modular video jockey software. The base visuals can be chosen from sources like video files or cameras. Then they can be modified by filters and mixers. Each modifier has several parameters, that can be controlled by signal-generators, input devices like joysticks, sound cards, or midi-devices.

Gephex runs on GNU/Linux, Win32, Mac OS X, and FreeBSD. The effect engine is independent from the user interface, which can be de- and attached at runtime. All effects and media streams are extendible by plugins. Gephex is written in C++.

FreeJ

Introduction

FreeJ is a video mixer: an instrument for realtime video manipulation used in the fields of dance theater, veejaying, medical visualization and TV. Its development started in 2001 and continued actively for many years.

What we need to do

We need to interact with multiple layers of video, filtered by effect chains and then mixed together. We want to write scripts to control video mixes with keyboards, midi signals, OSC messages, wiimotes, video mouse and joysticks; manipulating images, movies, live cameras, particle generators, text scrollers, flash animations and more. We show the resulting video mix on multiple and remote screens, encode it into a movie and stream it live to the internet. We control the video mixer locally or remotely, also from multiple places at the same time; all functionalities are designed ad-hoc using javascript.

How FreeJ does it

example of use FreeJ is a commandline application on GNU/Linux, a graphical application on Apple/OSX, a C++ library offering an API for a multimedia framework that relies on different native functions on the operating systems it is ported and, at last, bindings to languages like Python and Ruby (using Swig, more can be implemented as needed. The code is fairly documented and usable in C++, with full bindings to python, while parsing scripts is done using Spidermonkey, the Mozilla interpreter. FreeJ has started being developed on a dual-core CPU already in 2001 and has grown with emphasis on multi-threading to run efficiently on modern multi-core computers.

Emacs 24.3.1 (Org mode 8.2.5h)

Validate

2014年11月4日火曜日

ぬかどこ

ぬかどこ

ぬかどこ

 

メンテナンス

素手でやる。理由は手についている乳酸菌をぬかどこに入れるため。

毎日ひっくりかえす必要はない。表面がちょっと茶色いような浅黒くなってきてからひっくり返しても大丈夫。心配なら夏場は1日に1~2回。冬場は3~4日に1回。春秋は1日に1回ひっくりかえす。

表面にふわっとした綿毛のような白いのは酵母。ふちから形成されていく。上下ひっくり返してなかにねじこんでOK。

ぬかどこはちょっとぼそぼそしてるなーってぐらいでもOK。水気が多くてもOK。ぐっと握って水がぽたぽた出てくるようであれば、さらしに取り出して絞ったほうが水気は早く切れる。

ひっくり返すコツ。上部と下部で分ける。ボールを2つ用意して、上部をAボールへ、下部をBボールを入れる。Aボールを先に入れて、その上にBボールを入れる。要は上下を完全にひっくり返すこと。

ひっくり返す前にぬかを5mmほど食べて塩味をチェック。うへ!しょっぺ!ってくらいでちょうどよい。ん?ちょっとしょっぱいかな?程度なら小さじ0.5杯を塩追加。

保存

夏場は冷蔵庫で保存。冷蔵庫で保存なら1~2日に1回のひっくり返しでOK。

夏場以外はシンクの下などで保存。

暗所で保存すること。たぶん日光などで菌が弱る気がする。間接日光でもだめっぽい。

密閉型で空気を遮断することは避ける。密閉してもいいけど水気を切ったりしなきゃいけなくてめんどい。タッパなら少しふたをずらしておけばいい。

1週間以上の長期放置は冷凍庫にいれればOK。

危険な兆候

なんだか全体的にふわっとしてきたらやばい兆候。パン生地みたく気持ちモッコリしたり、手をつっこんだ瞬間、手ごたえが無いというか、さくっと指が入る感じ。漬かってる具はすべて取り出して捨てる。多めに塩を入れて毎日底からひっくりかえす。そのうちに硬さが戻る。

色のついたカビは死活問題(らしい)。スプーンでごっそり掻き捨てることでリカバーできるらしい(未経験)

アレンジ

まばらにたかのつめが散らばってるのが理想的。5~6本かな。たかのつめは3mm程度に刻んで入れる。

昆布は幅3cm長さ10cmほどを1枚放り込んどく。

どんこは6こほど放り込んどく。形がなくなったら適時追加。味がきつくなってきたら入れるのやめる。けど、そのうち薄くなってくるから適時追加。

香りほしければ乾燥ゆずなり、みかんの皮を干して入れる。

味の形成

塩とたかのつめは防腐、カビ抑制。極端な話、塩は放置するための材料。

きゅうり入れまくると苦くなる(気がする)。

大根、白菜は甘くなる(気がする)。

味のまとめ方なんだけど、基本はぬかのみで作っていく。昆布、どんこはあくまで補強。

酸味の肝はぬかで培養される乳酸菌の味。塩気が足りなければ醤油たせばいいけど、酸味だけはどうにもならん。つまりぬかで培養する乳酸菌が主なうまみだと思って。

どんこはフレーバー、昆布は甘みを補強するだけ。味を立体的にするもの。

Emacs 24.3.1 (Org mode 8.2.5h)