Animate AVPlayerLayer transform propertyHow do I apply a perspective transform to a UIView?Cancel a UIView animation?AVPlayerLayer animates frame changesAnimate AVPlayerLayer videoGravity propertyFullscreen: AVPlayerLayer is not resized when resizing its parent viewHow do I animate constraint changes?Setting videogravity on avplayerlayer without animation effectAVPlayerLayer shrink animationAVPlayerLayer shows black screen but sound is workingAVPlayerLayer Popgesture Glitch
IndexOptimize - Configuration
Fried gnocchi with spinach, bacon, cream sauce in a single pan
What does it mean to have a subnet mask /32?
How to refer to a regex group in awk regex?
How to compare two different formulations of a problem?
Co-author responds to email by mistake cc'ing the EiC
Solve a logarithmic equation by NSolve
Efficiently pathfinding many flocking enemies around obstacles
Have only girls been born for a long time in this village?
Why didn’t Doctor Strange stay in the original winning timeline?
Are required indicators necessary for radio buttons?
If all stars rotate, why was there a theory developed, that requires non-rotating stars?
How would one country purchase another?
How does turbine efficiency compare with internal combustion engines if all the turbine power is converted to mechanical energy?
Vacuum collapse -- why do strong metals implode but glass doesn't?
When translating the law, who ensures that the wording does not change the meaning of the law?
Can my boyfriend, who lives in the UK and has a Polish passport, visit me in the USA?
Why doesn't the Falcon-9 first stage use three legs to land?
Brexit and backstop: would changes require unanimous approval by all EU countries? Does Ireland hold a veto?
Why did MS-DOS applications built using Turbo Pascal fail to start with a division by zero error on faster systems?
Can a character spend multiple hit dice at level 1?
What is the evidence on the danger of feeding whole blueberries and grapes to infants and toddlers?
Concatenation of the result of a function with a mutable default argument in python
Ask for a paid taxi in order to arrive as early as possible for an interview within the city
Animate AVPlayerLayer transform property
How do I apply a perspective transform to a UIView?Cancel a UIView animation?AVPlayerLayer animates frame changesAnimate AVPlayerLayer videoGravity propertyFullscreen: AVPlayerLayer is not resized when resizing its parent viewHow do I animate constraint changes?Setting videogravity on avplayerlayer without animation effectAVPlayerLayer shrink animationAVPlayerLayer shows black screen but sound is workingAVPlayerLayer Popgesture Glitch
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I wan't to reproduce Live Photo zoom effect with AVPlayerLayer
. For this purpose I use VideoView
:
class VideoView: UIView
override class var layerClass: AnyClass
return AVPlayerLayer.self
var playerLayer: AVPlayerLayer
return layer as! AVPlayerLayer
var player: AVPlayer?
get
return playerLayer.player
set
playerLayer.player = newValue
The problem is, that whenever I try to change transform
property of the view or of the layer during the video playback, nothing changes. But the changes are applied later after the playback finishes.
Animation example:
func zoomIn()
UIView.animate(
withDuration: 0.2,
delay: 0,
options: .allowAnimatedContent,
animations:
self.transform = .init(scaleX: 1.1, y: 1.1)
,
completion: _ in
)
ios swift avfoundation core-animation avplayerlayer
add a comment |
I wan't to reproduce Live Photo zoom effect with AVPlayerLayer
. For this purpose I use VideoView
:
class VideoView: UIView
override class var layerClass: AnyClass
return AVPlayerLayer.self
var playerLayer: AVPlayerLayer
return layer as! AVPlayerLayer
var player: AVPlayer?
get
return playerLayer.player
set
playerLayer.player = newValue
The problem is, that whenever I try to change transform
property of the view or of the layer during the video playback, nothing changes. But the changes are applied later after the playback finishes.
Animation example:
func zoomIn()
UIView.animate(
withDuration: 0.2,
delay: 0,
options: .allowAnimatedContent,
animations:
self.transform = .init(scaleX: 1.1, y: 1.1)
,
completion: _ in
)
ios swift avfoundation core-animation avplayerlayer
add a comment |
I wan't to reproduce Live Photo zoom effect with AVPlayerLayer
. For this purpose I use VideoView
:
class VideoView: UIView
override class var layerClass: AnyClass
return AVPlayerLayer.self
var playerLayer: AVPlayerLayer
return layer as! AVPlayerLayer
var player: AVPlayer?
get
return playerLayer.player
set
playerLayer.player = newValue
The problem is, that whenever I try to change transform
property of the view or of the layer during the video playback, nothing changes. But the changes are applied later after the playback finishes.
Animation example:
func zoomIn()
UIView.animate(
withDuration: 0.2,
delay: 0,
options: .allowAnimatedContent,
animations:
self.transform = .init(scaleX: 1.1, y: 1.1)
,
completion: _ in
)
ios swift avfoundation core-animation avplayerlayer
I wan't to reproduce Live Photo zoom effect with AVPlayerLayer
. For this purpose I use VideoView
:
class VideoView: UIView
override class var layerClass: AnyClass
return AVPlayerLayer.self
var playerLayer: AVPlayerLayer
return layer as! AVPlayerLayer
var player: AVPlayer?
get
return playerLayer.player
set
playerLayer.player = newValue
The problem is, that whenever I try to change transform
property of the view or of the layer during the video playback, nothing changes. But the changes are applied later after the playback finishes.
Animation example:
func zoomIn()
UIView.animate(
withDuration: 0.2,
delay: 0,
options: .allowAnimatedContent,
animations:
self.transform = .init(scaleX: 1.1, y: 1.1)
,
completion: _ in
)
ios swift avfoundation core-animation avplayerlayer
ios swift avfoundation core-animation avplayerlayer
asked Mar 27 at 15:42
kelinkelin
6,2835 gold badges41 silver badges79 bronze badges
6,2835 gold badges41 silver badges79 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Seems like AVPlayerLayer
ignores many of CALayer
properties and the only way to scale a VideoView
is to change it's frame
.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55381233%2fanimate-avplayerlayer-transform-property%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Seems like AVPlayerLayer
ignores many of CALayer
properties and the only way to scale a VideoView
is to change it's frame
.
add a comment |
Seems like AVPlayerLayer
ignores many of CALayer
properties and the only way to scale a VideoView
is to change it's frame
.
add a comment |
Seems like AVPlayerLayer
ignores many of CALayer
properties and the only way to scale a VideoView
is to change it's frame
.
Seems like AVPlayerLayer
ignores many of CALayer
properties and the only way to scale a VideoView
is to change it's frame
.
answered May 2 at 20:05
kelinkelin
6,2835 gold badges41 silver badges79 bronze badges
6,2835 gold badges41 silver badges79 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55381233%2fanimate-avplayerlayer-transform-property%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown