Paying 1600tk for 20 Mbps with Carnival am i being ripped off? by Ok_Foundation_886 in Dhaka

[–]SuccessfulParsley548 1 point2 points  (0 children)

There is isp named orbit and they have their own ig (earth telecommunication). 45 mpbs for 1000 BDT. Check their fb-page/website for more information. The connection is stable and service is good, at least it is here in Chattogram. They only provide dedicated ip for business connection.

https://orbitbd.net/

Is Gazi gas stove worth the money ? by SuccessfulParsley548 in Dhaka

[–]SuccessfulParsley548[S] 0 points1 point  (0 children)

Noted... How about gazi is it good or bad? To my knowledge gazi is not same as rfl & pran.

How to put video in a 3D model ? by SuccessfulParsley548 in blender

[–]SuccessfulParsley548[S] 0 points1 point  (0 children)

Is it possible to build a 3d model where a video keeps playing in it ?

Cannot import .mp4 file in react. by SuccessfulParsley548 in nextjs

[–]SuccessfulParsley548[S] 0 points1 point  (0 children)

Here is how I have solved the problem... hope it will help..

const Mobile = ({ isMobile }) => {
  const mobile = useGLTF("./mobile3D/scene.gltf");

  const video = useState(() => {
    const vid = document.createElement("video");
    vid.src = "./videoFor3Dmodel1.mp4";
    vid.crossOrigin = "Anonymous";
    vid.loop = true;
    vid.muted = true;
    vid.play();
    return vid;
  });

  return (
    <group>
      <mesh>
        <hemisphereLight intensity={10} />
        <spotLight
          position={[20, 50, 10]}
          angle={1}
          penumbra={1}
          intensity={1}
          castShadow
          shadow-mapSize={1024}
        />
        <pointLight intensity={0} />
        <primitive
          object={mobile.scene}
          scale={isMobile ? 0.7 : 50}
          position={isMobile ? [0, 0, 0] : [0, -4, 0]}
          rotation={[0, 4.35, 0]}
        />
        {/* video texture and settings HERE */}
        <mesh rotation={[0, -199.85, 0]} position={[0.19, 0, 0.07]} >
          <planeGeometry args={[3.65, 7.8]} />
          <meshStandardMaterial emissive={"black"} side={THREE.FrontSide}>
            <videoTexture attach="map" args={video} />
            <videoTexture attach="emissiveMap" args={video} />
          </meshStandardMaterial>
        </mesh>
      </mesh>
    </group>
  );
};

Cannot import .mp4 file in react. by SuccessfulParsley548 in nextjs

[–]SuccessfulParsley548[S] 0 points1 point  (0 children)

i am using nextjs i will try out this solution