robotastic / trunk-recorder

Records calls from a Trunked Radio System (P25 & SmartNet)
GNU General Public License v3.0
872 stars 195 forks source link

Custom filenames #66

Closed robotastic closed 7 years ago

robotastic commented 8 years ago

-Instead of creating the JSON files, can the file names be written as "HHMMSS-talkgroup-unit-unit..."? I've noticed that the JSON files occasionally weren't being created (may be a resource issue), and I think I'm going to look for an app that can index calls by file name instead of JSON. If the files are created at the start of calls the unit numbers could be added in the post-call encoding script. I don't really care what frequency the system picked for a particular call. #64

rosecitytransit commented 8 years ago

Not sure about others, but what I could use is, in nonstop_wavfile_sink_impl.cc, having the radio IDs be put into a non-duplicated dash-separated string instead the array, and have that string be a parameter that is passed to the encoding script in call.cc. Something like:

if (call_source not in sourcestring)
  sourcestring = sourcestring + "-" + call_source
robotastic commented 8 years ago

OK - I think that could work. It would just be a '-' string with the numbers, that would be passed to the encoding shell script.