Skip to content

Uploading Videos

The Artefacts client will upload all the files in the paths specified by output_dirs in the artefacts.yaml config file (see Configuration Syntax).

At the moment, no video conversion is performed, so if you want to have videos display in the dashboard, please make sure you are using a browser friendly format. We recommend h264/mp4 for cross-platform compatibility.

For example, with ffmpeg, you can:

  • convert a video to mp4
ffmpeg  -i input_video.webm -c:v libx264 converted_video.mp4
  • convert a sequence of images within a folder to a video:
ffmpeg -r framerate -i input_image_folder/frame%06d.png -vcodec libx264 -crf 25 -pix_fmt yuv420p output_video_filename