Code Monkey home page Code Monkey logo

Comments (7)

martijn00 avatar martijn00 commented on August 15, 2024

Which version is this on?

from exoplayerxamarin.

corjohnson avatar corjohnson commented on August 15, 2024

Thought I had commented, sorry about that. This was on an earlier version of exoplayer. I'll give it a shot now!

from exoplayerxamarin.

corjohnson avatar corjohnson commented on August 15, 2024

Okay, so I've tried this again, but the line to resize the video crashes the application, stating that IllegalArgumentException class cannot be found in the bootloader. If I comment out the video scaling mode, it works fine, but in this scenario I need to be able to zoom the video in or resize it somehow. Was hoping I could take advantage of the exoplayer built in functionality.

I'm on version 2.7.3 of exoplayer

if (Player == null) return;

Player.SetBackgroundColor(Color.Black);
Player.UseController = false;

//Initialize Player
var bandwidthMeter = new DefaultBandwidthMeter();
var trackFactory = new AdaptiveTrackSelection.Factory(bandwidthMeter);
var trackSelector = new DefaultTrackSelector(trackFactory);
var exoPlayer = ExoPlayerFactory.NewSimpleInstance(Context, trackSelector);
Player.Player = exoPlayer;
exoPlayer.RepeatMode = RepeatModeUtil.RepeatToggleModeAll;
exoPlayer.PlayWhenReady = true;
exoPlayer.VideoScalingMode = AspectRatioFrameLayout.ResizeModeFill;

//Load the asset to play
var dataSourceFactory = new DefaultDataSourceFactory(Context, Util.GetUserAgent(Context, "MyApp"), new DefaultBandwidthMeter());
var videoSource = new ExtractorMediaSource(
    Android.Net.Uri.Parse("asset:///landing_video.mp4"),
    dataSourceFactory, 
    new DefaultExtractorsFactory(), 
    new Handler(),
    null
);

exoPlayer.Prepare(videoSource);

from exoplayerxamarin.

martijn00 avatar martijn00 commented on August 15, 2024

@corjohnson Can you try again with the latest update?

from exoplayerxamarin.

corjohnson avatar corjohnson commented on August 15, 2024

Hey @martijn00 , I was able to get it working in the most recent update. Sorry for the delay! Here's what I ended up using to initialize my player:

using System;
using Com.Google.Android.Exoplayer2.UI;
using Com.Google.Android.Exoplayer2;
using Com.Google.Android.Exoplayer2.Upstream;
using Android.Content;
using Com.Google.Android.Exoplayer2.Trackselection;
using Com.Google.Android.Exoplayer2.Util;
using Com.Google.Android.Exoplayer2.Source;
using Com.Google.Android.Exoplayer2.Extractor;
namespace MyApp.Droid.Services
{
    public class ExoPlayerService
    {
        public static IExoPlayer PrepareVideo(ref PlayerView playerView, string targetPath, Context context) 
        {
            //Track selector
            var bandwidthMeter = new DefaultBandwidthMeter();
            var videoTrackFactory = new AdaptiveTrackSelection.Factory(bandwidthMeter);
            var trackSelector = new DefaultTrackSelector(videoTrackFactory);
            
            //ExoPlayer
            var exo = ExoPlayerFactory.NewSimpleInstance(context, trackSelector);
            exo.RepeatMode = Player.RepeatModeAll;
            exo.PlayWhenReady = true;
            exo.VideoScalingMode = C.VideoScalingModeScaleToFit; //Scale to fit the frame
            playerView.UseController = false;
            playerView.Player = exo;
            
            //Media Source
            var dataSourceFactory = new DefaultDataSourceFactory(
                context, 
                Util.GetUserAgent(
                    context, 
                    context.GetString(Resource.String.app_name)
                )
            );
            var mediaSource = new ExtractorMediaSource(Android.Net.Uri.Parse(targetPath), dataSourceFactory, new DefaultExtractorsFactory(), null, null);
            exo.Prepare(mediaSource);
            return exo;
        }
    }
}

from exoplayerxamarin.

corjohnson avatar corjohnson commented on August 15, 2024

I'm going to close this issue; as I'm no longer seeing crashing behavior.

from exoplayerxamarin.

corjohnson avatar corjohnson commented on August 15, 2024
exoPlayer.VideoScalingMode = C.VideoScalingModeScaleToFit;
Player.ResizeMode = AspectRatioFrameLayout.ResizeModeFill;

If you're wanting the video to scale by aspect

from exoplayerxamarin.

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.