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;








1















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
)










share|improve this question






























    1















    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
    )










    share|improve this question


























      1












      1








      1








      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
      )










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 15:42









      kelinkelin

      6,2835 gold badges41 silver badges79 bronze badges




      6,2835 gold badges41 silver badges79 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0













          Seems like AVPlayerLayer ignores many of CALayer properties and the only way to scale a VideoView is to change it's frame.






          share|improve this answer
























            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
            );



            );













            draft saved

            draft discarded


















            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









            0













            Seems like AVPlayerLayer ignores many of CALayer properties and the only way to scale a VideoView is to change it's frame.






            share|improve this answer





























              0













              Seems like AVPlayerLayer ignores many of CALayer properties and the only way to scale a VideoView is to change it's frame.






              share|improve this answer



























                0












                0








                0







                Seems like AVPlayerLayer ignores many of CALayer properties and the only way to scale a VideoView is to change it's frame.






                share|improve this answer













                Seems like AVPlayerLayer ignores many of CALayer properties and the only way to scale a VideoView is to change it's frame.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 2 at 20:05









                kelinkelin

                6,2835 gold badges41 silver badges79 bronze badges




                6,2835 gold badges41 silver badges79 bronze badges





















                    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.



















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현