Difference between revisions of "Video Playback Libraries"

From Lazarus wiki
Jump to navigationJump to search
m (→‎Libraries: Moved SysRec reference here)
(→‎See also: Added Metal Framework)
(8 intermediate revisions by 4 users not shown)
Line 11: Line 11:
 
| [http://code.google.com/p/dspack/ DSPack]
 
| [http://code.google.com/p/dspack/ DSPack]
 
| http://code.google.com/p/dspack/
 
| http://code.google.com/p/dspack/
 +
http://github.com/TheBlackSheep/DSPack-Lazarus
 
| Windows only
 
| Windows only
 
| DirectShow library.  Although the DSPack can be simple to use, this offers complex low level functionality as well.
 
| DirectShow library.  Although the DSPack can be simple to use, this offers complex low level functionality as well.
Video Playback is dependent upon correct Codecs being installed on the end-user system
+
Video Playback is dependent upon correct Codecs being installed on the end-user system.
A more up to date version, that compiles against FPC 2.7.1, is available with the CodeTyphon installation
+
 
 +
A tutorial on DSPack use for Delphi, which also applied to fpc, can be found at http://www.vwlowen.co.uk/directshow/page01.htm.
 +
 +
Full documentation on the DirectShow API is available at http://msdn.microsoft.com/en-us/library/windows/desktop/dd375454(v=vs.85).aspx
 +
 
 +
A more up to date version of DSPack, that compiles against FPC 2.7.1, is available with the CodeTyphon installation.
 
|-
 
|-
 
| libvlc
 
| libvlc
Line 28: Line 34:
 
Video Playback is dependent upon VLC being installed on the end-user system.
 
Video Playback is dependent upon VLC being installed on the end-user system.
 
|-
 
|-
| [http://www.ffmpeg.org/ FFmpeg]
+
| [http://www.ffmpeg.org FFmpeg]
| https://www.ffmpeg.org/
+
| https://www.ffmpeg.org
 
| Any platform supported by FFmpeg
 
| Any platform supported by FFmpeg
| Old FPC headers are available with the FFmpeg source code.  Assorted open source applications have improved these headers over the years, but there appears to be no maintainer for these updated headers.
+
| Old FPC headers are available with the FFmpeg source code.  Assorted open source applications have improved these headers over the years, but there appears to be no maintainer for these updated headers. New FPC headers are https://github.com/DJMaster/ffmpeg-fpc.
 
Read http://www.ffmpeg.org/legal.html before distributing FFmpeg.
 
Read http://www.ffmpeg.org/legal.html before distributing FFmpeg.
 +
|-
 +
| [http://www.delphiffmpeg.com FFVCL]
 +
| http://www.delphiffmpeg.com/downloads/
 +
| Any platform supported by FFmpeg
 +
| FFVCL provides commerical native FFmpeg components, including an encoder and player, for Delphi.  The headers are free to download and reportedly work with FPC.
 
|-
 
|-
 
| [[TMPlayerControl]]
 
| [[TMPlayerControl]]
Line 38: Line 49:
 
| X/GTK2 & Windows
 
| X/GTK2 & Windows
 
| Simple to use.
 
| Simple to use.
mplayer can be easily bundled with your application, however mplayer uses FFmpeg and the legal licensing warning at http://www.ffmpeg.org/legal.html could also apply.  It is recommended that the end-user install mplayer on their system instead of it being distributed with your application.
+
mplayer can be easily bundled with your application, however mplayer uses FFmpeg and the legal licensing warning at http://www.ffmpeg.org/legal.html could also apply.   
 +
 
 +
It is recommended that the end-user install mplayer on their system instead of it being distributed with your application.
 
|-
 
|-
 
| [http://msdn.microsoft.com/en-us/library/windows/desktop/dd757708(v=vs.85).aspx Video for Windows]
 
| [http://msdn.microsoft.com/en-us/library/windows/desktop/dd757708(v=vs.85).aspx Video for Windows]
Line 48: Line 61:
  
 
== See also ==
 
== See also ==
 +
 +
* Forum Topic http://forum.lazarus.freepascal.org/index.php?topic=16797.0 for a discussion on the DSPack ported by TheBlackSheep
 
* Forum Topic http://forum.lazarus.freepascal.org/index.php/topic,22038.msg129568.html#msg129568 for a discussion on the current state of the FFmpeg headers.
 
* Forum Topic http://forum.lazarus.freepascal.org/index.php/topic,22038.msg129568.html#msg129568 for a discussion on the current state of the FFmpeg headers.
 
* [http://sourceforge.net/projects/ultrastardx/ UltraStar Deluxe] for an open source application with updated FFmpeg headers
 
* [http://sourceforge.net/projects/ultrastardx/ UltraStar Deluxe] for an open source application with updated FFmpeg headers
 
* [[LazActiveX]] for an example of how to embed VLC using ActiveX
 
* [[LazActiveX]] for an example of how to embed VLC using ActiveX
 
* [[TMPlayerControl]] for details on how to use TMplayerControl library to embed mplayer
 
* [[TMPlayerControl]] for details on how to use TMplayerControl library to embed mplayer
* [[Multimedia_Programming]]
+
* [[Multimedia Programming]]
 
* [[SysRec]] for an example of using Video For Windows (deprecated precursor to DirectShow - created for Win 3.1, but is still available under current 32bit Window OS's)  
 
* [[SysRec]] for an example of using Video For Windows (deprecated precursor to DirectShow - created for Win 3.1, but is still available under current 32bit Window OS's)  
 +
* [[Metal Framework]] - macOS
  
 +
[[Category:Components]]
 
[[Category:Multimedia]]
 
[[Category:Multimedia]]
 
[[Category:Video]]
 
[[Category:Video]]

Revision as of 06:02, 24 October 2020

Introduction

Several libraries are available for embedding video playback within Lazarus applications. These range from simple to complex.

Libraries

Library Source Platforms Notes
DSPack http://code.google.com/p/dspack/

http://github.com/TheBlackSheep/DSPack-Lazarus

Windows only DirectShow library. Although the DSPack can be simple to use, this offers complex low level functionality as well.

Video Playback is dependent upon correct Codecs being installed on the end-user system.

A tutorial on DSPack use for Delphi, which also applied to fpc, can be found at http://www.vwlowen.co.uk/directshow/page01.htm.

Full documentation on the DirectShow API is available at http://msdn.microsoft.com/en-us/library/windows/desktop/dd375454(v=vs.85).aspx

A more up to date version of DSPack, that compiles against FPC 2.7.1, is available with the CodeTyphon installation.

libvlc Included with FPC 2.7.1 as an optional package Any platform supported by VLC Currently only available in FPC Trunk

Video Playback is dependent upon VLC being installed on the end-user system.

PasLibVLC http://prog.olsztyn.pl/paslibvlc/ Any platform supported by VLC A mature package that also installs under various Delphi's.

Video Playback is dependent upon VLC being installed on the end-user system.

FFmpeg https://www.ffmpeg.org Any platform supported by FFmpeg Old FPC headers are available with the FFmpeg source code. Assorted open source applications have improved these headers over the years, but there appears to be no maintainer for these updated headers. New FPC headers are https://github.com/DJMaster/ffmpeg-fpc.

Read http://www.ffmpeg.org/legal.html before distributing FFmpeg.

FFVCL http://www.delphiffmpeg.com/downloads/ Any platform supported by FFmpeg FFVCL provides commerical native FFmpeg components, including an encoder and player, for Delphi. The headers are free to download and reportedly work with FPC.
TMPlayerControl Lazarus-CCR X/GTK2 & Windows Simple to use.

mplayer can be easily bundled with your application, however mplayer uses FFmpeg and the legal licensing warning at http://www.ffmpeg.org/legal.html could also apply.

It is recommended that the end-user install mplayer on their system instead of it being distributed with your application.

Video for Windows Windows 16bit or 32bit The SysRec application demostrates capturing and playing video streams from TV cards and webcams under Windows the VFW API.

Video for Windows (VFW) was created for Win 3.1, and though deprecated in favour of DirectShow, is still available under modern 32bit Windows.

See also