Welcome to TalkGraphics.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2017
    Posts
    1

    Default Unable to play embedded MP4 videos

    I'm using Xara 11 premium on Windows 7 64 bit. The video appears to load OK in design mode, but won't play and is replaced by a black cell when testing.

    Judging from the number posts regarding this issue it appears to be a fault with the design of Xara? If anyone can suggest a solution I would be most grateful.

  2. #2
    Join Date
    Apr 2015
    Location
    Germany
    Posts
    927

    Default Re: Unable to play embedded MP4 videos

    Are you sure your mp4 is comatible to the browser you tested in?
    It could be worth to explicitly convert it and retry.
    Example conversion with ffmpeg
    Code:
    ffmpeg -i in.mp4 -vcodec libx264 -movflags faststart -b:v 800k -an -vf scale=1040:-1 -map 0 out.mp4
    where in.mp4 is your source file, out.mp4 is the name of the file to be created, 800k defines the video bitrate and 1040 is the picel width the target video should be created with.
    To also include audio you should replace -an with
    Code:
    -acodec aac -ac 2 -ar 48000 -b:a 96k
    where 2 means stereo, 48000 is the sampling frequency of the audio to be created and 96k is the bitrate.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •