about summary refs log tree commit diff
path: root/src/view/com/util/post-embeds/VideoEmbedInner
Commit message (Collapse)AuthorAgeFilesLines
* Port post embeds to new arch (#7408)Eric Bailey2025-06-1313-1719/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Direct port of embeds to new arch (cherry picked from commit cc3fa1f6cea396dd9222486c633a508bfee1ecd6) * Re-org * Split out ListEmbed and FeedEmbed * Split out ImageEmbed * DRY up a bit * Port over ExternalLinkEmbed * Port over Player and Gif embeds * Migrate ComposerReplyTo * Replace other usages of old post-embeds * Migrate view contexts * Copy pasta VideoEmbed * Copy pasta GifEmbed * Swap in new file location * Clean up * Fix up native * Add back in correct moderation on List and Feed embeds * Format * Prettier * delete old video utils * move bandwidth-estimate.ts * Remove log * Add LazyQuoteEmbed for composer use * Clean up unused things * Remove remaining items * Prettier * Fix imports * Handle nested quotes same as prod * Add back silenced error handling * Fix lint --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
* Video - remove `MediaInsetBorder` when fullscreen (#8476)Samuel Newman2025-06-112-4/+4
| | | | | | | | | * lift up useFullscreen, hide mediainsetborder when fullscreen * Revert "lift up useFullscreen, hide mediainsetborder when fullscreen" This reverts commit 66b17657197e26d9b4c5c951e7cc9eef66519d6d. * just move border outside of div that gets fullscreened
* Share bandwidth estimate between video instances (#8377)Samuel Newman2025-05-302-1/+22
|
* Catch thrown error for autoplay in Safari (#7921)Eric Bailey2025-03-061-2/+10
|
* Plural formatting for `TimeIndicator` `accessibilityLabel` (#7826)surfdude292025-02-241-2/+7
|
* Refine accessibilityHint (#7554)Minseo Lee2025-02-111-3/+3
| | | | | | | | | | | | | | | * `accessibilityHint` * accessibilityHint * Update Co-Authored-By: jason-me <mail@jason-hester.me> * Update LoginForm.tsx --------- Co-authored-by: jason-me <mail@jason-hester.me>
* Remove unnecessary addEventListener call for video (#7433)Islam Rustamov2025-01-141-3/+0
|
* Increase scrubber height if touch device (#7081)Samuel Newman2024-12-121-2/+6
| | | | | | | | | * further increase target area of scrubber * make scrubber bigger if touch device --------- Co-authored-by: Antonio Sarcevic <sarcevicantonio@gmail.com>
* Revert "[Video] Revert safari hackfix (#5367)" (#7001)dan2024-12-071-0/+7
| | | This reverts commit 94e7bfbe40ba6766361caaba99feff74a187613a.
* [a11y] Video - fix labels and make more detailed (#6635)Samuel Newman2024-11-226-7/+23
| | | | | * fix labels and make more detailed * move overall label to parent
* preserve video's last known time when scrolling away (#6239)Andrew Aquino2024-11-191-0/+11
|
* Leverage jsx transform to remove unnecessary react imports and update eslint ↵Paul Coroneos2024-11-191-1/+0
| | | | | | | | | config (#6516) * update eslint config with jsx runtime * leverage jsx transform to remove unnecessary react imports and update eslint config * run yarn lint --fix to remove eslint disables related to react/prop-types that is now disabled
* Attempted video perf improvements (#6519)Samuel Newman2024-11-192-10/+6
| | | | | | | * remove layout animations from video * only show button/spinner when necessary * use native activityindicator rather than loader
* Fix video quality for short videos (#5996)Samuel Newman2024-10-292-13/+36
| | | | | * remove auto level capping * flush first fragment on loop
* [Video] Prevent screen from dimming while in full screen (#5637)Hailey2024-10-071-2/+2
|
* [Video] Revert safari hackfix (#5367)Samuel Newman2024-10-071-7/+0
|
* [Video] use dynamic import for hls.js (#5429)Hailey2024-09-252-10/+50
| | | | Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
* [Video] Refactor HLS logic (#5468)dan2024-09-241-104/+121
| | | | | | | | | | | | | * Extract HLS interop into useHLS * Rename variable * Move flushing outside an effect * use continue instead of return --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
* [Video] Flush low quality segments once focused (#5430)Samuel Newman2024-09-231-8/+69
| | | | | | | | | | | * Update VideoEmbedInnerWeb.tsx * keep proper track and flush properly * consistent current * use current in listener * manually loop
* Use pressable for video controls (#5452)Samuel Newman2024-09-232-14/+19
| | | | | | | * use pressable for video controls * add `as any` to preexisiting bad type * stop mutating prop
* Increase rounding for all embeds (#5421)Samuel Newman2024-09-201-1/+1
| | | | | | | | | | | | | | | | | | | * tweak image styles * fix reply image preview and covert to atoms * increase rounding on media inset border * decrease gap on desktop * fix inset styles * increase rounding on embeds to `md` * Couple edge cases --------- Co-authored-by: Eric Bailey <git@esb.lol>
* [Neue] Buttons (#5406)Eric Bailey2024-09-201-1/+1
| | | | | | | | | | | * Re-align button sizing (cherry picked from commit bcec243bb59dfe468313d98ba61f464d9750feec) * Use large, small, tiny (cherry picked from commit 1dc333c2993ab7f2e0ac750c0670dcec9a7069d0) * Tweaks
* [Video] Additional android fixes (#5373)Hailey2024-09-171-10/+1
| | | | | | | * rm unused code * bump lib * invert bool
* [Video] Fix safari showing spinner (#5364)Samuel Newman2024-09-162-3/+11
|
* [Video] Volume controls on web (#5363)Samuel Newman2024-09-169-902/+1034
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * split up VideoWebControls * add basic slider * logarithmic volume * integrate mute state * fix typo * shared video volume * rm log * animate in/out * disable for touch devices * remove flicker on touch devices * more detailed comment * move into correct context provider * add minHeight * hack * bettern umber --------- Co-authored-by: Hailey <me@haileyok.com>
* [Video] Fix scrubber tap target (#5360)Samuel Newman2024-09-161-2/+4
| | | | | * put padding on correct element * clear timeout on down
* Add context to `Unmute` and `Mute` strings (#5340)surfdude292024-09-151-1/+5
| | | | Co-authored-by: Hailey <me@haileyok.com>
* [Video] Remember mute state while scrolling (#5331)Hailey2024-09-131-8/+7
|
* [Video] Remove `expo-video`, use `bluesky-video` (#5282)Hailey2024-09-132-138/+182
| | | | Co-authored-by: Samuel Newman <mozzius@protonmail.com>
* Image/video border + tweaks (#5324)Eric Bailey2024-09-132-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Image/video border (#5253) * Update AutoSizedImage.tsx * Update AutoSizedImage.tsx * Update Gallery.tsx * Update ExternalLinkEmbed.tsx * Update MediaPreview.tsx * Update UserAvatar.tsx * Update ExternalLinkEmbed.tsx * Update ExternalPlayerEmbed.tsx * Update ExternalGifEmbed.tsx * Update GifEmbed.tsx * Update ExternalGifEmbed.tsx * Update GifEmbed.tsx * Update UserAvatar.tsx * Update ExternalPlayerEmbed.tsx * Update ExternalPlayerEmbed.tsx * video * Update QuoteEmbed.tsx * Tweaks, abstract components --------- Co-authored-by: Minseo Lee <itoupluk427@gmail.com>
* Tabular numbers to video timestamp (#5293)Minseo Lee2024-09-122-3/+3
|
* disable autoplay within messages and trim feelers (#5260)Samuel Newman2024-09-111-1/+3
|
* hls buffering tweaks (#5266)Samuel Newman2024-09-112-1/+11
|
* increase target area of scrubber (#5265)Samuel Newman2024-09-111-1/+1
|
* [Video] make hover state stick around if tapped (#5259)Samuel Newman2024-09-101-3/+37
|
* remove scrollbar-gutter in fullscreen (#5258)Samuel Newman2024-09-101-0/+9
|
* [Video] Fix fullscreen on Chrome (#5246)Samuel Newman2024-09-091-29/+2
|
* Add `context` to `Mute` and `Unmute` labels on video control (#5234)surfdude292024-09-091-2/+2
| | | | Co-authored-by: Marco Buono <thecoreh@gmail.com>
* [Video] Handle push/pop on Android for autoplay (#5194)Hailey2024-09-061-0/+4
|
* [Video] Add disable autoplay for native, more tweaking (#5178)Hailey2024-09-061-3/+0
|
* [Video] Use `expo-video` from fork (#5159)Hailey2024-09-051-2/+2
|
* [Video] throw HLS errors to be caught by error boundary (#5166)Samuel Newman2024-09-051-1/+26
| | | | | | | | | * throw HLS errors to be caught by error boundary * wording tweak * do the same on native * fix type error
* [Video] Disable autoplay option (preview + web player) (#5167)Samuel Newman2024-09-051-5/+10
| | | | | | | | | * rename setting * preview (web) * preview (native) * improve autoplay disabled behaviour on web
* [Video] Add loading state to player (#5149)Hailey2024-09-041-30/+15
|
* [Video] content fit cover on native (#5140)Samuel Newman2024-09-041-1/+1
|
* [Video] Throw error when playback fails (#5132)Hailey2024-09-041-0/+9
|
* [Video] Tweak playback handling (#5127)Hailey2024-09-041-1/+4
|
* reset playback rate on exit fullscreen (#5116)Samuel Newman2024-09-031-0/+1
|
* [Video] Toggle controls when entering fullscreen (#5113)Hailey2024-09-031-1/+4
|
* [Video] Manage foreground/background playback on the native side (#5104)Hailey2024-09-031-25/+4
|