JuliaIO / VideoIO.jl

Reading and writing of video files in Julia via ffmpeg
https://juliaio.github.io/VideoIO.jl/stable
Other
128 stars 53 forks source link

Add ffmpeg package and library names for ubuntu 15.04 #67

Closed c42f closed 8 years ago

c42f commented 9 years ago

Add the ffmpeg versions of the libraries because the libav versions available on ubuntu 15.04 have not yet wrapped in VideoIO.

The ffmpeg libraries have been put first in the search order so that they'll be found in preference, even if the user also has the libav versions installed. This avoids a VideoIO crash at runtime when loading libraries which haven't been wrapped yet.

c42f commented 9 years ago

This works around #66 for usage on ubuntu 15.04, but doesn't fix the underlying cause of the crash in #66.

c42f commented 9 years ago

A note about the diff which is a bit confusing: All I've done to the library alias lists is append libav$foo-ffmpeg.so. to each of the alias lists.

kmsquire commented 9 years ago

Hi Chris, thanks for the PR. I'm on vacation right now, but will try to look this weekend.