Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

StackOverflow Point

StackOverflow Point Navigation

  • Web Stories
  • Badges
  • Tags
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Web Stories
  • Badges
  • Tags
Home/ Questions/Q 2798
Alex Hales
  • 0
Alex HalesTeacher
Asked: June 1, 20222022-06-01T13:23:50+00:00 2022-06-01T13:23:50+00:00

cgaffinetransform – Apply correct AVMutableVideoCompositionLayerInstruction to video – swift

  • 0

[ad_1]

I’m empirically trying to get the right instructions from an AVCompositionTrack.

func compositionLayerInstruction(for track: AVCompositionTrack, assetTrack: AVAssetTrack) -> AVMutableVideoCompositionLayerInstruction {
    
    let instruction = AVMutableVideoCompositionLayerInstruction(assetTrack: track)
    
    var transform = assetTrack.preferredTransform
    let assetSize = assetTrack.naturalSize

    let tranA = transform.a
    let tranB = transform.b
    let tranC = transform.c
    let tranD = transform.d
    
    if tranA == 0 && tranB == 1 && tranC == -1 && tranD == 0 {
        transform = CGAffineTransform(a: 0, b: 1, c: -1, d: 0, tx: assetSize.height, ty: 0)
    }
    if tranA == 0 && tranB == 1 && tranC == 1 && tranD == 0 {
        transform = CGAffineTransform(a: 0, b: 1, c: 1, d: 0, tx: 0, ty: 0)
    }
    if tranA == 1 && tranB == 0 && tranC == 0 && tranD == 1 {
        transform = CGAffineTransform(a: 1, b: 0, c: 0, d: 1, tx: assetSize.width, ty: assetSize.height)
    }
    
    instruction.setTransform(transform, at: .zero)
    
    return instruction
}

I’m doing it using a trial and error approach.
I get the preferredTransform property of the assetTrack and I try to apply the correct CGAffineTransform transformation verifying that the video is in the right orientation.
The first 2 transformations are working fine.

This process is driving me crazy.
The questions I have are these:

How can I understand what is the 4th case in the if statements if I haven’t already encountered it?

What kind of transformation should I apply to the 3rd and 4th cases?
Is there a way to understand how this transform thing works?

[ad_2]

  • 0 0 Answers
  • 5 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report
Leave an answer

Leave an answer
Cancel reply

Browse

Sidebar

Ask A Question

Related Questions

  • xcode - Can you build dynamic libraries for iOS and ...

    • 0 Answers
  • bash - How to check if a process id (PID) ...

    • 3 Answers
  • database - Oracle: Changing VARCHAR2 column to CLOB

    • 5 Answers
  • What's the difference between HEAD, working tree and index, in ...

    • 4 Answers
  • Amazon EC2 Free tier - how many instances can I ...

    • 0 Answers

Stats

  • Questions : 43k

Subscribe

Login

Forgot Password?

Footer

Follow

© 2022 Stackoverflow Point. All Rights Reserved.

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.