web-dev-qa-db-ja.com

背景/壁紙などのコントロールなしでUIView内でビデオを再生する方法は?

目標は、コントロールなしでUIView内でビデオファイル(* .mp4)を再生することです。

ViewControllerの背景/壁紙として機能し、他のコントロール、つまりテーブルビュー、テキストフィールド、画像が再生されたビュー上に表示されます。

これを行うためのより良い方法は何ですか?ありがとうございました

26
Bogdan Laukhin

ネイティブAVPlayerで目標に到達しました

1.使用されたAVFoundation:

#import <AVFoundation/AVFoundation.h>

2.プレーヤーの使用プロパティ:

@property (nonatomic) AVPlayer *avPlayer;

3.ビデオファイルを「ビデオ」フォルダに追加し、「ビデオ」をプロジェクトに追加しました

4.プレーヤーの初期化

NSString *filepath = [[NSBundle mainBundle] pathForResource:@"shutterstock_v885172.mp4" ofType:nil inDirectory:@"Video"];
NSURL *fileURL = [NSURL fileURLWithPath:filepath];
self.avPlayer = [AVPlayer playerWithURL:fileURL];
self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;

AVPlayerLayer *videoLayer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
videoLayer.frame = self.view.bounds;
videoLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
[self.view.layer addSublayer:videoLayer];

[self.avPlayer play];

5.イベントに登録-動画は最後まで再生されました

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying:) name:AVPlayerItemDidPlayToEndTimeNotification object:[self.avPlayer currentItem]]; 

6.関連する方法で最初から再開されたビデオ再生

- (void)itemDidFinishPlaying:(NSNotification *)notification {
    AVPlayerItem *player = [notification object];
    [player seekToTime:kCMTimeZero];
}
48
Bogdan Laukhin

Swift

In Swiftそれは似ています。ビデオをリソースバンドルに追加します。私の完全な答えは here です。

import UIKit
import AVFoundation

class ViewController: UIViewController {

    var player: AVPlayer?

    @IBOutlet weak var videoViewContainer: UIView!

    override func viewDidLoad() {
        super.viewDidLoad()
        initializeVideoPlayerWithVideo()
    }

    func initializeVideoPlayerWithVideo() {

        // get the path string for the video from assets
        let videoString:String? = Bundle.main.path(forResource: "SampleVideo_360x240_1mb", ofType: "mp4")
        guard let unwrappedVideoPath = videoString else {return}

        // convert the path string to a url
        let videoUrl = URL(fileURLWithPath: unwrappedVideoPath)

        // initialize the video player with the url
        self.player = AVPlayer(url: videoUrl)

        // create a video layer for the player
        let layer: AVPlayerLayer = AVPlayerLayer(player: player)

        // make the layer the same size as the container view
        layer.frame = videoViewContainer.bounds

        // make the video fill the layer as much as possible while keeping its aspect size
        layer.videoGravity = AVLayerVideoGravity.resizeAspectFill

        // add the layer to the container view
        videoViewContainer.layer.addSublayer(layer)
    }

    @IBAction func playVideoButtonTapped(_ sender: UIButton) {
        // play the video if the player is initialized
        player?.play()
    }
}
7
Suragch