How can i count the post added in relationship field, theme display

The relationship field will return an array of post objects, so just count them:

$related_posts = get_field( 'trailere_filme' );
echo count( $related_posts );