Loading sub-menu...

1.3.0 Release Candidate Process

In this page you can find the following items:

Release Candidate Source Code


The following list includes all the release candidates published so far for the 1.3.0 version:

New features and improvements


The following list includes the most important improvements on this new release. During the release candidate testing process we will be updating the documentation, both in the code (at docs/) and in this wiki regarding these changes. Anyway, you can use the usual channels for any questions or suggestions - email, github or the community list.

New Features:

Improvements:

New or improved Plugins

  • New Check_Repository_plugin: To start missed scheduled recordings on startup.
  • Screen_Saver_Plugin: improved screensaver control for Ubuntu 12.04.
  • No_audio_dialog_plugin: general improvement, more configurable.

New documentation – under construction


New documentation has been included in the code (docs folder) as well as in this wiki. This documentation is both partial and provisional but is already useful. Following the release process we will be updating it.

Till the 1.3.0 release documentation is best consulted on the wiki. New pages include:

Acknowledgments

We will like to thank those whose contribution to this 1.3.0 release has been outstanding:

Karen Dole, Harvard University (USA)
Jussi Talaskivi,University of Juväskilä (Finland)
Olav Bringedal, University of Bergen ( Norway)
Guillem Rivas & Miguel Escrivá, University Politechnic of Valencia (Spain)

We also want to extend our gratitude to all the people that have tested Galicaster, contributed reporting bugs, proposed issues and given suggestions through the different communication channels.

New Features description


External scripts in profiles

From 1.3 every profile can set up a configuration script. The script will be executed before the profile is loaded.
Usually a script will configure a certain device but it could include any other task.

To specify the script to be executed, include its full path in the profile data section:

[data]
name = profile
execute = /home/user/scripts/script1.sh

Example:
Configure a Logitech c920 to a power line frequency of 50Hz

# file: /home/user/scripts/script1.sh
v4l2-ctl -d /dev/webcam -c power_line_frequency=1

Configurable Encoder and Muxer

Most of the device modules of Galicaster are now able to configure the encoder and muxer which will process the data.
Exceptions include:

  • Hauppauge cannot define the encoder nor the muxer.
  • RTP only allows to define the muxer

Parameters and examples:

  • videoencoder
    • x264enc quantizer=22 speed-preset=2 profile=1
    • xvidenc bitrate=50000000
    • ffenc_mpeg2video quantizer=4 gop-size=1 bitrate=10000000
  • audioencoder
    • lamemp3enc target=1 bitrate=192 cbr=true
  • muxer
    • flvmux
    • avimux
    • mpegtsmux
In RC1 the Pulse parameter is encoder, not audioencoder. This denomination was corrected in RC2.

To know more of the parameters of each muxer and encoder consult the Gstreamer documentation.

gst-inspect flvmux

Consult us for instructions to configure your custom encoder and muxer.

Example:
Configure a Logitech c920 to encode a 720p, H264+MP4 video:

[track1]
name = Webcam
videoencoder = x264enc bitrate=1000 pass=5 quantizer=23
location = /dev/video0
file = CAMERA.mp4
device = v4l2
muxer = mp4mux faststart=true
caps = image/jpeg, framerate = 24/1, width=1280, height=720
flavor = presenter

RTP device module

A new device module has been developed in order to provide compatibility with network cameras and other RTP-based devices. This module records video or video+audio encoded on MPEG4 or H264, with audio in ACC or MP3.

The module has been extensively tested over several Axis network cameras, with and without audio. Other devices has been tested but in a lesser degree - Epiphan Broadcasters, for instance-. If you test this module on other cameras, please report your results back to the community list.

Consult the module configuration and contact us for troubleshooting.

Custom device module

This feature is meant for advanced users. You can define a custom bin to test new sources within Galicaster.

[track1]
name = custom
location = default
file = CAMERA.avi
device = custom
flavor = presenter
active = True
pipestr = videotestsrc name=gc-custom-src is-live=true ! video/x-raw-yuv,framerate=10/1,width=640,height=480 ! tee name=tee-vt  ! queue ! ffmpegcolorspace ! xvimagesink sync=false async=false qos=false name=gc-custom-preview tee-\
vt. ! queue ! valve drop=false name=gc-custom-valve ! queue ! ffmpegcolorspace ! queue ! filesink name=gc-custom-sink async=false
Element naming
The elements source (src), valve and sink must be named as those in the example, so that the program can identify them.

Configurable logger

The log files location, the minimum log level shown and whether the logs rotate or not can be easily set up in this version:

[logger]
path = /var/log/galicaster/galicaster.log
level = DEBUG
rotate = True
Directory IO permissions
Make sure Galicaster has write permissions in the directory where the logs are to be stored.

Galicaster can also use the system log (syslog) instead:

[logger]
use_syslog = True

REST Plugin

The REST endpoint plugin for Galicaster is a module to provide an experimental REST interface to access some parameters and features of Galicaster.

If activated, the REST plugin will response at the localhost address through the 8080 port.

Current endpoints include:

URL Description
/state Show some state values
/repository List MP keys
/repository/<id> Get MP manifest (XML)
/metadata/<id> Get MP metadata (JSON)
/start Start a manual recording
/stop Stop current recording
/operation/ingest/<id> Ingest MP
/operation/sidebyside/>id> Export MP to side-by-side
/operation/exporttozip/<id> Export MP to zip
/screen Get a screnshot of the current desktop

Activating this plugin is as simple as:

[plugins]
rest = True
Visualizing JSON
To test this plugin, we recommend using add-ons on your browser to visualize JSON data.

Galicaster 1.3 Metadata Treatment

Before Galicaster 1.3, only some metadata was collected, specially with Series metadata, where only name and identifier were preserved.

After studying and discussing the current situation with metadata regarding Matterhorn and Galicaster, we have made the following modifications in the behaviour on Galicaster's side:

  • All metadata is captured, both in episode and series.
  • If custom parameters are included in the Matterhorn schedule they are preserved through Galicaster.
  • The only parameters that can be modified are: title, presenter, language, description and series.
    • A change in series makes all series parameters change at once.
  • Empty parameters are not included in the files.

Unfortunately Matterhorn overwrites the metadata of a returning mediapackage, so modifications have to be made in order to preserve any changes made on the capturer. However, if a mediapackage is ingested a second time, all the metadata - but the identifier - will be preserved.

Regarding device behaviour on missing signal and resolution change.

We've compiled a list of the behaviour of the video devices when the signal is missing - unplugged or camera off - or the resolution changes - for VGA capturing devices.

This list was checked over Ubuntu 12.04 with newest drivers and Galicaster 1.3.0rc1

  • Datapath:
    • Provides configurable No signal black screen, with time counter.
    • Scale to designated resolution.
    • We recommend using the newer possible driver.
  • NCast:
    • Provides mock signal.
    • Scales input.
  • Epiphan:
    • Newest drivers provides green screen on failure and scales on resolution change.
    • V4L2 device module can be used instead of Epiphan's, specifying caps
  • Osprey:
    • provides a blue screen
  • Bluecherry PV:
    • provides a blue screen with caps well configured, otherwise it may fail
  • Hauppauge:
    • Provides black. If configured on Tuner it provides noise.
    • Unfortunately, switch to a good input and standard requires to stop the preview. Other sources can switch on runtime (Osprey f.i.).
  • RTP: Fails
  • Blackmagic: Fails "silently".
    • It may be a GStreamer issue since the driver works with the vendor SW.
    • External HW can prevent failures.
    • Doesn't allow resolution change.
  • Firewire: Fails
  • Webcams: Fails and Galicaster crashes.

Silently means that it won't report an error on Galicaster but the resulting MP will be erronous.

Summing up; Firewire, RTP, webcams and Blackmagic sources need continuous signal.
If signal recovers, user can reload the profile except for webcams, where Galicaster needs to be restarted manually.


Skip to end of metadata
Go to start of metadata