Android Open Source - SpartanTimeLapseRecorder Video Time Lapse Recorder






From Project

Back to project page SpartanTimeLapseRecorder.

License

The source code is released under:

GNU General Public License

If you think the Android project SpartanTimeLapseRecorder 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

/*
 * Spartan Time Lapse Recorder - Minimalistic android time lapse recording app
 * Copyright (C) 2014  Andreas Rohner//  w  w w .j a  va  2s.  c  o m
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package at.andreasrohner.spartantimelapserec.recorder;

import java.io.IOException;

import android.annotation.TargetApi;
import android.content.Context;
import android.media.CamcorderProfile;
import android.media.MediaRecorder;
import android.os.Build;
import android.os.Handler;
import android.util.Log;
import android.view.SurfaceHolder;
import at.andreasrohner.spartantimelapserec.R;
import at.andreasrohner.spartantimelapserec.data.RecSettings;

@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class VideoTimeLapseRecorder extends VideoRecorder {

  public VideoTimeLapseRecorder(RecSettings settings,
      SurfaceHolder surfaceHolder, Context context, Handler handler) {
    super(settings, surfaceHolder, context, handler);
  }

  protected void doRecord() throws IllegalStateException, IOException {
    mMediaRecorder.setOrientationHint(getCameraRotation(mSettings
        .getCameraId()));
    // no need for more sensor data
    disableOrientationSensor();

    mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);

    CamcorderProfile p = CamcorderProfile.get(mSettings.getCameraId(),
        mSettings.getRecProfile());
    p.videoFrameWidth = mSettings.getFrameWidth();
    p.videoFrameHeight = mSettings.getFrameHeight();
    mMediaRecorder.setProfile(p);

    mMediaRecorder.setCaptureRate(1000 / ((double) mSettings.getCaptureRate()));

    if (mRate != -1)
      mMediaRecorder.setVideoFrameRate(mRate);
    mMediaRecorder.setOutputFile(getOutputFile("mp4").getAbsolutePath());
    mMediaRecorder.setVideoSize(mSettings.getFrameWidth(),
        mSettings.getFrameHeight());

    if (mSettings.getStopRecAfter() > 0) {
      if (mRate != -1) {
        mRate = CamcorderProfile.get(mSettings.getCameraId(),
            mSettings.getRecProfile()).videoFrameRate;
      }

      int duration = (int) (((double) (mSettings.getStopRecAfter() / mSettings
          .getCaptureRate())) / mRate * 1000);

      if (duration < 500) {
        handleError(getClass().getSimpleName(),
            mContext.getString(R.string.pref_stop_recording_after)
                + " is too short in relation to the "
                + mContext.getString(R.string.pref_capture_rate));
        return;
      }

      mMediaRecorder.setMaxDuration(duration);
      mMediaRecorder.setOnInfoListener(this);
    }

    Log.i(getClass().getSimpleName(), "Starting video recording");
    mMediaRecorder.setOnErrorListener(this);

    mMediaRecorder.prepare();

    mMediaRecorder.start();
  }
}




Java Source Code List

at.andreasrohner.spartantimelapserec.BackgroundService.java
at.andreasrohner.spartantimelapserec.DeviceStatusReceiver.java
at.andreasrohner.spartantimelapserec.MainActivity.java
at.andreasrohner.spartantimelapserec.PowerSavingReceiver.java
at.andreasrohner.spartantimelapserec.PreviewActivity.java
at.andreasrohner.spartantimelapserec.ScheduleReceiver.java
at.andreasrohner.spartantimelapserec.SettingsActivity.java
at.andreasrohner.spartantimelapserec.SettingsCommon.java
at.andreasrohner.spartantimelapserec.SettingsFragment.java
at.andreasrohner.spartantimelapserec.data.RecMode.java
at.andreasrohner.spartantimelapserec.data.RecSettings.java
at.andreasrohner.spartantimelapserec.preference.DateTimePreference.java
at.andreasrohner.spartantimelapserec.preference.IconArrayAdapter.java
at.andreasrohner.spartantimelapserec.preference.IconListPreference.java
at.andreasrohner.spartantimelapserec.preference.NoKBEditTextPreference.java
at.andreasrohner.spartantimelapserec.preference.SeekBarPreference.java
at.andreasrohner.spartantimelapserec.recorder.ImageRecorder.java
at.andreasrohner.spartantimelapserec.recorder.PowerSavingImageRecorder.java
at.andreasrohner.spartantimelapserec.recorder.Recorder.java
at.andreasrohner.spartantimelapserec.recorder.VideoRecorder.java
at.andreasrohner.spartantimelapserec.recorder.VideoTimeLapseRecorder.java
at.andreasrohner.spartantimelapserec.sensor.CameraSettings.java
at.andreasrohner.spartantimelapserec.sensor.MuteShutter.java
at.andreasrohner.spartantimelapserec.sensor.OrientationSensor.java