General :: Instagram Video On 4.4 Not Working?
Jan 18, 2014On CM11 i9300 I cannot post an Instagram video. Is it fixable?

On CM11 i9300 I cannot post an Instagram video. Is it fixable?
I should ask here or in the android app section. I own a rooted Galaxy Note 2.So I wonder if there's anyway to import video to Instagram. I've seen many user successfully imported one or some scene from movie and music video.
View 1 Replies View RelatedI have the latest software on my bq Maxwell Plus and never got to play videos on instagram.
I can hear the sound, but instead of watching the video a black square.
Whenever I take a picture with my front camera using instgram it goes the the screen to choose my filter but the picture doesn't show and then after a minute it goes back the previous screen I was. Rear camera works fine. Did a clear data and even uninstalled and reinstalled it. Not rooted.
View 1 Replies View RelatedJust got the S4 and i love it, only problem is every time i try to post a picture to instagram it shows up either distorted or just a black picture. Idk if it has to do with the photo resolution or size since the camera is a 13 mega pixel compared to my old phones 8 mega pixel.
View 2 Replies View RelatedCan i use Instagram on my HTC Desire? I'm using CM7. I got it installed, but i get a message that it's not supported. Is this normal and/or is there someother possibility to get it working?
View 9 Replies View Relatedcropping a picture to make the whole picture fit in instagram.
View 1 Replies View RelatedAny way to post emoticons on instagram???
View 9 Replies View RelatedI have a Motorola Defy and just installed Instagram.
There's supposed to a Camera Settings button in the profile menu, but I can't find it to enable the advanced camera feature.
I have the latest version of Instagram from July 26 installed.
I feel like part of the problem is the auto-crop in the app. I want to use the advanced camera so that the pictures will already be formatted for the Instagram app.
Create a toggle slide button like the one in the instagram android app. With smaliToJava tool i got the code, but, some methods came very messy.If we succeed, we may create a github project for everyone who want use this feature too.
Smali2Java Code:
Code:
package com.instagram.ui.widget.switchbutton;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Canvas;
import android.graphics.Rect;
[code]...
I've just switched over from an iPhone and I'm sorely missing the tweak InstaSave which allows me to save Instagram photos posted by other people. I have been trying to find for a similar tweak/app for Android but to no success.
View 2 Replies View RelatedHow to import your instagram photos to Facebook. I have tried sharing it to Facebook, but it will only give a link. I see that some people can import their pictures to a Facebook album called "instagram photos." Galaxy Nexus
View 3 Replies View RelatedMy phone's video isn't working properly, no matter which player I use. It was working fine, and at first, asking which player I would like to use for the playback. That has since stopped. The video seems to take longer to load and will play for around ten seconds, then stop for a while, then play for another few seconds.Should I do a default reset?
View 1 Replies View RelatedNote 10.1 (N8020).
Allshare video playback from other devices over wifi just stopped working. It was totally fine and I have absolutely no idea what happened. It still plays music and shows photos and all the files stored on external devices. The only problem is that it won't play video. It plays video stored locally or on sd card just fine, but when I want to play anything from my note 2 (n7105) or my pc's allshare app, video player shows error message: "Cannot play video. This video cannot be played".
It plays the same files just fine, when I copy them to the device, so I think it might be the case of some transcoding error. It is not a case of network settings - I've checked on 4 different wifi networks and it's the same everywhere. My note 2 works just fine on any wifi and plays all video from tablet or pc. Here is what I tried so far, with no results:
1. Restoring to factory defaults,
2. Wiping cache and dalvik cache,
3. Flashing fresh stock rom,
4. Erasing all allshare apps and video player data
N8020 & N7105 (JB 4.1.2 rooted + stock)
Is there a trick to sending a video MMS? Nobody I send them to receives them for some reason. I don't get any error messages or anything, but they never receive the message.
I haven't got any for a while either. Not sure if I have missed any or if nobody has tried to send me any. Anyway, what do I have to do to get working video MMS?
When I click on the camera or video Icon. It goes to load it to where you see the black screen with the white camera and then quickly goes back to the home screen.
View 8 Replies View RelatedI have tried 1.5 video API. I could not make it work. It even can't do preview. Following is my code:
private boolean initializeVideo() { Log.v(TAG, "initializeVideo");
if(Common.mRecordedVideo!=null && Common.mRecordedVideo.exists ()) Common.mRecordedVideo.delete();
File sDir = Environment.getExternalStorageDirectory();
String baseDir = sDir + Common.BASE_DIR;
File sampleDir=new File(baseDir);
if(!sampleDir.canWrite()) // Workaround for broken sdcard support on the device.
sampleDir = new File("/sdcard/sdcard");
try { Common.mRecordedVideo = File.createTempFile(PREFIX, EXTENSION, sampleDir);
} catch(IOException e) { AlertDialog.Builder ab = new AlertDialog.Builder (VideoRecord.this);
ab.setTitle("Error"); ab.setMessage(" can't write audio data to storage");
ab.setIcon(R.drawable.error); ab.setNeutralButton("Close", new DialogInterface.OnClickListener()
{ public void onClick(DialogInterface dialog, int whichButton) { } } );
ab.show(); return false;
} Intent intent = getIntent(); releaseMediaRecorder();
if (mSurfaceHolder == null) { Log.v(TAG, "SurfaceHolder is null");
return false; } mMediaRecorder = new MediaRecorder();
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mMediaRecorder.setVideoSource (MediaRecorder.VideoSource.CAMERA);
mMediaRecorder.setOutputFormat (MediaRecorder.OutputFormat.THREE_GPP);
mMediaRecorder.setMaxDuration(MAX_RECORDING_DURATION_MS);
mMediaRecorder.setOutputFile (Common.mRecordedVideo.getAbsolutePath());
// Use the same frame rate for both, since internally
// if the frame rate is too large, it can cause camera to become
// unstable. We need to fix the MediaRecorder to disable the support
// of setting frame rate for now.
mMediaRecorder.setVideoFrameRate(20);
mMediaRecorder.setVideoSize(352,288);
mMediaRecorder.setVideoEncoder (MediaRecorder.VideoEncoder.H263);
mMediaRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
try { mMediaRecorder.prepare();
} catch (IOException exception) { Log.e(TAG, "prepare failed for " );
releaseMediaRecorder(); // TODO: add more exception handling logic here
return false; } mMediaRecorderRecording = false;
return true; } private void startVideoRecording() {
Log.v(TAG, "startVideoRecording"); if (!mMediaRecorderRecording) {
// Check mMediaRecorder to see whether it is initialized or not.
if (mMediaRecorder == null && initializeVideo() == false ) {
Log.e(TAG, "Initialize video (MediaRecorder) failed."); return;
} try { mMediaRecorder.setOnErrorListener(this);
mMediaRecorder.setOnInfoListener(this);
mMediaRecorder.start();
// Recording is now started } catch (RuntimeException e) {
Log.e(TAG, "Could not start media recorder. ", e); return;
} mMediaRecorderRecording = true;
mRecordingStartTime = SystemClock.uptimeMillis();
updateRecordingIndicator(true);
mRecordingTimeView.setText("");
mRecordingTimeView.setVisibility(View.VISIBLE);
mHandler.sendEmptyMessage(UPDATE_RECORD_TIME);
setScreenTimeoutInfinite();
} }
Im having an issue sending a video on my incredible. i dont understand whats going on and i dont think im doing something wrong but who knows...
I went into camcorder, changed everything to defult. i changed the resolution to the 640 and was able to send up two a 2 second video. then i went to the lowest resolution which was like 320 or whatever and was able to send up to a 5 second video. thats about it... i sat on the phone with verizon maybe...2 hours? THEY could not figure it out. they said they has to borrow another verizon enployee's phone to mess with it and she kept getting the same issue saying the file is two large. its set for 30 seconds, then 20 seconds, 15, 10, all of them will not work over 5 seconds of a video to send. they said they dont understand why there is nothing in the settings saying switch to mms or sms or something and contacting someone to update that asap because it made no sence to them. i dont understand this and its getting annoying.
So then, i tried downloading some app called youcast or whatever, and it kind of worked. it says it bypasses the size limit or whatever. i sent a video to my friend and it says he got it, but needs to download the app first to view it. im waiting to hear from him if he downloads it and is able to view it. but that still sucks because what if you dont have an android? then youcast wont work.
And not only is this issue with me, but 6 of my friends with the htc incredible are not able to send videos either after they messed around with it all.
So my questions are...
Is there any other apps out there like youcast that might work or be better too?
My settings right now on camcorder are...
white balance: auto
resolution: QVGA(320x240) and i tried switching around between that all the way to 720p(1280x720)
storagehone storage and i have switched to storage card
encoding type MPEG4
Recording Limit: 30 seconds. again i tried all other settings.
Anybody have a working example of HTML5 file with a video tag ? [working in chrome lite] What resolution and format is supported ?
View 3 Replies View RelatedThis is a G1 and I am using a WiFi connection. when I go to Youtube ap and click Menu/my account/my videos , I can see all the videos uploaded via computer, but not the G1 video i waited 10 minutes to upload. they seem to upload into nowhere.
View 1 Replies View RelatedThis video is working perfectly on my Samsung Galaxy S Vibrant stock video player, however the audio is not working at all, can somebody please point out why? im a noob with all these codecs and stuff and dont know what the SGS can play and cant
View 3 Replies View RelatedNew android user switched over from WM Liking the wildfire, anyone can tell me how to open .swf & .flv on wildfire even though it has HTC flash player.
View 1 Replies View Relatedso every time i go online to try to watch a video, it goes into the streaming video player or w/e and it says; Cannot play video sorry, this video cannot be played.okay well some might think that my phone cant play this video, but no, their wrong because like last week it was working, same site and everything.
View 5 Replies View RelatedI have been having some issues with the Qik app. It has worked then stopped. I uninstalled it, then re-installed it. Sometimes it just loads the camcorder app, not the qik app, which is really odd. I figure it is built using the camcorder api but still very odd.
The customer service from qik has been poor as well.
My YouTube application is not working most of the time it says " Sorry, cannot play this video now".
View 1 Replies View RelatedWhen others send me a MMS video the video does not play. It shows up as a still image with no audio. I tried taking a existing vidio that I took from the phone and sent it to myself. It did the same thing? When I go to save the MMS it says there is a .jpg file and a .qcp (audio) file?
Does anyone know what is going on any why I cant view MMS videos?
I am using Handset SMS. When I go to the MMS program that came installed it is doing the same thing?
after updating (the official update) my HTC Desire to Froyo 2.2 I cannot capture any Video (any resolution). It happens that I press the trackball and the timer (on the upper-right corner) disappears and nothing works anymore (menu, etc...), only the Home button allow me to go back to the home panel. After doing that, the battery die in a few minutes and the phone is very slow: i.e. some video camera service is still up and running and consuming battery.
View 4 Replies View RelatedWhen trying to do 720p recording the camera freezes, turns black and requires a battery removal. I got about 3 seconds of 720p recording but even when I go in to view the video it freezes or lags severely to the point I need to remove the battery.
View 3 Replies View RelatedHow do i look inside my current rom to see if anything is out of wack with my framework? mms stoped working for some reason. i cannot send or recieve mms or video. if i wipe and clear cache and reinstall the rom it will work just fine but when i titanium backup all my apps and system data, thats when i lose the ability to send pics or recieve them. i have not deleted anything from the system but it seems as something has gone missing. i am running second wave with latest radio.
View 9 Replies View RelatedI have Skyraider 2.5.2, and my whenever I try to record video, my phone reboots. Any suggestions?
EDIT: I was told I need to update my radio. So for 2.15, I need to do unprovoked Forever. How do you do any of the other 2.xx radio updates. I remember something about unrooting your phone or something, but I can't find it anymore.