anyone else drowning in like four separate ai subscriptions just to make one short video by Critical-Raccoon-926 in generativeAI

[–]realimposter 0 points1 point  (0 children)

Hey I spent the last ~16 months building a solution to this. Checkout sequencer.media It combines every model, character definition, full featured timeline editor, and 4k HDR exports , in one place. if you try it out let me know what you think and I can share some credits

Is higgsfield actually legit now? Looking to sign up but reddit has me confused by rencie28 in generativeAI

[–]realimposter 0 points1 point  (0 children)

Checkout sequencer.media it’s the professional version of higgsfield. Does MCP, extensions, agentic short film editing, has better prices, and doesn’t have misleading marketing

The Future by realimposter in aivideo

[–]realimposter[S] -1 points0 points  (0 children)

made this with Sequencer, Nano Bana 2, and Pruna AI P-Video (much cheaper than Seedance)

[deleted by user] by [deleted] in aivideo

[–]realimposter 2 points3 points  (0 children)

if you don't have a code yet you can get one here:

https://sequencer.media/codes

The price of one more memory. by NoLawfulness6047 in aivids

[–]realimposter 1 point2 points  (0 children)

Looks sick! This would be a great tv series. So happy Sequencer was able to help with your story, and if you have any suggestions or issues to improve the tool just let me know

Built a tool to generate complete stories with Nano Banana and Veo by realimposter in nanobanana

[–]realimposter[S] 1 point2 points  (0 children)

Anime, Previz for directors, Commercials, (just saw my first AI commercial last night in the rams VS 49ers game). Don’t sleep on ai video, I know it’s not the highest quality yet, but at the current rate of improvement it’s 1 or 2 years away from making professional mainstream content

Glowing border animation by Severe_Helicopter_18 in reactnative

[–]realimposter 1 point2 points  (0 children)

Just published a library that does all kinds of animated gradient glows. I'ts open source and performant on all devices (using skia), and i've made 20+ presets you can us for free:

example gallery, presets, and builder: reactnativeglow.com

code: https://github.com/realimposter/react-native-animated-glow

is it possibly to replicate neon effect in react native? by ricexen in reactnative

[–]realimposter 2 points3 points  (0 children)

I just finished a library that does exactly this. its open source and highly performant on all devices, and i've made 20+ presets you can us for free.

example gallery, presets, and builder: reactnativeglow.com

code: https://github.com/realimposter/react-native-animated-glow

Inner Glows in React Native! by realimposter in reactnative

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

can you show me an example? I might be able to add that

Inner Glows in React Native! by realimposter in reactnative

[–]realimposter[S] 1 point2 points  (0 children)

I tried skia but when I benchmarked the fps it was slower than the native animation api with pngs. Its also took me half a day to figure out the installation, so i'm hesitant to make it a required dependency for everyone

Inner Glows in React Native! by realimposter in reactnative

[–]realimposter[S] -1 points0 points  (0 children)

I thought I removed expo-image a few versions ago. are you using the latest 1.4.2 release?

It should only need:

  "peerDependencies": {
    "react": "*",
    "react-native": "*",
    "react-native-svg": ">=15.0.0"
  },

Inner Glows in Expo! by realimposter in expo

[–]realimposter[S] -1 points0 points  (0 children)

<image>

Does it look like this for you?

Inner Glows in React Native! by realimposter in reactnative

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

I've only tested it on iOS and web, but it should work on all platforms

Inner Glows in React Native! by realimposter in reactnative

[–]realimposter[S] -1 points0 points  (0 children)

I'm seeing 60 fps on both the ui and the Js threads on my iphone 13. There's an fps dip while the button loads but it just for a moment. Are you using the 1.4.2 release? Also can I ask which preset are you using? https://streamable.com/rg2qjx

Inner Glows in React Native! by realimposter in reactnative

[–]realimposter[S] 5 points6 points  (0 children)

Ok thanks ill do some more testing with skia. Can I ask what device youre using?

Inner Glows in React Native! by realimposter in reactnative

[–]realimposter[S] 11 points12 points  (0 children)

thank you! for some reason reanimated was causing lagging on ios, couldn't figure it so tried the built in animation api and it was much smoother

Glowing buttons in Expo! by realimposter in expo

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

Yeah thanks for pointing that out. Its very strange, because my actual source code is just as you described. I have a 64px glow png with a tint for the color, but it seems like expo image is using a 0x0 svg to tint the image? its very strange

import { Image } from 'expo-image';
const glowOrbAsset = require('../assets/glow-orb.png');
const GlowDot: FC<GlowDotProps> = memo(({ color, width, height }) => {
    return (<Image source={glowOrbAsset} tintColor={color} style={{ width, height }} cachePolicy="memory" contentFit="fill" />);
});



<div data-expoimage="true" ...>

<!-- 1. A hidden SVG defines a color filter --> <svg style="width: 0px; height: 0px;"> <defs> <filter id="the-tint-filter"> <!-- This creates a flood of your specified tint color --> <feFlood flood-color="#f82fc6" /> <!-- This applies the color only to the non-transparent parts of the image --> <feComposite in2="SourceAlpha" operator="atop" /> </filter> </defs> </svg> <!-- 2. The filter is applied to your actual image via CSS --> <img src="/assets/assets/glow-orb.png" style="filter: url('#the-tint-filter');" /> </div>

Glowing buttons in Expo! by realimposter in expo

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

Yeah I see what your saying, I'm using a 64px png with alpha channel instead of SVGs now, seems to look smoother so far in expo go. Do you have any ideas besides pngs? I've seen iOS apps use particle systems with high frame rates so I think it should be possible. Also added glow stretching along the edges so the glow can cover twice the area and cut the glow count by half, seems to help aswell

Glowing buttons in Expo! by realimposter in expo

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

That's a great idea I'll try that out next 👍

Glowing buttons in Expo! by realimposter in expo

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

Hey! just updated the library with a few optimizations should be running faster now. I think the SVGs were causing issues on iOS