How to use getid3 if installed with apt-get install getid3?

Gigante

I just installed getid3 on my Debian server:

apt-get install php-getid3

How can I use it on my website?

I have read that I can use it this way:

require_once('getid3/getid3.php');
$getID3 = new getID3;
 $path = 'sample.mp3';
$mixinfo = $getID3->analyze( $path );

But I don't know where is located getid3.php to require it. How can I use this php class?

Borja Marco

You have to include the files that you download from http://sourceforge.net/projects/getid3/?source=navbar In a folder in your web project, then you can use the library with the code, I recommend you to look the examples first.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

getId3 to get video duration in seconds

From Dev

Display image in browser with getID3

From Dev

getid3: download the full mp3 data from remote server

From Dev

Laravel getID3 unable to pull file from S3

From Dev

How are packages actually installed via apt-get install?

From Dev

How to install a package via `apt-get` without flagging it as manually installed

From Dev

How to get all URLs for packages that would be installed for `apt install <pkg>` command

From Dev

How to prevent package updation in `apt-get install -y package` if the package is already installed?

From Dev

I build and install a package by myself, how can I notice apt-get knows I installed it?

From Dev

How to install software from source and tell the apt-get that I have installed the version?

From Dev

How to get list of all packages installed by apt?

From Dev

How to uninstall composer if it was installed with apt-get?

From Dev

apt-get keeps trying to install package that's already installed

From

Check if an apt-get package is installed and then install it if it's not on Linux

From Dev

apt-get purge, install nginx; reports success but not installed (12.04)

From Dev

Use apt get install without inserting the DVD?

From Dev

How should one configure or install salt-cloud to use the Saltstack py3 repository to install the minion instead of the distribution (apt) repository?

From Dev

apt install php7.1-curl depends libcurl3 but I have libcurl4 installed

From Dev

apt-get install "maven" or "maven3"

From Dev

Unable to correctly install pip3 using apt-get

From Dev

problem installing sqlite3 using apt-get install

From Dev

How to adapt this python script to apt installed matplotlib vs pip3 installed

From Dev

Although I have Texlive installed from DVD apt-get suggests to install it every time, how can I avoid this behaviour?

From Dev

I installed a program by getting its source code, and then running `sudo make install`; how to make `apt-get` know about it?

From Dev

Django both installed via python3 and one via apt-get. Can I uninstall apt-get?

From Dev

how to get a string from .getId()

From Dev

How to get the newest version of a package installed via apt-get?

From Dev

How to get the directory that a package apt-get installed?

From Dev

How to get the GNOME 3 login manager installed?

Related Related

  1. 1

    getId3 to get video duration in seconds

  2. 2

    Display image in browser with getID3

  3. 3

    getid3: download the full mp3 data from remote server

  4. 4

    Laravel getID3 unable to pull file from S3

  5. 5

    How are packages actually installed via apt-get install?

  6. 6

    How to install a package via `apt-get` without flagging it as manually installed

  7. 7

    How to get all URLs for packages that would be installed for `apt install <pkg>` command

  8. 8

    How to prevent package updation in `apt-get install -y package` if the package is already installed?

  9. 9

    I build and install a package by myself, how can I notice apt-get knows I installed it?

  10. 10

    How to install software from source and tell the apt-get that I have installed the version?

  11. 11

    How to get list of all packages installed by apt?

  12. 12

    How to uninstall composer if it was installed with apt-get?

  13. 13

    apt-get keeps trying to install package that's already installed

  14. 14

    Check if an apt-get package is installed and then install it if it's not on Linux

  15. 15

    apt-get purge, install nginx; reports success but not installed (12.04)

  16. 16

    Use apt get install without inserting the DVD?

  17. 17

    How should one configure or install salt-cloud to use the Saltstack py3 repository to install the minion instead of the distribution (apt) repository?

  18. 18

    apt install php7.1-curl depends libcurl3 but I have libcurl4 installed

  19. 19

    apt-get install "maven" or "maven3"

  20. 20

    Unable to correctly install pip3 using apt-get

  21. 21

    problem installing sqlite3 using apt-get install

  22. 22

    How to adapt this python script to apt installed matplotlib vs pip3 installed

  23. 23

    Although I have Texlive installed from DVD apt-get suggests to install it every time, how can I avoid this behaviour?

  24. 24

    I installed a program by getting its source code, and then running `sudo make install`; how to make `apt-get` know about it?

  25. 25

    Django both installed via python3 and one via apt-get. Can I uninstall apt-get?

  26. 26

    how to get a string from .getId()

  27. 27

    How to get the newest version of a package installed via apt-get?

  28. 28

    How to get the directory that a package apt-get installed?

  29. 29

    How to get the GNOME 3 login manager installed?

HotTag

Archive