static int wrap_isSeekable(lua_State* L) {
  lua_settop(L, 1);
  OutputStream* self = luaAudiere_checkOutputStream(L, 1);
  lua_pushboolean(L, self->isSeekable());
  return 1;
}