Home Blog Page 23

glTF 2.0 Exporter / Formato Open Source para export de assets en 3D

0

https://www.khronos.org/gltf/

glTF™ (GL Transmission Format) is a royalty-free specification for the efficient transmission and loading of 3D scenes and models by applications. glTF minimizes both the size of 3D assets, and the runtime processing needed to unpack and use those assets. glTF defines an extensible, common publishing format for 3D content tools and services that streamlines authoring workflows and enables interoperable use of content across the industry.

Export para maya

https://kashika.co.jp/product/gltfexporter/

Maya®から直接glTF2.0を出力

Autodesk® Maya® (https://www.autodesk.co.jp/products/maya/overview) からglTF2.0を直接エクスポートが可能。従来までのFBXやCOLLADA経由で一度出力し、他のツールでglTFに変換する必要はありません。

Export glTF2.0 directly from Maya

This plug-in allows users to export a glTF 2.0 file directly from Autodesk® Maya® (https://www.autodesk.co.jp/products/maya/overview), eliminating the frustration and annoyances of using conventional file transitions like FBX or COLLADA.

How to remove DRM from Ebooks

0

How to remove DRM from your kindle ebooks so you can keep a local backup on your PC as PDF.

  1. Download the following
    1. Kindle for PC (amazon)
    2. Epubsoft DRM Removal: https://www.epubsoft.com/drm-removal.html
    3. Calibre : https://calibre-ebook.com/download_windows
  2. Make sure your books are locally downloaded
  3. Download Epubsoft DRM Removal
  4. Load your ebook (.azw)
  5. Remove the DRM with epubsoft
  6. Open Calibre, load the (.azw) from your converted file
  7. Convert it to PDF using calibre.
  8. Enjoy

Alternative:

https://epubee.com/remove-drm-from-epub-on-adobe.html#download

Maya 2013 FBX export with deformers for 3DSMAX

0

Para exportar desde Maya 2013 a FBX con deformadores, animación per-vertex, una vez que se animó en base a un rig y después se modificó el mesh per vtx.

  1. Seleccionar la geometría que vamos a exportar “Eg. GEO LAYER”
  2. Hacer un Selection Set con el nombre “Export_SET” en el Menú “Create/Sets/Set”
  3. Ir al Menú “Geometry Cache” en “Animation” y seleccionar “Create New Cache”
  4. Con la geometría seleccionada, Ir al Menú “File/Export Selection”
  5. Seleccionar el formato “FBX” y poner las siguientes opciones en el panel de “Options”:
    1. Geometry: Sólo Smooth Mesh Activado
    2. Animation: Animation Activado
    3. Extra Options: Unchecked todo
    4. Bake Animation: Activado con el rango de la animación, Resample Unchecked
    5. Deformed Models: Checked, Skins Checked
    6. Curve Filters: Unchecked
    7. Geometry Cache File: Checked Seleccionar el “EXPORT_SET”
    8. Cameras, Lights: Checked
    9. Units: Automatic
    10. Axis Conversion: Up Axis Y
    11. FBX File Format: Type: Binary, Version FBX 2009

Ésta versión soporta Visibility, bones, skinning y deform cache.

En 3DSMAX al importar el archivo:

  1. Animation: Checked
  2. Animation Take: Take_001
  3. Bake Animation Layers
  4. Point Cache Files: Checked
  5. Deformations, skins morphs: Checked
  6. Cameras, lights: Checked

También éste tutorial para Cinema 4D funciona en MAX al exportar el FBX desde Maya

https://vimeo.com/80665374

 

NOTA: Si no funciona, revisar que estén desactivadas las opciones:

  1. CONSTRAINTS / SKELETON CONSTRAINTS (DESACTIVADAS)
  2. SELECCIONAR JOINTS + MESH a exportar en FBX y listo
    FORMATO 2009 BINARIO

 

No connection to NextCloud. Operation Canceled windows client

0

Cuando el nextlcoud no se conecta y arroja el siguiente error:

“No connection to NextCloud. Operation Canceled windows client

Una de las causas probables es el cambio de contraseñas en el cliente de windows, al tratar de hacer login y recibir el password erroneo un cierto número de veces, el server bloquea la dirección IP y le hace throttling, es decir que bloquea el acceso o lo reduce.

Al revisar el log en el nextcloud, aparece el siguiente error:

Warning core Login failed: ‘username ‘ (Remote IP: ‘aaa.bbb.ccc.ddd’)

Hay dos soluciones, la primera es agregar la dirección IP al whitelist desde los settings web del Nextcloud.

La segunda opción es borrar las tablas de “oc_bruteforce_atttempts” en la que aparecen las direcciones IP que intentaron accesar y fallaron debido al cambio de contraseña. Para eso entramos en Phpmyadmin y corremos la siguiente función en el TAB de SQL dentro de la tabla “oc_bruteforce_atttempts” en la que aaa.bbb.ccc.ddd representa la IP que queremos limpiar:

DELETE FROM oc_bruteforce_attempts WHERE ip = 'aaa.bbb.ccc.ddd';

Le damos Go, y limpia los accesos.