
Recherche avancée
Autres articles (64)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (12784)
-
Howto speed up Video Streaming with ffserver and ffmpeg + x265
30 mars 2016, par binaryCodeBelow my ffserver.conf :
Port 8090 # Port to bind the server to
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 10000 # Maximum bandwidth per client
# set this high enough to exceed stream bitrate
CustomLog -
#NoDaemon # Remove this if you want FFserver to daemonize after start
<feed> # This is the input feed where FFmpeg will send
File /tmp/feed1.ffm # video stream.
FileMaxSize 1G # Maximum file size for buffering video # Allowed IPs
ACL allow 127.0.0.1
</feed>
<stream> # Output stream URL definition
Feed feed1.ffm # Feed from which to receive video
Format matroska
# Audio settings
AudioCodec vorbis
AudioBitRate 64 # Audio bitrate
# Video settings
VideoCodec libx265
VideoSize 720x576 # Video resolution
VideoFrameRate 25 # Video FPS
AVOptionVideo flags +global_header # Parameters passed to encoder
# (same as ffmpeg command-line parameters)
#AVOptionVideo cpu-used 0
AVOptionVideo qmin 10
AVOptionVideo qmax 42
#AVOptionVideo quality good
AVOptionAudio flags +global_header
PreRoll 15
StartSendOnKey
VideoBitRate 400 # Video bitrate
</stream>
<stream> # Server status URL
Format status
# Only allow local people to get the status
ACL allow localhost
ACL allow 0.0.0.0
</stream>
<redirect> # Just an URL redirect for index
# Redirect index.html to the appropriate site
URL http://www.ffmpeg.org/
</redirect>and below is ffmpeg command to send my usb camera :
c:\ffmpeg\bin\ffmpeg -f dshow -i video="A4TECH USB2.0 PC Camera" -r 25 -s 320x240 -vcodec libx265 -preset ultrafast -tune zerolatency http://119.81.216.43:8090/feed1.ffm
ffmpeg running from my notebook with processor corei7 from Indonesia, and ffserver using ubuntu 14.x on ibm soflayer singapore,
with above configuration i can play video streaming with 4s delay
myquestion : howto improve speed so i can play video less than or equal 1 second, any idea ?
-
ffmpeg, how to allocate an array of int64_t ?
16 janvier 2018, par siods333333I need to create an array of
int64_t
, continuously add to it, and expand it if I run out of space in it. Which functions should I use ? https://ffmpeg.org/doxygen/trunk/group__lavu__mem__funcs.htmlI expect it to contain 20-100 entries. Alignment doesn’t matter. No need to fill with zeroes, I’ll just store size separately.
I’ll probably use malloc instead of av_malloc, I don’t care. I don’t get the difference.
-
Restreaming an rtsp stream through ffmpeg on iOS
6 avril 2017, par animaonlineI have an iOS application that displays an rtsp stream from an IP camera on the local network, I would like to restream it to an external server in real time (Wowza to be specific) the server will take care of converting rtsp to HLS so that the users can view the live broadcast on their devices.
On a computer it would be pretty straight forward :
ffmpeg [input-options] -i [input-file] [output-options] [output-stream-URI]
But I need to do it programmatically on iOS, and I’m not really sure if it’s even possible. Anyone ?