All Projects → jocover → Jetson Ffmpeg

jocover / Jetson Ffmpeg

Licence: other
ffmpeg support on jetson nano

Labels

Projects that are alternatives of or similar to Jetson Ffmpeg

Mobile Ffmpeg
FFmpeg for Android, iOS and tvOS. Not maintained anymore. Superseded by FFmpegKit.
Stars: ✭ 3,204 (+943.65%)
Mutual labels:  ffmpeg
Ffmpeg Cpp
A clean, easy-to-use C++ wrapper around the ffmpeg libraries
Stars: ✭ 281 (-8.47%)
Mutual labels:  ffmpeg
Ffmpeg Build Script
The FFmpeg build script provides an easy way to build a static FFmpeg on OSX and Linux with non-free codecs included.
Stars: ✭ 290 (-5.54%)
Mutual labels:  ffmpeg
Video Hub App
Official repository for Video Hub App
Stars: ✭ 272 (-11.4%)
Mutual labels:  ffmpeg
Fvid
fvid is a project that aims to encode any file as a video using 1-bit color images to survive compression algorithms for data retrieval.
Stars: ✭ 276 (-10.1%)
Mutual labels:  ffmpeg
Avbuild
ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc.
Stars: ✭ 285 (-7.17%)
Mutual labels:  ffmpeg
Node Ffmpeg Installer
Platform independent binary installer of FFmpeg for node projects
Stars: ✭ 255 (-16.94%)
Mutual labels:  ffmpeg
Jessibuca
Jessibuca是一款开源的纯H5直播流播放器
Stars: ✭ 301 (-1.95%)
Mutual labels:  ffmpeg
Youtube Audio Stream
youtube audio stream
Stars: ✭ 276 (-10.1%)
Mutual labels:  ffmpeg
Awesome Live Stream
Webrtc && Nginx && DASH && Quic 学习资料收集,持续更新中
Stars: ✭ 290 (-5.54%)
Mutual labels:  ffmpeg
Rxffmpeg
🔥💥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac + opencore-amr + openssl ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能:视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片,抖音首页,视频播放器及支持 OpenSSL https 等主流特色功能
Stars: ✭ 3,358 (+993.81%)
Mutual labels:  ffmpeg
Ffdynamic
Library with dynamic audio/video composition and runtime control
Stars: ✭ 274 (-10.75%)
Mutual labels:  ffmpeg
Gsyvideoplayer
视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。
Stars: ✭ 16,948 (+5420.52%)
Mutual labels:  ffmpeg
Python Ffmpeg Video Streaming
📼 Package media content for online streaming(DASH and HLS) using FFmpeg
Stars: ✭ 269 (-12.38%)
Mutual labels:  ffmpeg
Yunbt
Aria2 FFmpeg 的多用户下载视频转码
Stars: ✭ 294 (-4.23%)
Mutual labels:  ffmpeg
Qtav
A cross-platform multimedia framework based on Qt and FFmpeg(https://github.com/wang-bin/avbuild). High performance. User & developer friendly. Supports Android, iOS, Windows store and desktops. 基于Qt和FFmpeg的跨平台高性能音视频播放框架
Stars: ✭ 2,997 (+876.22%)
Mutual labels:  ffmpeg
Modfy.video
A video transcoder and converter built using Web Assembly and FFMPEG to transcode and convert videos right in your browser while protecting your privacy
Stars: ✭ 283 (-7.82%)
Mutual labels:  ffmpeg
Ffmprovisr
Repository of useful FFmpeg commands for archivists!
Stars: ✭ 304 (-0.98%)
Mutual labels:  ffmpeg
Androidffmpeg
android 读取摄像头和麦克风,使用rtmp推流
Stars: ✭ 298 (-2.93%)
Mutual labels:  ffmpeg
Ffmpeg Android Java
FFmpeg Android java is a java library that simplifies your task of using ffmpeg in Android project which I've compiled using FFmpeg-Android
Stars: ✭ 3,098 (+909.12%)
Mutual labels:  ffmpeg

jetson-ffmpeg

L4T Multimedia API for ffmpeg

1.build and install library

git clone https://github.com/jocover/jetson-ffmpeg.git
cd jetson-ffmpeg
mkdir build
cd build
cmake ..
make
sudo make install
sudo ldconfig

2.patch ffmpeg and build

git clone git://source.ffmpeg.org/ffmpeg.git -b release/4.2 --depth=1
cd ffmpeg
wget https://github.com/jocover/jetson-ffmpeg/raw/master/ffmpeg_nvmpi.patch
git apply ffmpeg_nvmpi.patch
./configure --enable-nvmpi
make

3.using

Supports Decoding

  • MPEG2
  • H.264/AVC
  • HEVC
  • VP8
  • VP9

example

ffmpeg -c:v h264_nvmpi -i input_file -f null -

Supports Encoding

  • H.264/AVC
  • HEVC

example

ffmpeg -i input_file -c:v h264_nvmpi <output.mp4>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].