What is kux file type and how to open it?

-3

As the title says, I'm trying to open a couple files that are kux(there's one that's kux#). The origin of the files were from inner Mongolia, my friend traveled there and is now asking me how to open them.

Caleb Taylor

Posted 2019-08-12T22:02:59.517

Reputation: 1

3

-1 because searching youtube for kux file format, first result tells me this is a video format, known as Youku Tudou from the China region: https://datatypes.net/open-kux-files

– LPChip – 2019-08-12T22:15:58.017

Answers

0

Your .kux files are older multimedia files, more precisely, files in the format of Youku KUX Video.

(Youku was a Chinese video-sharing service based in Beijing.)

This multimedia file format was some years ago popular in Asia, unfortunately it's now unsupported as an obsolete one.

But luckily, the free and open source software FFmpeg is able to convert it to many different formats — use the command

ffmpeg -i "Your_input_file.kux"  "Output_file.mp4"

to convert it into the .mp4 video.

You may use other multimedia file extensions, as .avi or .mov instead of .mp4 to convert your .kux file into those formats.

MarianD

Posted 2019-08-12T22:02:59.517

Reputation: 2 572

1I used the command ffmpeg -i foo.kux foo.mp4 and it resulted in an error foo.kux: could not find codec parameters – Caleb Taylor – 2019-08-13T17:24:41.517