#showcontroller
Explore tagged Tumblr posts
scaryfaggot · 9 months ago
Note
started playing pokemon emerald a while back and ive been naming all the pokemon i catch after my friends/smth related to them. could not think of a more suited person for this one
Tumblr media
help me. Im rather amused by this showcontrols thankyou
3 notes · View notes
scarletiswailing347 · 1 year ago
Note
o/ there's a pretty good, comprehensive guide to sugarcube over here, if you need it: https://manonamora.itch.io/twine-sugarcube-guide
:O! thank you so much :D
2 notes · View notes
the-haiku-bot · 9 months ago
Text
currently watching
parkour civilization
for the first time and
Beep boop! I look for accidental haiku posts. Sometimes I mess up.
currently watching parkour civilization for the first time and
fascinated by how he's choosing to tell the story. and i do mean telling, this is like the opposite of 'show, don't tell'. literally every action is being narrated, and the narrative hops all over the place. this is not a complaint
2. episode 1 vine boom count: 15
1K notes · View notes
felinedetached · 11 months ago
Note
🔪 and 🥐 for the ask game? :]
Hi Spri :3
🔪 ⇢ what's the weirdest topic you researched for a writing project?
I have no idea what counts as weird here I'm not going to lie 😭. I have the entirety of the Cambridge Guide to Gothic Literature on my computer & ended up deep diving into Gothic Architecture because of a Batman fanfic I never finished?
I also went super deep into the history of the Black family back in like 2018 so I can tell you a frankly mildly unhinged amount about which Harry Potter characters are related to who. It gets really incestuous really fast and I think that probably qualifies it for weirdest.
Oh! I was reading bible passages at one point too.
🥐 ⇢ name one internet reference that will always make you laugh 
I'm pretty sure there's not something that'll always make me laugh because my humour changes wayyyy too quickly but currently the "In exchange for free housing I will be your personal dinosaur for one year" craigslist ad has been sending me.
Writers truth or dare asks!
1 note · View note
fairytalesfromthesmp · 11 months ago
Text
Settle into your seats, folks, we’ve got some new stories to tell. We are proud to present…
Fairytales from the SMP: Volume II
This year’s storybook consists of twelve incredible fairytales reimagined by a few wonderful minds of the dsmp fandom! Follow some of your favorites through tales of family, friendship, romance, and more as we dive into this spellbinding collection.
Thank you to everyone who made this possible! To all the writers, artists, betas, and backups, this wouldn’t have been possible without you. Thank you to the mods, new and old, and thank you to all who joined us in this journey, come and gone. You’ve all made this worthwhile!
Be sure to give lots of love to all these people because without them, this collab would be nothing more than a dream!
Little Red Riding Hood - Written by Ocean ( @bottleofchaos ), Illustrated by Taizi ( @rebelwithoutabroom ) and Yumi ( @mahikamihan )
Snow White & The Seven Dwarves - Written by Stardust ( @chasing-stardust-22 ), Illustrated by Ocean
Hansel and Gretel - Written by Day ( @day-time-dream ), Illustrated by Zuzu ( @zuzypiia ) and Orange ( @fresh-flames )
Jack and the Beanstalk - Written by Lupine ( @iced-sweet-dt ), Illustrated by Michy ( @michygranger23 )
The Tortoise and the Hare - Written by Blank ( @blankerthought ), Illustrated by Calder ( @day-mark ) and Curo ( @curoopeez )
Robin Hood - Written by Scoops ( @scoops404 ), Illustrated by Thal ( @thal-chandra ) and Root ( @rutadales )
Prince and the Pauper - Written by Cadence ( @dwtdog ), Illustrated by Blank
The Seal Catcher - Written by Chelsey ( @czargasm ), Illustrated by Bicho ( @bicho-callejero ) and VoidPidgeon ( @voidpidgeon )
The Three Musketeers - Written by Amie/Bagel ( @bagelrites ), Illustrated by Litchi ( @llitchilitchi ) and Vi ( @icecreamvi )
Beauty and the Beast - Written by Taizi, Illustrated by VoidPidgeon and Wolflyn ( @wolflyndraws )
The Unwilling Mermaid - Written by Sword ( @swordfright ), Illustrated by Root and Kenjo ( @kenjo-arts )
Rapunzel - Written by Crow ( @mello-when-hi ), Illustrated by Calder and Shishi ( @shishi-neraoiba )
Beta Readers: Echo ( @timetravelkoolaid ), Luna ( @milktearosethorn ), Scrims ( @scrimblyprimbly ), Lobelia ( @unholy-virtue ), Vee ( @twirlybumblevee ), Spri ( @showcontrols ), and Jinx ( @nyxcandie )
Backups: Backup Writer Rav ( @raviolihailstorm ), Backup Writer Lobelia, and Backup Artist Harmony ( @harmingharmony )
122 notes · View notes
harmonyos-next · 3 months ago
Text
HarmonyOS NEXT Practical: Play Video
Objective: To achieve the playback, pause, end playback, reset, and jump to specific positions for video components.
The Video component is used to play video files and control their playback status, commonly used for short video and internal video list pages in applications. When the video appears in its entirety, it will automatically play. When the user clicks on the video area, it will pause playback and display a playback progress bar. By dragging the playback progress bar, the video can be played to a specific location. Please refer to the video for specific usage.
Load video resources The Video component supports loading both local and network videos.
Add attribute The Video component properties are mainly used to set the playback format of the video. For example, setting whether to mute video playback and whether to display control bars during playback.
Event call The callback events of the Video component mainly include playback start, pause end, playback failure, playback stop, video preparation, and operation progress bar. In addition, the Video component also supports calling general events such as click, touch, etc.
Video Controller Usage The Video Controller is mainly used to control the status of videos, including playing, pausing, stopping, and setting progress. For detailed usage, please refer to the VideoController user manual.
Default controller: The default controller supports four basic functions of video start, pause, progress adjustment, and full screen display.
Custom controller: To use a custom controller, first turn off the default controller, and then use components such as buttons and sliders for custom control and display, suitable for use in scenarios with strong customization.
others The Video component has already encapsulated the basic capabilities of video playback, and developers do not need to create video instances or set up video information. They only need to set up data sources and basic information to play videos, which has relatively weak scalability.
Actual combat: VideoPage [code] @Entry @Component struct VideoPage { @State videoSrc: Resource = $rawfile('video_demo.mp4') @State previewUri: Resource = $rawfile('video_preview.jpg') @State curRate: PlaybackSpeed = PlaybackSpeed.Speed_Forward_1_00_X @State isAutoPlay: boolean = false @State showControls: boolean = true @State isShortcutKeyEnabled: boolean = false controller: VideoController = new VideoController()
build() { Column() { Video({ src: this.videoSrc, previewUri: this.previewUri, currentProgressRate: this.curRate, controller: this.controller }) .width('100%') .aspectRatio(16/9) .autoPlay(this.isAutoPlay) .controls(this.showControls) .enableShortcutKey(this.isShortcutKeyEnabled) .onStart(() => { console.info('onStart') }) .onPause(() => { console.info('onPause') }) .onFinish(() => { console.info('onFinish') }) .onError(() => { console.info('onError') }) .onStop(() => { console.info('onStop') }) .onPrepared((e?: DurationObject) => { if (e != undefined) { console.info('onPrepared is ' + e.duration) } }) .onSeeking((e?: TimeObject) => { if (e != undefined) { console.info('onSeeking is ' + e.time) } }) .onSeeked((e?: TimeObject) => { if (e != undefined) { console.info('onSeeked is ' + e.time) } }) .onUpdate((e?: TimeObject) => { if (e != undefined) { console.info('onUpdate is ' + e.time) } }) .onFullscreenChange((e?: FullscreenObject) => { if (e != undefined) { console.info('onFullscreenChange is ' + e.fullscreen) } }) Row() { Button('播放').onClick(() => { this.controller.start() // 开始播放 }).margin(2) Button('暂停').onClick(() => { this.controller.pause() // 暂停播放 }).margin(2) Button('结束播放').onClick(() => { this.controller.stop() // 结束播放 }).margin(2) } Row(){ Button('重置视频').onClick(() => { this.controller.reset() // 重置AVPlayer }).margin(2) Button('跳至第10秒').onClick(() => { this.controller.setCurrentTime(10, SeekMode.Accurate) // 精准跳转到视频的10s位置 }).margin(2) } }
} }
interface DurationObject { duration: number; }
interface TimeObject { time: number; }
interface FullscreenObject { fullscreen: boolean; } [/code]
0 notes
arakmusic · 7 years ago
Video
I Rhyme because I LOVE to Rhyme I Share because I LOVE the Culture #grownmanrap #bars #emcees #lyricist #rhyming #gettoknowme #youtube #arakvybez #showcontroller #passion #purpose #thecraft #thehealthyalternative #timein #gracious #edutainment #forthelove #fortheculture #forthepeople https://www.instagram.com/p/BWZrVixH0h5/?utm_source=ig_tumblr_share&igshid=qoytct9zmhfk
1 note · View note
spookystew · 3 years ago
Note
spooky do you no longer have tiny weapons
no spri so sorry. had to throw them away to save space Also because i kept stepping on them
14 notes · View notes
oceantail-oceantail · 3 years ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Shine your love, show your light Pull me out from the endless night It's something cosmic It's symbiotic
Tumblr media Tumblr media
Now the time has come, pack your true belongings. Fill your heart with love, travel is homecoming. When the night comes, you will arise, the stars in the sky will lead you back home.
Tumblr media Tumblr media Tumblr media
...once upon a time, there was a player. (and the universe guides him home.) [x]
[for @showcontrols]
fruitninja & color palettes - art by @calwasfound // old world underground (where are you now?) - fic by @spookystew // "Bravado" - song by Yoke Lore // gif by wheresnate // Of Your Starlight - fic by @oceantail-oceantail // "SYMBIOTIC" - song by STARSET // screenshot from MCC 15 - illumina1337 // how rare and beautiful it is to even exist - fic by Anonymous // "When You Go" - song by Celtic Woman // quote by Hanya Yanagihara // Prismatic Sketches of Hands and Faces - art by Lui Ferreyra // freefall - fic by @showcontrols // post by @s3er
115 notes · View notes
scaryfaggot · 3 years ago
Note
hey wilbur how are you doin. i brought another blob for you this one is called popcorn
Tumblr media
What flavor is he <IMPORTANT. answer quickly now showcontrols
7 notes · View notes
heartbeatsabotage · 3 years ago
Text
Gravity
please do not edit/repost/upload anywhere. reblogs appreciated. 1500 words.
It’s all stories, of course, make believe meant to scare children away from straying too far from home. It has to be, it’s simply too absurd to be true. Skies of neither sun nor stars, only miles and miles of darkness in every direction over a suspended island; beings twice as tall as a man that spoke in unfamiliar grating languages, friendly enough lest one dared look them in the eye; ships that sailed through the air rather than the seas; a great dragon that breathed not fire but magic, so thick it would burn your eyes, threaten to choke you, set the ground alight under your feet. It’s far, far too impossible to be true.
Some claim to have seen it, though. They’re the ones that tell the stories- stories that are so unbelievable they can’t be real, but told by those you wouldn’t dare disbelieve. There’s something about them that makes you trust them, but it’s not a feeling anyone can ever explain. The storytellers themselves deny any claim of being anything more than perfectly normal, and when they say it, you believe them, but when you remember them later, you know they were anything but. Some people call them world-hoppers. Some, simply Runners. But the inhabitants of every world they visit calls them heroes. No one knows for sure until they’re gone, until the end is freed, until balance is restored, until the Runner moves on to the next world, and then the next, and the next. They see things no one else could ever imagine.
Still, though, it’s not impossible to surprise a Runner. Illumina knows this very, very well. He’s well aware of his own limits, of his place in the Universe, he knows better than to believe he’s seen everything, experienced everything, even if sometimes, things that once were startling and new become routine. Times change, methods change, new friends and foes alike come and go, but the chase remains the same. Enter a world. Gather supplies. Find the End. Defeat the Dragon. Step through the portal, listen to whatever the Universe has to tell you, and continue to the next world. Routine, all of it, but the portal, the Universe, never fails to catch him by surprise, despite being well aware of what’s coming.
There’s very few constants in his life despite his routine. Terrain, weather, dimensions and structures and Luck itself all falling in around him with random chance. Even the sun isn’t constant, disappearing once he starts opening portals- the nether has no sun, nor does the End. Gravity, though, is something that never changes. There’s no chance there, no variables, no RNG. Gravity keeps his feet on the ground no matter what that ground is made of, returns him to solid land when he’s flung into the air by the beat of the dragon’s wings, pulls him downward through lava as he struggles through it with the sharp smell of fire resistance lingering on his skin. His feet stay planted on the obsidian of the portal into the nether. He jumps through the end portal frame, and falls through the swirling stars straight down onto end stone. Constant, trustworthy, ever-present, until it isn’t. The second portal in the End, the one at the base of the fountain that opens readily for him without the dragon’s magic sealing it shut, isn’t like the one he used to enter the realm. That was simply a door between dimensions, allowing him to pass from the overworld to the end. This portal opens into the Universe itself.
He knows what’s coming. He’s done this a hundred, a thousand, a million times before. The sound of shattering magic fills the air, the remanants of the dragon’s power scattering into the void, and he puts out the remaining fires around him while he waits for enough of that magic to return to the world to open the portal for him. And it does open, exactly as expected, with a familiar hum, and he takes a breath before stepping of the edge into the sea of stars.
It takes a moment. It always does. Gravity pulls him down into the portal, and then down a moment longer, and then it simply… doesn’t. It never gets any more familiar, if he hasn’t gotten used to it yet he’s sure he never will- the feeling of falling without moving, of weightlessness warring in his mind with the heaviness in his limbs. He keeps his eyes closed, knowing from experience how disorienting it would be to open them- it’s not as though he’ll be able to see anything, it’ll only lead to portal sickness once he gets out, gets home, and that’s embarrassing. He doesn’t need to see. He keeps his hands curled into fists, focusing only on the way his fingers press into his palms, nothing else. To do otherwise is simply more sensory input his mind is incapable of processing- of falling and floating, stillness and moving air and the Universe’s embrace all at the same time. He caught his breath from the fight with the dragon before he entered, and he keeps his breathing shallow now, paying more attention to the rise and fall of his chest than the act of breathing. Too deep, and it feels like his lungs are filled with the same nothingness that surrounds him, and that specific automatic response- he’s not sure if it’s more drowning or suffocating- is hard to control. His senses don’t matter here. They weren’t made for this. And yet the Universe grants it to him anyway. It carries him safely between worlds, it tells him he’s done well, it tells him of other worlds and things beyond his comprehension even still, and it tells him that he is loved.
His senses don’t matter here, he can’t trust them, but there is an undeniable warmth in being so close to the Universe itself. It wraps around him, curls up into his chest, settles between his ribs and spreads outwards. It’s a comfortable warmth, somehow, though he’s sure if it were truly heat it would be unbearable, searing the Universe’s words into his skin, but it doesn’t, merely whispers them, from across the length of galaxies and from right beside him and from inside his own head, and he listens. He listens, as the void around him slowly shifts into something more familiar, but still he keeps his eyes closed. He listens as his senses begin to realign with what he expects, as the Universe surrounds him, fills him, inside of him and under his skin, and gravity returns slowly to remind him of which way is up. The Universe slowly releases him, having carried him safely through the endless void, but it never fully leaves- he can feel it, fragments of the Universe itself, reminding him he isn’t alone. He’s never alone. And those fragments grow with every trip through that portal at the base of the fountain, so much so that sometimes he thinks he can feel the Universe even outside of this void, but it isn’t a bad thing. It’s neither good or bad, it simply is, and he chooses to let it remind him of the good. Of companionship, of love, even when he’s alone.
Finally, it tells him to wake up, and everything snaps sharply back into place. His feet find the ground and he stumbles forward a step, regaining his balance and opening his eyes to squint against the brightness of the setting sun. He can’t help but feel just the slightest bit jealous of his friends with wings to catch them when the Universe releases them, their reappearances are always so much more graceful than his own. The remnants of the Universe inside him echo with the same energy as the sunset, the same pace as his footsteps, as he finds his way down a well-worn path towards the sound of voices, ready to enjoy his own world, long since saved, alongside those he loves most. There will be other worlds, there’s always more to save, but tonight is a celebration, a victory, a few seconds of time shaved off a challenge that never ends, competing with himself and each other and the Universe itself. They refuse to stop, but so does everything else, the world and the Universe keeping pace alongside them no matter what- but at the end of it all, there’s always home, always somewhere to return to, and a gravitational pull bringing him back no matter how far he goes.
25 notes · View notes
pyromagic-de · 6 years ago
Photo
Tumblr media
Den LASERWORLD Showcontroller gibt es in allen Varianten bis zum 31.01.2019 zum Sonderpreis. Die Preise erhalten Sie bei mir bis zum Ende der Aktion auf Anfrage. #laserworld #showcontroller #pyromagicde #pyromagicnr (hier: Pyromagic Inh. Ingo Bischoff) https://www.instagram.com/p/B6MTdfcIcTj/?igshid=ziqstmi9kwm2
0 notes
cobble-stone · 4 years ago
Note
cobaaalt what are your thoughts on etho's shopping addiction being a coping mechanism due to the events of 3rdlife/last life? :0
ohhhh i can TALK about this. sparks many thoughts. head so incredibly full.
it's comforting, the safety of having access to everything. it's the appeal of creative mode for many etho was never a creative mode player, but he had so much that he might as well have been, right? freedom to repair and rebuild and reconstruct and respawn whenever he needed.
and that comfort was easily stored in the form of his roommate's generous gifts of the shiny blue diamonds. those diamonds are the key to unlimited resources, to the unending ability to have whatever he needs.
on third life he didn't get that luxury.
he didn't get the luxury of what he needed, he had to make-do with wool walls and flimsy armor, with every scrap of food being worth more than gold, with every day having the possibility to be his last. he couldn't stop by a local store and restock, he didn't have the resources to replant his trees and rebuild his home. everything burned away instead, including himself.
no wonder he's so quick to pick up on deals, the first thing he did when he got the chance was stockpiling shulkers from the pass n' gas. "i just can't resist a good deal!" he'll say, because these deals are temporary, and he needs to use his resources wisely, doesn't he? after all, they were so finite so shortly ago.
maybe it made him a shopaholic, a hoarder, but he had every right to be. you never know when everything you own can be burnt to the ground.
lives in Hermitcraft are infinite. but he still flinches upon seeing a death message. the luxury of revival was one he had to live without for so long, one he lost so much due to. he wonders if there's a totem shop somewhere on the continent.
16 notes · View notes
mire022 · 4 years ago
Note
ive been convinced to give orv a try, this is entirely your fault mire /lh
OMGGGGGG!!!!!!!! IM SO EXCITEDDDDD!! IM ALSO SP SORRY FOR FLOODING YOUR DASH WITH ORV CONTENT HAJSJSJWBWJ. Im actually happy now, cant believe you are interested in orv, thank you for the ask
9 notes · View notes
darlington-v · 4 years ago
Note
hi, not sure if you've seen it, but i've posted the rec list :>
HI!!! SORRY I WAS ADDING ESSAYS
BUT
HOLY SHIT???? IM LOSING IT
when you said tag i thought you meant add me to a TAGS list IM LOSING IT
THANK YOU SO MUCH THOUGH HOLY FUCK!!!!!
THIS MEANS A LOT TO ME WHAT HTE FUCK?? im always really bad for looking for fics myself bc i have a low patience and low attention span so this is great!!!! :)
here's the post in question!! ill be reblogging it after i post this tho so yeah!! :D
6 notes · View notes
aetheralsys · 4 years ago
Note
idk what sort of au your anons are building here but its incredible
it is I enjoy watching
2 notes · View notes