I would like to know if it's possible to play a live video, from a webcam for example, in a texture in Scaleform?
Thanks.
Scaleform Play a live video in texture?
192 views Asked by SteveTJS At
1
There are 1 answers
Related Questions in VIDEO
- Media player stops about every 5 minutes
- Video Format is not supported or source is unavailable. - Opera
- How to get text and other elements to display over the Video in Tkinter?
- Can I use local resources for mp4 playback?
- Merge (concat) all video file present in '43. DP (Part1)' and put it into '43. DP (Part1)' and give name merged (concat) file to folder name
- Google Chrome is consuming a lot of CPU on a video call?
- How do I automate a video download with Selenium and Python (Meta Quest Store Trailer Download)
- Safari skipping 5 seconds into react-player video - anyone have experience with this?
- Why is toDataURL() returning blank image? (with p5 video)
- How do I circular crop using matlab?
- Cannot find 'IsacCodec' in scope
- playing multiple videos with libvlcsharp on multiple monitors
- Video controls are hidden behind input feature?
- Anyone around Good at both Javascript and Youtube api?, I am using lite-youtube js and I am confused in adding an eventlistener for onStateChange
- videos are resizing themselves while scrolling
Related Questions in TEXTURES
- LibGDX Normal Textures Not Showing Up in 3D (Blender) Model Java
- A way to warp an image based on a map
- Cracks in my automatic texture in Unreal engine 5
- Threejs .glb loading textures issue, texures not loaded
- Which format should be more smooth for complex R8 textures - BC4 or BC7?
- Unity render Texture is not as clear as the actual gameobject in the scene, how to make it clearer?
- Anyone else notcing delays of shared d3dtexture2D betweeen two processes?
- How to ensure the background texture joins up smoothly around sphere in Three.js?
- Update node's physicsbody with texture animation?
- Transfer GL_TEXTURE_2D Image to GL_TEXTURE_CUBE_MAP
- Converting Texture Atlas exported from Adobe Animate to Images
- WGPU: How to change max_bind_groups/device bind group limit?
- How to calculate Uvs from texture atlas?
- Downloaded model has no materials or textures
- Three.js Y Axis Offset for Equirectangular Image Not Working
Related Questions in VIDEO-CAPTURE
- What I'm I doing wrong with my custom video controls
- Video Emulation solution
- How to retrieve, process and display frames from a capture device with minimal latency
- In Swift, videos appear if I take a video, but not appearing if I have just taken an image
- How to clean the packets of AVFormatContext?
- Capturing video using raspberry pi with 64 bit OS
- Is there a way to intercept webcam "TakePhoto" trigger button in Windows Media Foundation?
- Meaning of VideoCapture prop definitions not in the opencv documentation
- an efficient for loop for this program
- Why is there a discrepancy in CVImageBufferYCbCrMatrix between full range and video range formats?
- Optimizing Real-time Video Frame Capture Python/cv2
- Using OpenCV to read input from Capture Card
- SIPSorcery WebRTC receive and save video stream to file
- HDMI input in laptop through USB 3.1 type c or USB A 3.0
- EmguCV VideoCapture no frame incoming after execution a while
Related Questions in SCALEFORM
- Unreal development kit scaleform error "Actionscript version mismatch"
- Actionscript 3: How can I change the name property of content returned by Loader.load()? Error 1074
- AS3 PNG Encoder without BitmapData
- TextField switches to original default text format on focus, even after I change default text format
- C++ Namespace conflicts between 3rd party headers
- Link Scaleform to build applications in Qt Creator
- Scaleform Play a live video in texture?
- Scaleform BitmapData: Invalid Bitmapdata
- Scaleform GFx integration with OpenGL
- scaleform 4.4.30 questions about opengl
- How do I have a Flash bitmap fill be the same scale even if I resize or stretch the object?
- AS2: Conflict between mouse events on a symbol and child symbol
- actionscript 2 collision detection
- Havok Vision Game Engine: Compiling Autodesk Scaleform For Android in Visual Studio
- Scaleform - Actionscript not calling Fscommand
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
To do this, you just need to replace the appropriate image inside the swf, with one that wraps the texture that contains your video.
You will need to have your video texture in a texture from the graphics API you are using (for example, in DirectX 11, you'd need an
ID3D11Texture2D). You can create a Scaleform wrapper image around this, using theTextureImageclass. You then need to find the resource within the SWF which you want to replace, and set the wrapper image as its image. Finally, you need to callForceImageUpdateon the GFx::Movie, to propagate the texture change.When you update the underlying
ID3D11Texture2D(eg. with a new frame), the image in the Scaleform movie will also change. An example of how to do all this is shown within the TextureInSWF sample, which is a little more thorough than this code. If you have the XBoxOne SDK, there is also a KinectInSWF sample, which shows how to do this with the Kinect Camera (eg. a live video camera).