Skip to content

Commit

Permalink
run update extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok committed Oct 7, 2024
1 parent a0f5b2c commit ee700ee
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions modules/Share-with-Bluesky/ShareViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,20 @@ class ShareViewController: UIViewController {

private func saveVideoWithInfo(_ dataUrl: URL) -> String? {
let ext = String(dataUrl.lastPathComponent.split(separator: ".").last ?? "mp4")
guard let tempUrl = getTempUrl(ext: ext),
let track = AVURLAsset(url: dataUrl).tracks(withMediaType: AVMediaType.video).first else {
guard let tempUrl = getTempUrl(ext: ext) else {
return nil
}
let size = track.naturalSize.applying(track.preferredTransform)

let data = try? Data(contentsOf: dataUrl)
try? data?.write(to: tempUrl)

return "\(tempUrl.absoluteString)|\(size.width)||\(size.height)"
guard let track = AVURLAsset(url: dataUrl).tracks(withMediaType: AVMediaType.video).first else {
_ = try? FileManager().removeItem(at: tempUrl)
return nil
}

let size = track.naturalSize.applying(track.preferredTransform)
return "\(tempUrl.absoluteString)|\(size.width)|\(size.height)"
}

private func completeRequest() {
Expand Down

0 comments on commit ee700ee

Please sign in to comment.