Android Open Source - AndroidVideoSamples Rotation Activity






From Project

Back to project page AndroidVideoSamples.

License

The source code is released under:

Apache License

If you think the Android project AndroidVideoSamples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
   Copyright (c) 2014 Rory Hool/* w  w  w.  jav a 2  s .  c  o m*/
   
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
   
       http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 **/

package com.roryhool.videomanipulation;

import java.io.File;
import java.util.Locale;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;

import com.roryhool.commonvideolibrary.MediaHelper;

public class RotationActivity extends Activity {

   ImageView mVideoThumbnail;

   TextView mVideoName;

   TextView mVideoRotation;

   Uri mUri;

   @Override
   public void onCreate( Bundle savedInstanceState ) {
      super.onCreate( savedInstanceState );

      setContentView( R.layout.activity_rotation );

      mVideoThumbnail = (ImageView) findViewById( R.id.selected_video_thumbnail );

      mVideoName = (TextView) findViewById( R.id.selected_video_name );
      mVideoRotation = (TextView) findViewById( R.id.selected_video_rotation );

      getActionBar().setTitle( "Rotation" );
   }

   @Override
   public void onStart() {
      super.onStart();

      Uri uri = getIntent().getData();

      if ( uri != null ) {
         loadVideoUri( uri );
      }
   }

   public void loadVideoUri( Uri uri ) {

      mUri = uri;

      Bitmap bitmap = MediaHelper.GetThumbnailFromVideo( mUri, 0 );
      mVideoThumbnail.setImageBitmap( bitmap );

      File file = new File( mUri.toString() );

      mVideoName.setText( file.getName() );

      int rotation = MediaHelper.GetRotation( mUri );

      mVideoRotation.setText( String.format( Locale.US, "Current Rotation: %d", rotation ) );


   }

   public void onRotateClicked( View view ) {
      String rotationString = (String) view.getTag();
      int rotation = Integer.parseInt( rotationString );

      Uri rotatedVideoUri = MediaHelper.RotateVideo( mUri, rotation );

      Intent sendIntent = new Intent();
      sendIntent.setAction( Intent.ACTION_VIEW );
      sendIntent.setDataAndType( rotatedVideoUri, "video/mp4" );
      startActivity( sendIntent );
   }

}




Java Source Code List

com.roryhool.commonvideolibrary.CursorHelper.java
com.roryhool.commonvideolibrary.InputSurface.java
com.roryhool.commonvideolibrary.Intents.java
com.roryhool.commonvideolibrary.MediaHelper.java
com.roryhool.commonvideolibrary.OutputSurface.java
com.roryhool.commonvideolibrary.Resolution.java
com.roryhool.commonvideolibrary.SamplerClip.java
com.roryhool.commonvideolibrary.TextureRenderer.java
com.roryhool.commonvideolibrary.UriHelper.java
com.roryhool.commonvideolibrary.VideoResampler.java
com.roryhool.videocreation.JoinActivity.java
com.roryhool.videocreation.MainActivity.java
com.roryhool.videocreation.RenderFromSurfaceActivity.java
com.roryhool.videocreation.SurfaceEncoder.java
com.roryhool.videomanipulation.MainActivity.java
com.roryhool.videomanipulation.ResampleActivity.java
com.roryhool.videomanipulation.RotationActivity.java
com.roryhool.videomanipulation.TrimActivity.java
com.roryhool.videoplayback.ControllerBase.java
com.roryhool.videoplayback.DecodeWithMediaCodecActivity.java
com.roryhool.videoplayback.MainActivity.java
com.roryhool.videoplayback.MediaCodecDecodeController.java
com.roryhool.videoplayback.MediaPlayerController.java
com.roryhool.videoplayback.PlayWithMediaPlayerActivity.java
com.roryhool.videoplayback.PlaybackTimer.java
com.roryhool.videoplayback.ResizeAnimation.java
com.roryhool.videoplayback.ScaledTextureView.java
com.roryhool.videoplayback.VideoPlayerView.java