Record and display videos
Summary: This diff adds one more section in the Support Screen V2. This section records and displays the emulator screen. Right now the videos are stored at the very same location where our currently recorded videos are stored. For displaying them on UI I have used `react-player` dependency. For the upload bit: I will see how the exisiting e2e tests upload videos and if we can use their approach. Or else we can just upload videos on everstore and export its handle as part of flipper trace. The last resort can be to base64 encode it along with the trace. Reviewed By: mweststrate Differential Revision: D18460779 fbshipit-source-id: 8ddd51f59e5237a1a80f05bf90dfc3bead651143
This commit is contained in:
committed by
Facebook Github Bot
parent
d2ab55a6f8
commit
8afc1b67f3
@@ -37,7 +37,7 @@ type State = {
|
||||
capturingScreenshot: boolean;
|
||||
};
|
||||
|
||||
async function openFile(path: string | null) {
|
||||
export async function openFile(path: string | null) {
|
||||
if (!path) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user