forked from rc/aircox
translation
This commit is contained in:
@ -6,13 +6,11 @@ A Station contains programs that can be scheduled or streamed. A *Scheduled Prog
|
||||
|
||||
Each program has a directory on the server where user puts its podcasts (in **AIRCOX_PROGRAM_DIR**). It contains the directories **archives** (complete show's podcasts) and **excerpts** (partial or whatever podcasts).
|
||||
|
||||
|
||||
## manage.py's commands
|
||||
* **diffusions**: update/create, check and clean diffusions based on programs schedules;
|
||||
* **import_playlist**: import a playlist from a csv file, and associate it to a sound;
|
||||
* **sound_monitor**: check for existing and missing sounds files in programs directories and synchronize the database. It can check for the quality of file and update sound info.
|
||||
* **sound_quality_check**: check for the quality of the file (don't update database);
|
||||
* **streamer**: audio stream generation and control it;
|
||||
* `diffusions`: update/create, check and clean diffusions based on programs schedules;
|
||||
* `import_playlist`: import a playlist from a csv file, and associate it to a sound;
|
||||
* `sounds_monitor`: check for existing and missing sounds files in programs directories and synchronize the database. It can check for the quality of file and update sound info.
|
||||
* `sounds_quality_check`: check for the quality of the file (don't update database);
|
||||
|
||||
|
||||
## Requirements
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -466,13 +466,13 @@ class Stream(models.Model):
|
||||
)
|
||||
begin = models.TimeField(
|
||||
_('begin'), blank=True, null=True,
|
||||
help_text=_('used to define a time range this stream is'
|
||||
help_text=_('used to define a time range this stream is '
|
||||
'played')
|
||||
)
|
||||
end = models.TimeField(
|
||||
_('end'),
|
||||
blank=True, null=True,
|
||||
help_text=_('used to define a time range this stream is'
|
||||
help_text=_('used to define a time range this stream is '
|
||||
'played')
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user