Obtaining array item from WordPress revisions output

To get the post author ID you can try:

$revisions = wp_get_post_revisions($post->ID); 
//For first author
$first_author = $revisions[0]->post_author;
//to get all revision authors
foreach( $revisions as $revision ){
    echo $revision->post_author;
}