In my application I have upload the videos in YouTube using android mobile application,But I want to make all uploaded videos as private if there is any possible.
Set privacy status of your video to private while uploading the video using Youtube Data Api v3. Code will be like this -
VideoStatus status = new VideoStatus();
status.setPrivacyStatus("private");
For more information visit