Clay via ffmpeg-user (12022-11-02): > Doesn't this serial ordering of the same command (-c:v xxxx) twice just > drive cpu workload up for no actual benefit? > > To clarify: executing -c:v xxxx and then executing -c:v yyyy just > causes one output: yyyy. Thus you are forcing the CPU to > decode:encode:decode:encode rather than just decode:encode.... can > someone confirm or correct me here?
No, except for the ridiculously negligible CPU workload necessary to process the option itself. ffmpeg does not have the infrastructure to make multiple decode-encode cycles, what you describe is not possible on top of being useless. What happens is just that the second -c:v option will override the first one. Regards, -- Nicolas George _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
