Code Monkey home page Code Monkey logo

Comments (2)

Priyanka-14 avatar Priyanka-14 commented on June 4, 2024

when I used this player into tableview cell, multiple video's get played at same time, how to play only visible cell's video.

from aspvideoplayer.

andreipitis avatar andreipitis commented on June 4, 2024

Hi @Priyanka-14,

The solution to your question is very specific to your use case.
One way to do this would be to use the UITableViewDelegate methods to start the player in a specific cell and stop the other ones. If you have large cells, or if only one is visible at all times this should work:

extension ViewController: UITableViewDelegate {
    func scrollViewDidScroll(_ scrollView: UIScrollView) {
         //Get the cell at the center of the tableView
        if let indexPath = tableView.indexPathForRow(at: CGPoint(x: 0, y: scrollView.bounds.height / 2 + scrollView.contentOffset.y)),
            //Cast cell to custom class to access the player
            let cell = tableView.cellForRow(at: indexPath) as? TableCell {
            //Start the player in the center cell
            cell.playerView?.videoPlayerControls.play()
            
            //Get all visible cells and the index of the current cell
            var visible = tableView.visibleCells
            if let index = visible.firstIndex(of: cell) {
                
                //Remove the current cell from the visible array
                visible.remove(at: index)
                
                //Iterate over the remaining cells and stop the player
                for visibleCell in visible {
                    let playerCell = visibleCell as! TableCell
                    playerCell.playerView?.videoPlayerControls.stop()
                }
            }
        }
    }
}

from aspvideoplayer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.