currently for Z10.. working on Q10/Q5
more information here.. http://appworld.blackberry.com/webstore/content/35305887/
Also if it helps anyone.. here are the best settings I could find for the latest ffmpeg from git for streaming
- Code: Select all
ffmpeg -y -ss %o -i %s -async 1 -f flv -avioflags direct -fflags nobuffer -vsync 1 -rtbufsize 1M -g 25 -sc_threshold 0 -analyzeduration 0 -threads 0 -acodec libfdk_aac -b:a 96k -ac 2 -vcodec libx264 -preset medium -profile:v baseline -b:v %bk -s %wx%h -loglevel quiet -
for fragmented mp4's.
- Code: Select all
ffmpeg -y -ss %o -i %s -async 1 -f mp4 -avioflags direct -fflags nobuffer -rtbufsize 5M -g 25 -sc_threshold 0 -analyzeduration 0 -threads 0 -acodec libfdk_aac -b:a 96k -ac 2 -vcodec libx264 -preset medium -profile:v high -b:v %bk -s %wx%h -movflags frag_keyframe+empty_moov -loglevel quiet -
cheers