There seems to be a problem when the Collada file (.dae) uses the same .jpg image multiple times, like
<library_images>
...
<image id="ID2135">
<init_from>untitled/texture_1.jpg</init_from>
</image>
<image id="ID2148">
<init_from>untitled/texture_2.jpg</init_from> <== same .jpg
</image>
<image id="ID2256">
<init_from>untitled/texture_2.jpg</init_from> <== same .jpg
</image>
</library_images>
The converter gives no errors but when it tries to display the model you get an error: "RuntimeError: Failed to load image: blob:https%3A//
cesiumjs.org/untitled/texture_2.jpg". This only happens with 'regular' gltf, conversion to Binary gltf works fine.
In the .gltf there is a reference to the missing file, that was not converted to a "data:image/jpeg;base64...." like the other ones:
"ID2256": {
"uri": "untitled/texture_2.jpg"
}
I edited the .gltf to replace the uri to fix this. I suspect it is a bug in the converter, the .dae file is shown without problems in Visual Studio.
Thanks, Willem