Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Speed up recording after generating gif #36

Open
tudosxxx opened this issue Mar 9, 2023 · 2 comments
Open

Speed up recording after generating gif #36

tudosxxx opened this issue Mar 9, 2023 · 2 comments

Comments

@tudosxxx
Copy link

tudosxxx commented Mar 9, 2023

Added this widget on the videoplay, then recorded, and the final generated gif speeded up

`

SizedBox(
width: w-80,
height: h-80,
child: ListView.builder(
itemCount: h~/10 - 8,
padding: EdgeInsets.zero,
physics: const NeverScrollableScrollPhysics(),
shrinkWrap: true,
itemBuilder: (context,index){
return SizedBox(
height: h/10 - 8,
child: ListView.builder(
itemCount:w~/10 - 8,
padding: EdgeInsets.zero,
physics: const NeverScrollableScrollPhysics(),
shrinkWrap: true,
scrollDirection: Axis.horizontal,
itemBuilder: (ctx,ind){
return ClipRRect(
child: Container(
width: w~/10 - 8,height: h~/10 - 8,
color: listcolor[Random().nextInt(listcolor.length-1)],
child: Stack(
children: [
Positioned.fill(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 10, sigmaY: 10),
child: Text(''),
)
),
],
)
),
);
},
),
);
},
),
)

`

@tudosxxx
Copy link
Author

tudosxxx commented Mar 9, 2023

41551922
I test,too many widget will speed。

@tudosxxx
Copy link
Author

tudosxxx commented Mar 9, 2023

Strangely, it is shown in my app that it is accelerated. Save it to Samsung mobile phone, and the album will open normally. Move to the computer window and open it to see if it is accelerated. Now the web page looks normal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant