All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.syphr.mythtv.example.PlayerPanel Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2011-2012 Gregory P. Moyer
 *
 * 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 org.syphr.mythtv.example;

import java.awt.BorderLayout;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;

import javax.swing.JLabel;
import javax.swing.JPanel;

import org.gstreamer.Gst;
import org.gstreamer.media.MediaPlayer;
import org.gstreamer.media.PlayBinMediaPlayer;
import org.gstreamer.media.event.DurationChangedEvent;
import org.gstreamer.media.event.EndOfMediaEvent;
import org.gstreamer.media.event.MediaEvent;
import org.gstreamer.media.event.MediaListener;
import org.gstreamer.media.event.PositionChangedEvent;
import org.gstreamer.media.event.StartEvent;
import org.gstreamer.media.event.StopEvent;
import org.gstreamer.swing.VideoComponent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.syphr.mythtv.api.backend.RecordingByteChannel;

public class PlayerPanel extends JPanel
{
    /**
     * Serialization ID
     */
    private static final long serialVersionUID = 1L;

    private static final int BUFFER_SIZE = 1024 * 1024;

    private static final Logger LOGGER = LoggerFactory.getLogger(PlayerPanel.class);

    private final ExecutorService executor;

    private Future downloader;

    private MediaPlayer player;

    private RecordingByteChannel channel;

    public PlayerPanel()
    {
        executor = Executors.newSingleThreadExecutor();
        initGui();
    }

    private void initGui()
    {
        setLayout(new BorderLayout());
    }

    public void start(RecordingByteChannel channel) throws IOException
    {
        stop();

        this.channel = channel;

        add(new JLabel("Initializing video player..."), BorderLayout.CENTER);
        revalidate();

        File file = startDownload();

        Gst.init();
        player = new PlayBinMediaPlayer();
        player.setURI(file.toURI());

        player.addMediaListener(new MediaListener()
        {
            @Override
            public void stop(StopEvent evt)
            {
                log(evt);
            }

            @Override
            public void start(StartEvent evt)
            {
                log(evt);
            }

            @Override
            public void positionChanged(PositionChangedEvent evt)
            {
                log(evt);
            }

            @Override
            public void pause(StopEvent evt)
            {
                log(evt);
            }

            @Override
            public void endOfMedia(EndOfMediaEvent evt)
            {
                log(evt);
            }

            @Override
            public void durationChanged(DurationChangedEvent evt)
            {
                log(evt);
            }

            private void log(MediaEvent event)
            {
                LOGGER.trace("Received media event: {}", event);
            }
        });

        VideoComponent videoComponent = new VideoComponent();
        player.setVideoSink(videoComponent.getElement());

        removeAll();
        add(videoComponent, BorderLayout.CENTER);
        revalidate();

        player.play();
    }

    public void stop() throws IOException
    {
        removeAll();
        revalidate();

        if (player != null)
        {
            player.stop();
            player = null;
        }

        if (downloader != null)
        {
            downloader.cancel(true);
            downloader = null;
        }

        if (channel != null)
        {
            channel.close();
        }
    }

    private File startDownload() throws IOException
    {
        final File tmpFile = File.createTempFile("recording-", ".mpg");
        tmpFile.deleteOnExit();

        LOGGER.trace("Starting recording download to \"{}\"", tmpFile);

        downloader = executor.submit(new Callable()
        {
            @Override
            public Void call() throws IOException
            {
                FileOutputStream outStream = new FileOutputStream(tmpFile);

                try
                {
                    FileChannel out = outStream.getChannel();

                    try
                    {
                        try
                        {
                            long read = 0;
                            long size = channel.size();

                            while (read < size)
                            {
                                read += out.transferFrom(channel, read, Math.min(BUFFER_SIZE, size - read));
                            }
                        }
                        finally
                        {
                            channel.close();
                        }
                    }
                    finally
                    {
                        out.close();
                    }
                }
                finally
                {
                    outStream.close();
                }

                return null;
            }
        });

        return tmpFile;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy