diff --git a/ffmpeg.c b/ffmpeg.c
index e305948ce4fd70603d0e284df7e9a9181c1b5992..e3223a5d1cbd1542e0b31df3f895d27391e3aa5e 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2623,6 +2623,13 @@ static int transcode(AVFormatContext **output_files,
                 fprintf(stderr, " [sync #%d.%d]",
                         ost->sync_ist->file_index,
                         ost->sync_ist->st->index);
+            if(ost->encoding_needed)
+                fprintf(stderr, ": %s -> %s",
+                    input_streams[ost->source_index].dec ?
+                        input_streams[ost->source_index].dec->name : "?",
+                    ost->enc ? ost->enc->name : "?");
+            else
+                fprintf(stderr, ": copy");
             fprintf(stderr, "\n");
         }
     }