rsvideorecord library question

jfitchett56

Member
Licensed User
Longtime User
I see in the example for rsvideorecord properties like record.outputformat etc but I cannot find any document explaining what they are 0=mp4, 1=mp3 etc... where would that be?
 

TrisectDevelopment

Active Member
Licensed User
Longtime User
I would also very much know that!

B4X:
record.AudioSource = 5
record.VideoSource = 1
record.OutputFormat = 2
record.setScreenSize(640,480)
record.AudioEncoder = 1
record.VideoEncoder = 3

This is what I have and I would also like to know what the numbers are?
setScreenSize I know. :)

I'm uploading my movie to the web and want to play them via this code:
B4X:
<video width="320" height="240" controls>
  <source src="movie.xxx" type="video/xx">
  Your browser does not support the video tag.
</video>

I need to know what format I'm recording the video in (xxx in my HTML code)
 
Last edited:
Upvote 0
Top