¡@

Home 

2014/10/16 ¤W¤È 08:21:25

android Programming Glossary: pfd.getfiledescriptor

Live-stream video from one android phone to another over WiFi

http://stackoverflow.com/questions/14401340/live-stream-video-from-one-android-phone-to-another-over-wifi

mediaRecorder.setOutputFile pfd.getFileDescriptor mMediaRecorder.setPreviewDisplay mPreview.getHolder .getSurface.. mMediaPlayer new MediaPlayer mMediaPlayer.setDataSource pfd.getFileDescriptor mMediaPlayer.prepare mMediaPlayer.start Unfortunately mediaplayer..

Stream live video from phone to phone using socket fd

http://stackoverflow.com/questions/6116880/stream-live-video-from-phone-to-phone-using-socket-fd

pfd ParcelFileDescriptor.fromSocket clientSocket pfd.getFileDescriptor .sync mp.setDataSource pfd.getFileDescriptor pfd.close .. pfd.getFileDescriptor .sync mp.setDataSource pfd.getFileDescriptor pfd.close mp.setDisplay holder mp.prepareAsync mp.start.. recorder.setOutputFile pfd.getFileDescriptor recorder.setVideoFrameRate 20 recorder.setVideoSize 176..

android stream audio to server

http://stackoverflow.com/questions/8576427/android-stream-audio-to-server

MediaRecorder.AudioEncoder.AMR_NB recorder.setOutputFile pfd.getFileDescriptor try recorder.prepare catch IllegalStateException e e.printStackTrace..

Error opening android camera for streaming video

http://stackoverflow.com/questions/9098216/error-opening-android-camera-for-streaming-video

socket recorder.setOutputFile pfd.getFileDescriptor recorder.setPreviewDisplay cameraPreview.getHolder .getSurface..

Live-stream video from one android phone to another over WiFi

http://stackoverflow.com/questions/14401340/live-stream-video-from-one-android-phone-to-another-over-wifi

mMediaRecorder.setVideoEncoder MediaRecorder.VideoEncoder.DEFAULT mediaRecorder.setOutputFile pfd.getFileDescriptor mMediaRecorder.setPreviewDisplay mPreview.getHolder .getSurface mMediaRecorder.prepare mMediaRecorder.start On the player.. pfd ParcelFileDescriptor.fromSocket socket mMediaPlayer new MediaPlayer mMediaPlayer.setDataSource pfd.getFileDescriptor mMediaPlayer.prepare mMediaPlayer.start Unfortunately mediaplayer tends to not like this so you have a couple of options..

Stream live video from phone to phone using socket fd

http://stackoverflow.com/questions/6116880/stream-live-video-from-phone-to-phone-using-socket-fd

new Runnable @Override public void run try ParcelFileDescriptor pfd ParcelFileDescriptor.fromSocket clientSocket pfd.getFileDescriptor .sync mp.setDataSource pfd.getFileDescriptor pfd.close mp.setDisplay holder mp.prepareAsync mp.start catch IOException.. ParcelFileDescriptor pfd ParcelFileDescriptor.fromSocket clientSocket pfd.getFileDescriptor .sync mp.setDataSource pfd.getFileDescriptor pfd.close mp.setDisplay holder mp.prepareAsync mp.start catch IOException e TODO Auto generated catch block e.printStackTrace.. recorder.setOutputFormat MediaRecorder.OutputFormat.THREE_GPP recorder.setOutputFile pfd.getFileDescriptor recorder.setVideoFrameRate 20 recorder.setVideoSize 176 144 recorder.setVideoEncoder MediaRecorder.VideoEncoder.H263..

android stream audio to server

http://stackoverflow.com/questions/8576427/android-stream-audio-to-server

MediaRecorder.OutputFormat.THREE_GPP recorder.setAudioEncoder MediaRecorder.AudioEncoder.AMR_NB recorder.setOutputFile pfd.getFileDescriptor try recorder.prepare catch IllegalStateException e e.printStackTrace catch IOException e e.printStackTrace recorder.start..

Error opening android camera for streaming video

http://stackoverflow.com/questions/9098216/error-opening-android-camera-for-streaming-video

CamcorderProfile.get CamcorderProfile.QUALITY_HIGH pfd ParcelFileDescriptor.fromSocket socket recorder.setOutputFile pfd.getFileDescriptor recorder.setPreviewDisplay cameraPreview.getHolder .getSurface try recorder.prepare recorder.start catch IllegalStateException..