You are here

INSTALL.txt in Video 7.2

Same filename and directory in other branches
  1. 5 INSTALL.txt
  2. 6 INSTALL.txt
  3. 6.2 INSTALL.txt
  4. 6.3 INSTALL.txt
  5. 7 INSTALL.txt
REQUIREMENTS
------------

INSTALL INSTRUCTIONS FOR VIDEO.MODULE
-------------------------------------
- See : http://video.heidisoft.com/documentation/welcome-video-module-documentation


MIGRATE INSTRUCTIONS TO VIDEO.MODULE
-------------------------------------
- See : http://drupal.org/node/713482


FFMPEG CONFIGURATIONS
---------------------

This helper module facilitates uploading new videos using the video module. It
features a batch processing queue for videos to be transcoded and automatic
thumbnail generation.

Install instructions
--------------------

1. Activate the auto conversion and auto thumbnails when creating content
2. Setup it's advanced options to meet your needs
3. Move (or symlink) video_scheduler.php into your Drupal root
4. Check permissions of the files and folders (/tmp/video and files/* must be
writable by the webserver or the user executling the cron job)
5. Schedule the execution of video_scheduler.php using unix cron:
  
  The crontab should look something like this:

  # m     h       dom     mon     dow     command
  */20    *        *       *       *      cd /absolute/path/to/drupal/ ; php video_scheduler.php http://www.example.com/path_to_drupal

  This will execute the video_scheduler every 20 minutes.

  Note that the video_scheduler doesn't produce any output and cannot be called
  from the web. It will, however, put some information in the watchdog.



Troubleshooting
------------------------

Configuring and installing ffmpeg in a web server environment might be pretty
difficult. In order to help you troubleshoot the transcoding process the ffmpeg
helper puts debugging informations on the drupal logs. I strongly suggest to
have a look at them if you are experiencing problems with transcoding.

The ffmpeg puts in the drupal logs the commands it was trying to execute. You
might try to rerun them on a command shell in order understand what went wrong.

Or contact a Drupal developer

File

INSTALL.txt
View source
  1. REQUIREMENTS
  2. ------------
  3. INSTALL INSTRUCTIONS FOR VIDEO.MODULE
  4. -------------------------------------
  5. - See : http://video.heidisoft.com/documentation/welcome-video-module-documentation
  6. MIGRATE INSTRUCTIONS TO VIDEO.MODULE
  7. -------------------------------------
  8. - See : http://drupal.org/node/713482
  9. FFMPEG CONFIGURATIONS
  10. ---------------------
  11. This helper module facilitates uploading new videos using the video module. It
  12. features a batch processing queue for videos to be transcoded and automatic
  13. thumbnail generation.
  14. Install instructions
  15. --------------------
  16. 1. Activate the auto conversion and auto thumbnails when creating content
  17. 2. Setup it's advanced options to meet your needs
  18. 3. Move (or symlink) video_scheduler.php into your Drupal root
  19. 4. Check permissions of the files and folders (/tmp/video and files/* must be
  20. writable by the webserver or the user executling the cron job)
  21. 5. Schedule the execution of video_scheduler.php using unix cron:
  22. The crontab should look something like this:
  23. # m h dom mon dow command
  24. */20 * * * * cd /absolute/path/to/drupal/ ; php video_scheduler.php http://www.example.com/path_to_drupal
  25. This will execute the video_scheduler every 20 minutes.
  26. Note that the video_scheduler doesn't produce any output and cannot be called
  27. from the web. It will, however, put some information in the watchdog.
  28. Troubleshooting
  29. ------------------------
  30. Configuring and installing ffmpeg in a web server environment might be pretty
  31. difficult. In order to help you troubleshoot the transcoding process the ffmpeg
  32. helper puts debugging informations on the drupal logs. I strongly suggest to
  33. have a look at them if you are experiencing problems with transcoding.
  34. The ffmpeg puts in the drupal logs the commands it was trying to execute. You
  35. might try to rerun them on a command shell in order understand what went wrong.
  36. Or contact a Drupal developer