Re: Fedora 30, BootLoaderSpec and generating entries under /boot/loader/entries

2019-05-23 Thread ja
On Wed, 2019-05-22 at 20:00 +0100, ja wrote:
> On Wed, 2019-05-22 at 20:16 +0300, Kevin Wilson wrote:
> > Hi all,
> > 
> > I had installed Fedora 30,  on a dual boot machine which has a second
> > partition with Fedora 28.
> > Fedora 30  comes by default with a new boot loader spec.
> > 
> > I found under /boot/loader/entries/ the following:
> > 
> > ls /boot/loader/entries/
> > 
> > ec1b8b7719964c8b9a1d8db430c63fd6-0-rescue.conf
> > ec1b8b7719964c8b9a1d8db430c63fd6-5.0.9-301.fc30.x86_64.conf0
> > 
> > I want to be able to boot by default into Fedora 28.
> > 
> > Is there a way by some utility to generate entries under
> > /boot/loader/entries/ for the
> > Fedora 28  and choose Fedora 28 as the default ?
> > 
> > Or should I disable the boot loader spec in order to boot to Fedora 28
> > on this machine ?
> > 
> > Regards,
> > Kevin
> > 
> 
> I have had exactly this problem
> I have made some notes - attached
> 
> This is vital reading
> https://www.freedesktop.org/wiki/Specifications/BootLoaderSpec/
> 
> If they help or if you have a better insight than me
> please let me know!
> 
The reason I investigated this was that during installation of F30
no additional entries were generated for other partitions - by grub2-mkconfig.
I added my comments to
https://bugzilla.redhat.com/show_bug.cgi?id=1600778
Many subsequent attempts to use grub2-mkconfig failed to add
extra options.
The grub.cfg and associated files successfully boot F30.

During investigation of this I found the following that may be useful.
I do not understand the significance!

When grub2-mkconfig is run os-prober seems to create entries of the form
[root@naxos:/boot/efi/EFI/fedora]$ dmsetup ls 
osprober-linux-nvme0n1p7(253:2)
These entries seem to stop the mounting of the partitions
[root@naxos:~]$ blkid -c /dev/null  shows them as
/dev/mapper/osprober-linux-nvme0n1p7: LABEL="naxos7_F29" 
UUID="1a9ccef1-af1c-4c26-8e4d-64a25bc56fcc"
TYPE="ext4"
These entries can be "removed" and hence the partition "mounted" by using 
dmsetup remove /dev/mapper/osprober-linux-nvme0n1p7





___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: F30 Grub2-mkconfig and Grub2-install not Working Correctly?

2019-05-23 Thread Stephen Morris

On 23/5/19 3:49 pm, Tom H wrote:

On Thu, May 23, 2019 at 12:55 AM Stephen Morris
 wrote:

I have upgraded from F29 to F30 via the recommenced dnf method. I
have Fedora running in a vm under vmware player. Grub2-mkconfig and
grub2-install no longer seem to generate the grub menu as they did
under F29, the menu seems to be that generated by grubby (it could
be that turning off the suppression of sub-menu creation is now
being ignored). Looking at /boot/grub2/grub.cfg I cannot see any
references in there to kernels, so I have attached the file for
reference. Am I missing something or is the functionality now
different, /boot/grub2/grub.cfg is where I have always written the
grub.cfg via this process?

You have

insmod blscfg
blscfg

on lines 128-129.

So grub's setting up a generic BLS grub.cfg and you should have your
kernel specifications in "/boot/loader/entries/*.conf".

Does "/boot/grub2/i386-pc/blscfg.mod" exist on your system?

IIRC, the common bugs page recommends "configfile
/boot/grub2/grub.cfg.rpmsave" or "configfile /grub2/grub.cfg.rpmsave"
(depending on whether "/boot" is a separate filesystem) at the grub
prompt to use the previous grub.cfg.


Is it documented anywhere how to switch the system back to using, in my 
case, /boot/grub2/grub.cfg to provide the kernel menu structure via 
grub2-mkconfig and grub2-install as it was in previous versions of Fedora?



regards,

Steve



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: F30 Grub2-mkconfig and Grub2-install not Working Correctly?

2019-05-23 Thread Tom H
On Thu, May 23, 2019 at 11:12 AM Stephen Morris
 wrote:
> On 23/5/19 3:49 pm, Tom H wrote:
>> On Thu, May 23, 2019 at 12:55 AM Stephen Morris
>>  wrote:
>>>
>>> I have upgraded from F29 to F30 via the recommenced dnf method. I
>>> have Fedora running in a vm under vmware player. Grub2-mkconfig
>>> and grub2-install no longer seem to generate the grub menu as
>>> they did under F29, the menu seems to be that generated by grubby
>>> (it could be that turning off the suppression of sub-menu
>>> creation is now being ignored). Looking at /boot/grub2/grub.cfg I
>>> cannot see any references in there to kernels, so I have attached
>>> the file for reference. Am I missing something or is the
>>> functionality now different, /boot/grub2/grub.cfg is where I have
>>> always written the grub.cfg via this process?
>>
>> You have
>>
>> insmod blscfg
>> blscfg
>>
>> on lines 128-129.
>>
>> So grub's setting up a generic BLS grub.cfg and you should have
>> your kernel specifications in "/boot/loader/entries/*.conf".
>>
>> Does "/boot/grub2/i386-pc/blscfg.mod" exist on your system?
>>
>> IIRC, the common bugs page recommends "configfile
>> /boot/grub2/grub.cfg.rpmsave" or "configfile
>> //grub2/grub.cfg.rpmsave"
>> (depending on whether "/boot" is a separate filesystem) at the
>> grub prompt to use the previous grub.cfg.
>
> Is it documented anywhere how to switch the system back to using,
> in my case, /boot/grub2/grub.cfg to provide the kernel menu
> structure via grub2-mkconfig and grub2-install as it was in
> previous versions of Fedora?

I haven't tried it but setting "GRUB_ENABLE_BLSCFG=false"
"/etc/default/grub" _should_ (given the variable's name) allow
"grub2-mkconfig" give you an upstream-style "grub.cfg".
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Sam Varshavchik

Searching some likely keywords using "dnf list" came up empty.

There are some Android apps that stream video from the phone to  
Youtube/Facebook but also have an option to stream video to a custom RTSP or  
RTMP URL.


The only thing I could find in dnf are a few packages that can stream video  
files to an RTSP or an RTMP client. I'm looking to do the opposite, set up a  
server that receives streamed video and saves it to files. Anyone knows of  
anything that does that?


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Ed Greshko
On 5/23/19 8:44 PM, Sam Varshavchik wrote:
> Searching some likely keywords using "dnf list" came up empty.
>
> There are some Android apps that stream video from the phone to 
> Youtube/Facebook but
> also have an option to stream video to a custom RTSP or RTMP URL.
>
> The only thing I could find in dnf are a few packages that can stream video 
> files to an
> RTSP or an RTMP client. I'm looking to do the opposite, set up a server that 
> receives
> streamed video and saves it to files. Anyone knows of anything that does that?
>

rtmpdump ?

rtmpdump is a tool for dumping media content streamed over RTMP.


-- 
Right: I dislike the default color scheme Wrong: What idiot picked the default 
color scheme
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Ed Greshko
On 5/23/19 8:44 PM, Sam Varshavchik wrote:
> Searching some likely keywords using "dnf list" came up empty.
>
> There are some Android apps that stream video from the phone to 
> Youtube/Facebook but
> also have an option to stream video to a custom RTSP or RTMP URL.
>
> The only thing I could find in dnf are a few packages that can stream video 
> files to an
> RTSP or an RTMP client. I'm looking to do the opposite, set up a server that 
> receives
> streamed video and saves it to files. Anyone knows of anything that does that?

Oh, and VLC can capture an RTSP stream and convert/save to an mp4 file.  Is 
that useful?

-- 
Right: I dislike the default color scheme Wrong: What idiot picked the default 
color scheme
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Earl Terwilliger via users

What about SRS:

https://github.com/ossrs/srs/wiki/v2_EN_Home

We are using it as a vimeo replacement using OBS studio to stream to it
and transcode to FLV and MP4..
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Fedora & MIDI - recommendations request

2019-05-23 Thread Seth Kenlon
Specific to Rosegarden, I wrote this article:
https://opensource.com/article/18/3/make-sweet-music-digital-audio-workstation-rosegarden

For more general information about Linux and MIDI and Audio and
...stuff... I maintain a whole website on the topic. The catch is,
it's not specific to Fedora (and in fact is specific to Slackware, the
distro I use at home and, in the past, as a multimedia infrastructure
consultant). That said, there's a lot of useful information that
actually does apply equally to Fedora (and RHEL).

Rosegarden (again): http://slackermedia.info/handbook/doku.php?id=rosegarden

MIDI and Linux: http://slackermedia.info/handbook/doku.php?id=midi

JACK: http://slackermedia.info/handbook/doku.php?id=jack

I hope some of these are useful!



On Thu, May 23, 2019 at 12:02 PM Max Pyziur  wrote:
>
> On Wed, 22 May 2019, Samuel Sieb wrote:
>
> > On 5/22/19 8:20 AM, Max Pyziur wrote:
> >> Are there any recommendations for canonical/authoritative guides for using
> >> MIDI on Fedora?
> >
> > That's a wide topic.  Could you explain more specifically what you want to
> > do?
>
> I'm fluent in things like working with Musecore; by default using some
> sort of MIDI process it plays back whatever I annote. Transcribe! is a
> great resource for me.
>
> However, My first few tries at MIDI setup (trying to get Rosengarden
> working) on my Fedora machines didn't work.
>
> I've googled for links that offer step-by-step instructions. I've tried to
> follow them. Other projects and distractions have gotten in the way.
>
> So my request is to this Fedora Community, that knowledgebase, not
> Google's, for some sort of authoritative guidance on implementing MIDI on
> a Fedora based system.
>
> My laptop is a Dell XPS 13 L322X w an i7 processor; my desktop is a
> homespun Shuttle PC box.
>
> As some first projects, I'd like to create some backing tracks for
> practicing my keyboard (some walking bass lines and drums). Stuff like
> that.
>
> Much thanks,
>
> Max
>
> > ___
> > users mailing list -- users@lists.fedoraproject.org
> > To unsubscribe send an email to users-le...@lists.fedoraproject.org
> > Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
> > List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> > List Archives:
> > https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
> >
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives: 
> https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Why Must I Do "dnf clean all" Before Updating Will Proceed?

2019-05-23 Thread Garry Williams
On most occasions I have to clean files before I am allowed to update
a Fedora 30 system:

garry@ifr$ sudo dnf upgrade
[sudo] password for garry:
Fedora 30 - x86_64 - Updates  63 kB/s |  18 kB
Fedora 30 - x86_64 - Updates 226 kB/s | 659 kB
Failed to synchronize cache for repo 'updates'
Error: Failed to synchronize cache for repo 'updates'
garry@ifr$ sudo dnf clean all
68 files removed
garry@ifr$ sudo dnf upgrade
Fedora 30 openh264 (From Cisco) - x86_64  11 kB/s | 5.1 kB
Fedora 30 - x86_64 - Updates 2.3 MB/s |  12 MB
Fedora 30 - x86_64   1.0 MB/s |  70 MB
google-chrome 37 kB/s | 3.4 kB
Copr repo for qt5-qtbase-print-dialog-advanced o  91 kB/s | 100 kB
RPM Fusion for Fedora 30 - Free - Updates128 kB/s | 130 kB
RPM Fusion for Fedora 30 - Free  570 kB/s | 735 kB
RPM Fusion for Fedora 30 - Nonfree - Updates  54 kB/s |  34 kB
RPM Fusion for Fedora 30 - Nonfree   449 kB/s | 227 kB
Visual Studio Code   363 kB/s | 2.1 MB
Dependencies resolved.
==

Does anyone know what is special about this system that it requires
clean all before it will update?  I have two other systems that never
experience the same problem.

-- 
Garry Williams
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: OSM??

2019-05-23 Thread Beartooth
On Tue, 21 May 2019 16:16:23 -0700, Dave Stevens wrote:

> On Tue, 21 May 2019 17:26:03 - (UTC)
> Beartooth  wrote:
> 
>> but with a program so vast ...
> 
> don't think so. Vast data but only a browser is needed unless you want
> some special functions. I'm currently on a ubuntu system and here
> apt-cache search openstreetmap gives 70 hits. No doubt dnf will do
> something similar.

Hmmm I don't know if dnf has anything like apt-cache, but I 
tried plain "dnf search openstreetmap" and got only 17 hits. This is 
encouraging. Many thanks!

I've been mousing around like mad, and I still find an odd thing 
that I've always found before. OSM seems to be all about compiling data, 
rather than making actual maps, let alone using them. Also, btw,  I still 
see no trace of anything like topographic data.

That's a fine thing to do, and those who do it have a right to 
enthuse intensely; they're making discoveries and solving problems.

However, what I'm really trying to do is make certain personal 
maps, to scale, marked with things I choose, whose spatial interrelations 
I want to study. For me, that study and what I can learn from it are the 
whole point.

Maybe I'm barking up the wrong tree? Ought I rather to have yet 
another go at getting Wine a/o Crossover Office somehow to enable my GPSs 
and some commercial or USGS software to talk to each other? I'm beginning 
to doubt I'll live long enough 
-- 
Beartooth Staffwright, Not Quite Clueless Power User
Remember I know little (precious little!) of where up is.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Why Must I Do "dnf clean all" Before Updating Will Proceed?

2019-05-23 Thread Bruno Wolff III

On Thu, May 23, 2019 at 16:32:22 -0400,
 Garry Williams  wrote:

On most occasions I have to clean files before I am allowed to update
a Fedora 30 system:

   garry@ifr$ sudo dnf upgrade
   [sudo] password for garry:
   Fedora 30 - x86_64 - Updates  63 kB/s |  18 kB
   Fedora 30 - x86_64 - Updates 226 kB/s | 659 kB
   Failed to synchronize cache for repo 'updates'
   Error: Failed to synchronize cache for repo 'updates'


I get this once in a while. Usually if I grab a compose repo while it is 
building and then later try to update from an rsync'd normal repo. I haven't 
been able to figure out the reason yet. As far as I can tell it isn't 
miscopied data (except possibly in the cache).

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Sam Varshavchik

Ed Greshko writes:


On 5/23/19 8:44 PM, Sam Varshavchik wrote:
> Searching some likely keywords using "dnf list" came up empty.
>
> There are some Android apps that stream video from the phone to  
Youtube/Facebook but

> also have an option to stream video to a custom RTSP or RTMP URL.
>
> The only thing I could find in dnf are a few packages that can stream  
video files to an
> RTSP or an RTMP client. I'm looking to do the opposite, set up a server  
that receives
> streamed video and saves it to files. Anyone knows of anything that does  
that?


Oh, and VLC can capture an RTSP stream and convert/save to an mp4 file.  Is  
that useful?


It appears to be a streaming client that will connect to an existing RTSP  
stream server, and save the broadcasted stream.


As I said, I'm doing the opposite. I'm looking for a passive server that  
will accept a connection that's initiated by a streaming client, then  
receive, and save the stream.


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Sam Varshavchik

Earl Terwilliger via users writes:



What about SRS:

https://github.com/ossrs/srs/wiki/v2_EN_Home

We are using it as a vimeo replacement using OBS studio to stream to it
and transcode to FLV and MP4..


That seems to be what I'm looking for. Its packaging, though, appears to be  
quite ...interesting, with a handwritten configure script, rather than a  
stock autoconf or cmake script. The handwritten configure script is  
sprinkled with hardcoded callouts for Ubuntu and, apparently, CentOS, but it  
appears to be horribly broken on Fedora. This is what passes for a  
"configure" script in that package, a small sample:


   rm -rf ${SRS_OBJS}/st-1.9 && cd ${SRS_OBJS} &&
   unzip -q ../3rdparty/st-1.9.zip && cd st-1.9 && chmod +w * &&
   patch -p0 < ../../3rdparty/patches/1.st.arm.patch &&
// [ a bunch of patch commands ]
   make ${_ST_MAKE} EXTRA_CFLAGS="${_ST_EXTRA_CFLAGS}" &&

It actually unzips a bundled package, applies some patches to it, and runs  
make for it. And the unzipped+patched Makefile is broken on Fedora.


Looking at what's in the source tree:

https://github.com/ossrs/srs/tree/master/trunk/3rdparty

That's what gets bundled inside this beast.

I'll bet it statically links everything.

Not sure exactly how exactly one goes about preparing a standard RPM out of  
something like that.


Oh, and the icing on the cake is that after I managed to figure out a  
standard patch to work around the configure script's compilation problem,  
the configure script then tried to run sudo:


http_parser.c:1952:5: note: here
http_parser.c:1960:10: warning: this statement may fall through [-Wimplicit- 
fallthrough=]

http_parser.c:1965:5: note: here
http_parser.c: In function ‘http_parser_parse_url’:
http_parser.c:2093:18: warning: this statement may fall through [-Wimplicit- 
fallthrough=]

http_parser.c:2096:7: note: here
ar rcs libhttp_parser.a http_parser.o
[sudo] password for mrsam:

After examining what exactly it was trying to sudo, I determined that it was  
completely unnecessary; so I patched it out. That made the alleged configure  
step work. But the (real) make build bombed out because, apparently, it's  
broken with OpenSSL 1.1.0, and the configure script decided to compile  
against the system openssl, instead of unpacking and statically-building the  
bundled version. After a closer look, I found nothing in this package's  
build system that actually unpacks and builds the bundled openssl. The  
package appears to bundle an older version of OpenSSL, but the mechanism to  
unbundle it correctly appears to be missing. I gave up at this point.


Somehow, I doubt that this will be packaged in Fedora at any time in the  
foreseeable future.


That's really unfortunate, because this seems to be what I'm looking for.

Presuming, of course, it doesn't include a built-in crypto miner, or a spam  
server, or something of a similar nature. If you built this yourself, on  
Fedora, I'd be interested in seeing the steps you followed. If you just  
installed the CentOS tarball that this Chinese-developed software package  
apparently  provides for your convenience, you might want to consider  
reformatting all your machines and reinstalling CentOS. Just saying...


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Why Must I Do "dnf clean all" Before Updating Will Proceed?

2019-05-23 Thread Tom Horsley
On Thu, 23 May 2019 16:32:22 -0400
Garry Williams wrote:

> On most occasions I have to clean files before I am allowed to update
> a Fedora 30 system:

dnf seems to have convinced itself that the cache is
perfectly up to date no matter how old it is.

I now always do the two command sequence:

dnf makecache
dnf update

Less overhead than starting from scratch with "clean all".
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: OSM??

2019-05-23 Thread Clifford Snow
On Thu, May 23, 2019 at 2:11 PM Beartooth  wrote:

> On Tue, 21 May 2019 16:16:23 -0700, Dave Stevens wrote:
>
> > On Tue, 21 May 2019 17:26:03 - (UTC)
> > Beartooth  wrote:
>
>
> I've been mousing around like mad, and I still find an odd thing
> that I've always found before. OSM seems to be all about compiling data,
> rather than making actual maps, let alone using them. Also, btw,  I still
> see no trace of anything like topographic data.
>

OSM doesn't do topographic data

>
> That's a fine thing to do, and those who do it have a right to
> enthuse intensely; they're making discoveries and solving problems.
>
> However, what I'm really trying to do is make certain personal
> maps, to scale, marked with things I choose, whose spatial interrelations
> I want to study. For me, that study and what I can learn from it are the
> whole point.
>

Maybe you would be interested in QGIS. Open Source and cross platform.  You
can bring in data for OSM and other sources, create maps, and analyze data
all with QGIS. I use
https://copr.fedorainfracloud.org/coprs/dani/qgis/ repository
which has the latest version. you will need python3 and GDAL. There is a
bit of a learning curve with any geospatial system, but QGIS has responsive
mailing list and there are user groups around the world.

Best,
Clifford
@osm_washington
www.snowandsnow.us
OpenStreetMap: Maps with a human touch
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Custom rtsp/rtmp server for incoming video streams

2019-05-23 Thread Ed Greshko
On 5/24/19 5:39 AM, Sam Varshavchik wrote:
> Ed Greshko writes:
>
>> On 5/23/19 8:44 PM, Sam Varshavchik wrote:
>> > Searching some likely keywords using "dnf list" came up empty.
>> >
>> > There are some Android apps that stream video from the phone to 
>> > Youtube/Facebook but
>> > also have an option to stream video to a custom RTSP or RTMP URL.
>> >
>> > The only thing I could find in dnf are a few packages that can stream 
>> > video files to an
>> > RTSP or an RTMP client. I'm looking to do the opposite, set up a server 
>> > that receives
>> > streamed video and saves it to files. Anyone knows of anything that does 
>> > that?
>>
>> Oh, and VLC can capture an RTSP stream and convert/save to an mp4 file.  Is 
>> that useful?
>
> It appears to be a streaming client that will connect to an existing RTSP 
> stream server,
> and save the broadcasted stream.
>
> As I said, I'm doing the opposite. I'm looking for a passive server that will 
> accept a
> connection that's initiated by a streaming client, then receive, and save the 
> stream.

Oh, OK.  I obviously misunderstood.

-- 
Right: I dislike the default color scheme Wrong: What idiot picked the default 
color scheme
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org