Advertisement
freakshow

Untitled

Feb 20th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1.  
  2. [07:45am] Freakshow: anyone have examples of how I would multiple bitrates out of a single input?
  3. [07:45am] Freakshow: looking at this as an example
  4. [07:45am] Freakshow: http://smorgasbork.com/component/content/article/35-linux/92-ffmpeg-the-mother-of-all-command-lines
  5. [07:45am] Freakshow: but was curious how applicable it was.
  6. [07:46am] Freakshow: given recent release changes...
  7. [07:47am] Freakshow: holy crap... just saw the date on that...
  8. [07:48am] Freakshow: nevermind, I'll cross reference and see what I can come up with today
  9. [07:48am] Freakshow: and then ask again
  10. [07:48am] kriegerod: is there any usage example of av_asrc_buffer_add_samples() on earth?
  11. [07:51am] kriegerod: Freakshow, that example is over-complicated. You should try "ffmpeg -i in.file -b:v 100k 100k.file -b:v 200k 200k.file" - you get the idea
  12. [07:51am] kriegerod: -b is for bitrate
  13. [07:51am] kriegerod: input file options go before -i option, output file options go before output file name
  14. [08:00am] Freakshow: kriegerod: what if I want to specify multiple rtsp outputs? does the same principle apply?
  15. [08:01am] kriegerod: yes
  16. [08:02am] Freakshow: hmm... is the simple notion of the additional -b:v 200k indicating that it's another output?
  17. [08:03am] Freakshow: so like -b:v 100k -c:v libx264 -profile:v baseline -f rtsp rtsp://output -b:v 200k -c:v libx264 -profile:v baseline -f rtsp rtsp://output
  18. [08:03am] kriegerod: simply options are split by places where input and output file names/URLs are located
  19. [08:04am] kriegerod: your line is right
  20. [08:04am] Freakshow: ok ok
  21. [08:04am] Freakshow: cool
  22. [08:04am] Freakshow: I'll give that a shot, thanks!
  23. [08:04am] MindSpark: I think I just missed the beginning of this conversation
  24. [08:04am] MindSpark: can someone pastebin/send it to me?
  25. [08:05am] Freakshow: sure, hang on
  26. [08:05am] MindSpark: this is probably very similar to what I am trying to achieve
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement