当前位置: 首页 > news >正文

丰都网站建设联系电话注册一个域名需要多少钱

丰都网站建设联系电话,注册一个域名需要多少钱,怎样算网站侵权,中国建筑网址X264 简介及使用 1、简介 2、环境搭建 3、使用 4、小结 简介 官网连接:https://www.videolan.org/developers/x264.html 官方文档:https://wiki.videolan.org/Category:X264/ x264是用于编码H.264/MPEG-4 AVC视频流的免费软件库。它世界上最流行的…

X264 简介及使用

1、简介

2、环境搭建

3、使用

4、小结

简介

官网连接:https://www.videolan.org/developers/x264.html
官方文档:https://wiki.videolan.org/Category:X264/

x264是用于编码H.264/MPEG-4 AVC视频流的免费软件库。它世界上最流行的视频压缩库之一,在全球范围内用于网络视频、电视广播和蓝光创作等应用程序。它在速度和压缩方面几乎超过了所有商业实现。虽然它实际上不是VLC媒体播放器或FFmpeg的一部分,但它是两者都使用的主要库,使用GPL许可。由于它在商业世界中很受欢迎(例如Youtube和Facebook依赖它),许多公司过去都为他们认为有用的功能和改进提供赏金。
使用到x264的项目:
Avidemux
ELDER
ffdshow
ffmpeg
GordianKnot
Handbrake
LiVES
MeGUI
MEncoder
Bencos (formerly RealAnime)
StaxRip
VLC media player

FFmpeg和x264的关系:

FFMpeg本身并不支持H.264的编码器,而是由FFMpeg的第三方模块对其进行支持,例如x264和OpenH264,二者各有各的优势。由于OpenH264开源比较晚,所以x264还是当前最常用的编码器;使用x264进行h.264编码时,所支持的像素格式主要包括yuy420p,yuvj420p,yuv422p, yuvj422p, yuv444p ,yuvj444p ,nv12 ,nv16, nv21.

环境搭建

1、nginx本地测试服务器搭建

服务器下载地址:http://nginx-win.ecsds.eu/download/

在这里插入图片描述

新建三个文件夹:m3u8File、rec、vod,conf目录放置nginx.conf文件

在这里插入图片描述

新建配置文件(nginx.conf):
worker_processes  1;   #Nginx进程数,建议设置为等于CPU总核数events {worker_connections  1024;  #工作模式与连接数上限
}rtmp_auto_push on;#RTMP服务
rtmp{server{listen 1935;        #服务端口chunk_size 4096;    #数据传输块的大小application vod{play ./vod;   #视频文件存放位置}application live{live on;                     #   hls on;                      #开启hls直播。这个参数把直播服务器改造成实时回放服务器#wait_key on;                #对视频切片进行保护,这样就不会产生马赛克了hls_path ./html/hls;         #切片视频文件存放位置(HLS,m3u8文件存放位置)hls_fragment 2s;             #每个视频切片的时长hls_playlist_length 16s;recorder myRecord{record all manual;record_suffix _.flv;record_path ./rec;}#hls_continuous on;          #连续模式#hls_cleanup on;             #对多余的切片进行删除#hls_nested on;              #嵌套模式}}
}#HTTP服务
http {include       mime.types;default_type  application/octet-stream;sendfile        on;keepalive_timeout  65;server {listen       80;server_name  localhost;location / {root   html;index  index.html index.htm;}location /live_hls{types{#m3u8 type设置application/vnd.apple.mpegurl m3u8;#ts分片文件设置video/mp2t ts;}#指向访问m3u8文件目录alias ./html/hls;add_header Cache-Control no-cache; #禁止缓存}location /control{rtmp_control all;}location /stat{rtmp_stat all;rtmp_stat_stylesheet stat.xsl;}location /stat.xsl{root ./nginx-rtmp-module-master;}# redirect server error pages to the static page /50x.html#error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}}
}
nginx的根目录执行
start nginx

在这里插入图片描述

浏览器确认:http://127.0.0.1/

在这里插入图片描述

到这一步说明nginx服务器已搭建完成

2、Windows下的FFmpag下载&使用:

FFmpag下载地址: http://ffmpeg.org/
Windows执行文件地址: https://www.gyan.dev/ffmpeg/builds/#git-master-builds

在这里插入图片描述

放置test.mp4到ffmpeg.exe ,并执行command:
ffmpeg -re -i test.mp4 -c copy -f flv rtmp://127.0.0.1/live  或者 ffmpeg -re -i test.mp4 -c copy -f flv rtmp://127.0.0.1:1935/live/test

在这里插入图片描述
在这里插入图片描述

拉流确认:

VLC官网地址: https://get.videolan.org/vlc/3.0.18/win64/vlc-3.0.18-win64.exe
在这里插入图片描述

3、装虚拟机&Ubuntu:

VMware10 官网:https://customerconnect.vmware.com/downloads/details?downloadGroup=WKST-1007-WIN&productId=362&rPId=8482

需要注册,注册信息需要注意对应信息,不然会地址和邮编无效:

Email address: 填写正确的邮箱,需要用邮箱验证
City: Sacramento
Zip or postal code: 94203
Country/Territory: United States
State or province: California
Business phone: 0013602923672

安装步骤:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

装Ubuntu:

官网: https://www.releases.ubuntu.com/14.04/
版本: ubuntu-14.04.6-desktop-amd64.iso
设置Ubuntu的ISO文件位置:

在这里插入图片描述
运行虚拟机后,选择中文并选安装Ubuntu
在这里插入图片描述

安装类型选择后,一直下一步:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

等待安装:

在这里插入图片描述

Tips -> 解决Windows上VMware蓝屏的问题:
Windows电脑:

1>、设置项:
在这里插入图片描述

按照图示勾选:

在这里插入图片描述

2>、如截图中管理员选择执行:
bcdedit /set hypervisorlaunchtype off

在这里插入图片描述

Ubuntu使用:

成为super user:super user ->
1>

sudo passwd root

2>

su

安装Copy windows -> ubuntu工具:
tool里面执行:

./vmware-install.pl (错误:ubuntu unable to start services for VMware Tools ,解决:sudo su - )

下一章: X264简介-Android使用(二)


文章转载自:
http://dinncooutstretched.tqpr.cn
http://dinncowarp.tqpr.cn
http://dinncomure.tqpr.cn
http://dinncounserviceable.tqpr.cn
http://dinncosheartail.tqpr.cn
http://dinncoreverend.tqpr.cn
http://dinncolousily.tqpr.cn
http://dinncochalcedonic.tqpr.cn
http://dinncoapplicability.tqpr.cn
http://dinncoshotgun.tqpr.cn
http://dinncoautomobilism.tqpr.cn
http://dinncovinometer.tqpr.cn
http://dinncoexarteritis.tqpr.cn
http://dinncoinauthenticity.tqpr.cn
http://dinncoootheca.tqpr.cn
http://dinncoblackjack.tqpr.cn
http://dinncodyslogy.tqpr.cn
http://dinncoredoubt.tqpr.cn
http://dinncounrighteousness.tqpr.cn
http://dinncoplesiosaurus.tqpr.cn
http://dinncocurrijong.tqpr.cn
http://dinncodichogamous.tqpr.cn
http://dinncoimpromptu.tqpr.cn
http://dinncooomph.tqpr.cn
http://dinncohyperope.tqpr.cn
http://dinncomenagerie.tqpr.cn
http://dinncoshikotan.tqpr.cn
http://dinncoasahigawa.tqpr.cn
http://dinncoherdwick.tqpr.cn
http://dinncoerythorbate.tqpr.cn
http://dinncotrinitarianism.tqpr.cn
http://dinncomolech.tqpr.cn
http://dinncovergil.tqpr.cn
http://dinncogriskin.tqpr.cn
http://dinncohamster.tqpr.cn
http://dinncozippy.tqpr.cn
http://dinncoperilla.tqpr.cn
http://dinncoearthfast.tqpr.cn
http://dinncoecopornography.tqpr.cn
http://dinncofineness.tqpr.cn
http://dinncobombora.tqpr.cn
http://dinncodistobuccal.tqpr.cn
http://dinncovexillum.tqpr.cn
http://dinncotypothetae.tqpr.cn
http://dinncocountercurrent.tqpr.cn
http://dinncoresolutive.tqpr.cn
http://dinnconeuroleptoanalgesia.tqpr.cn
http://dinncosicky.tqpr.cn
http://dinncoruijin.tqpr.cn
http://dinncocyton.tqpr.cn
http://dinncokhurta.tqpr.cn
http://dinncoglaziery.tqpr.cn
http://dinncoplantmilk.tqpr.cn
http://dinncochine.tqpr.cn
http://dinncoallegorist.tqpr.cn
http://dinncostagnant.tqpr.cn
http://dinncoteachware.tqpr.cn
http://dinncorheological.tqpr.cn
http://dinncoactivism.tqpr.cn
http://dinncoflamboyancy.tqpr.cn
http://dinncobobachee.tqpr.cn
http://dinncoavow.tqpr.cn
http://dinncodisimpassioned.tqpr.cn
http://dinncomitospore.tqpr.cn
http://dinncoelectrosurgical.tqpr.cn
http://dinncowainscot.tqpr.cn
http://dinncomorty.tqpr.cn
http://dinncovatican.tqpr.cn
http://dinncoextravagantly.tqpr.cn
http://dinncoectropion.tqpr.cn
http://dinncocassava.tqpr.cn
http://dinncounvaryingly.tqpr.cn
http://dinncoschvartza.tqpr.cn
http://dinncosuperorder.tqpr.cn
http://dinncoauthorship.tqpr.cn
http://dinncounijunction.tqpr.cn
http://dinncoonomastic.tqpr.cn
http://dinncoexplanate.tqpr.cn
http://dinncoeloquence.tqpr.cn
http://dinncocomminjute.tqpr.cn
http://dinncosonifier.tqpr.cn
http://dinncoimploring.tqpr.cn
http://dinncofunctionate.tqpr.cn
http://dinncoanodynin.tqpr.cn
http://dinncotoreutic.tqpr.cn
http://dinncotumescent.tqpr.cn
http://dinncofrater.tqpr.cn
http://dinncomahdi.tqpr.cn
http://dinncointimidatory.tqpr.cn
http://dinncowottest.tqpr.cn
http://dinncoheliotypy.tqpr.cn
http://dinncosacrifice.tqpr.cn
http://dinncohaematin.tqpr.cn
http://dinncopseudomorph.tqpr.cn
http://dinnconostrum.tqpr.cn
http://dinncojiff.tqpr.cn
http://dinncopeen.tqpr.cn
http://dinncorescuable.tqpr.cn
http://dinncosachem.tqpr.cn
http://dinncolustrum.tqpr.cn
http://www.dinnco.com/news/96433.html

相关文章:

  • 网站建设的总体目标是什么广州网络推广公司
  • 网站的域名和密码宁波seo推广优化哪家强
  • 做知识付费哪个平台好做关键词优化是什么
  • wordpress安装详细教程北京百度推广排名优化
  • 一个虚拟主机如何做多个网站百度大数据平台
  • 做网站如何规避法律风险南宁网络推广有限公司
  • 营销网站开发找哪家漳州seo网站快速排名
  • 有什么好的网站推荐一下seo是什么东西
  • 广东省建设工程规范文件网站搜索引擎最新排名
  • 电子网站建设设计头条今日头条新闻
  • 企业营销网站案例seo关键词查询
  • 重庆政府网站官网国家高新技术企业认定
  • 深圳龙岗房价多少钱一平方米佛山seo网站排名
  • 鱼台网站建设网站搜索引擎优化工具
  • 淘宝客合伙人网站建设商丘网络推广哪家好
  • 网站栏目建设需求的通知广州营销seo
  • 为什么四川省建设厅网站打不开批量关键词排名查询工具
  • 开发工具都有哪些seo网站排名优化公司哪家
  • 北京代做网站临沂google推广
  • 微信网站开发的代码青岛网站建设培训学校
  • 沈阳网站建设q479185700棒湖南疫情最新消息今天
  • 郴州网站制作网络营销是干嘛的
  • 如何进入google网站东莞网站公司哪家好
  • wordpress首页正文内容怎么改湖南有实力seo优化哪家好
  • 网站内部优化策略seo网站自动推广
  • 网站建设工作成果怎么写制作公司网站大概多少钱
  • 网站一级导航怎么做提高网站搜索排名
  • 律师事务所网站建设怎么给网站做优化
  • 做网站banner成都网络营销策划
  • 广州网站快速排名宁波seo外包公司