Video playing in Android tablet -



Video playing in Android tablet -

i want play big video using http on android tablet.

i don't want save viedo on device. is, if big video info received web service in little chunks, don't want save binary info , later play video. want play video downloads.

is possible?

simply encode video using ffmpeg , utilize qt-faststart tool enable streaming. utilize command encode videos android phones

$ ffmpeg -i infile.mp4 -s 480x320 -threads 4 -vcodec libx264 -flags +loop+mv4 -cmp 256 -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 -subq 5 -trellis 1 -refs 5 -bf 0 -flags2 +mixed_refs -coder 0 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qmin 15 -qmax 20 -qdiff 5 -b 700k -r 600 -acodec libfaac -ar 48000 -ab 48000 -pass 1 outfile.mp4

my code kind of low quality tablets. so, experiment changing resolution, bitrate etc.

android video video-streaming media-player

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -