0
votes
0answers
217 views

Choosing bitrates programmatically with android videoview

I'm working on an Android app, where you can watch videos. I have the url of the videos, and I use VideoView to set it and start it, and that's working well. My question is stemmed from when video ...
0
votes
0answers
235 views

relationship between video resolution, encoding rate, bit rate and video size [closed]

for resolution, for example, in youtube, there are 360p, 480p,720p encoding rate seems to be very variable for bit rate, youtube has some suggested bit rate,like youtube suggested resolution and bit ...
1
vote
1answer
587 views

Http Live Streaming EXT-X-STREAM-INF, Calculating BANDWITH

Initially I've tried to find possible ways to do HLS segmenting on other non-Mac platforms. Segmenting videos for HLS involves the following steps: 1) Splitting the encoded video into segments 2) ...
1
vote
2answers
190 views

Finding Bitrate of video file

How can we find bitrate of a video file in c++? Can we do this by file handling? Thanks
0
votes
1answer
253 views

FFMPEG: Dynamic change of bit_rate for Video

I use ffmpeg codes in my C++ app and would like to control the bit_rate parameter for VIDEO there. I tried to change its value in work (via ost->st->codec->codec->bit_rate), but ffmpeg did not wish to ...
0
votes
1answer
324 views

calculate bitrate from video video

Im trying to calculate the bitrate from a video, but Im not sure if its correct. I know that some of the formula is size divided with seconds on the movie. But shouldnt I calculate with the audio ...
0
votes
3answers
131 views

Exact number of seconds in a video

I'm trying to get a videos exact size by using the following. (size in bytes*8)/(total bit rate(audio+video bitrates) * 1024) ex: (1,136,992*8)/(7128*1024) which comes out to 1.24617705 seconds ...
0
votes
1answer
1k views

How can I easily read video duration and bitrate in Java?

This is my first project in Java. I'm creating batch FTP video uploader applet in Java. Before I start uploading videos I need to read the video duration and video bitrate from the video files. I ...
0
votes
1answer
356 views

How To Detect Embedded Video Encoded Bitrate

If I want to embed a video file or stream that is not my own into an html page, is there any way that I can first detect the bitrate that the video was encoded at? Is there a way that it can be ...
1
vote
3answers
1k views

FFMPEG Bitrate Calculation / Optimization

I wrote the following wrapper for FFMPEG: function Video($input, $crop = null, $scale = null, $output = null, $extra = null) { $input = @new ffmpeg_movie($input); if ((is_object($input) === ...
0
votes
1answer
408 views

Optmizing video for rtmp streaming?

Does anyone know of a guide of how to best optimize video for streaming (RTMP) over the internet? Including optimisation of: bitrate framerate frame size audio p vs i frame proportions Thanks in ...
3
votes
1answer
904 views

Formula for Live Video Streaming Bitrate

I am simply looking for the formula that should be used here. All the results I've found base "finding the bitrate" off of already existing video. I'm talking about LIVE streaming. (indeterminate ...
0
votes
1answer
1k views

Windows-Mobile Directshow: Specifying bitrate/quality of a WMV video capture

I'm stumped on this, and I'm really hoping someone could point me in the right direction. I'm currently capturing video in Windows Mobile and encoding it using the WMV 9 DMO ...
1
vote
5answers
3k views

Very low bitrate video codec?

I was wondering if there are any video codecs out there that are suited for extremely low bitrates, especially for webcam input? Throwing around some numbers: let's say a 160x120 stream that will ...
1
vote
1answer
198 views

What bitrate can I expect with MPEG?

What bit-rate (approximately) can I expect MPEG encoders to produce for 160x120 "ok-quality" webcam stream? How much CPU-demanding will the encoding be? The decoding? Are there any better encoding ...
3
votes
2answers
13k views

Flash Encoding (FLV): What are the prefered bitrates?

I inherited a project that is sending videos off to a remote encoder to encode into FLVs. Today, I noticed that we are asking them to encode at 1024kbps To me, this seems extremely high. What is ...