You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
Hey, I want to encode a video stream (jpeg based) to a h264 video stream. On this web page, I can see, it should be possible with the A20. My HW is a BananaPi board with an A20. I really want to try a h264 encoder on linux.
Any hint, where I can have a look, or more information ?
Thanks
ditma...@gmail.com
unread,
Sep 10, 2014, 8:59:46 AM9/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com, ditma...@gmail.com
Hmm, will have a look into that. I think, need to search a little bit more.
For my better understanding,
in the matrix, only the Blob-Encoder can Handle h264 encoder
- Blob Encoder is in this case, the original binary's from CedarX/allwinner. But this binary's are only working on Android ?
- On linux, it doesn't work ? Or doesn't work stable?
ditma...@gmail.com
unread,
Sep 10, 2014, 3:00:28 PM9/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
CedarX is used successfull in some linux images. For example aruntu. http://cubiuntu.com
Toroshin Dmitry
unread,
Sep 10, 2014, 3:20:44 PM9/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
There is softfloat. It can work on armhf, bus static linking is impossible, but you can link it to shared object and load dinamicly like libhybris (simply use libhybris with android version. As alternative you can use PoC opensource encoder, that can encode only I frames. It has very hing bitrate, but suitable, for example, for streaming.
psandmen
unread,
Sep 10, 2014, 4:03:33 PM9/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
Ok, will read about softfloat.
PoC opensource encoder, I need to compress the mjpeg stream to a ~8Mbit video stream :-). (wifi)
psandmen
unread,
Sep 10, 2014, 4:04:06 PM9/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com, ditma...@gmail.com
Ok, thanks. Will have a look for it. Maybe possible to get this running on bananaPi
ditma...@gmail.com
unread,
Sep 10, 2014, 7:00:28 PM9/10/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
I dont know. Haven`t done this. You need a player or streaming client that is compiled for cedarx usage.
psandmen
unread,
Sep 11, 2014, 6:35:56 AM9/11/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com, ditma...@gmail.com
No, didn't really want to play that video on BananaPi, I want to stream it forward to a WiFi device. The BananaPi should "only" transcode the stream. :-) So, ffmpeg would be nice, then I can incoming stream transcode to h264 codec.
Toroshin Dmitry
unread,
Sep 11, 2014, 7:23:59 AM9/11/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
I think it is impissible to run decoder and encoder at the same time because it uses same memory regions. But you can try to write converter you need. Decoder and encoder uses same libraries. Try look at the sample codes and encode each frame after encoding. Other way is decoding some count of frames to buffer, deinit eecoder, init encoder and encode it in cycle.
psandmen
unread,
Sep 11, 2014, 7:49:56 AM9/11/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to linux...@googlegroups.com
I have a raw byte image stream, that means, I can feed the encoder with raw jpeg files. And this tream, I want to transcode into h264 codec via GPU.
This guy, is doing that via ffmpeg. The only diffeerence I want to do is, to write it not to a file, I will write the output to gstreamer. And gstreamer should only be a "rtsp" server, and managing the overlay.