
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (95)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (5087)
-
store more vars than we removed
16 août 2010, par Johannstore more vars than we removed
-
How to receive and store rtsp data
23 juin 2020, par YvesI'm a newbie on video-stream process.


My goal is to store the video-stream data, formatted with RTSP protocol.


Here is what I've done :


First, I execute
ffserver -f ffserver.conf
to run the server. Here is the file offfserver.conf
:

HTTPPort 8090
RTSPPort 5554
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 30000
CustomLog -
NoDaemon
#NoDefaults

#2. config ffm file
<feed>
File /tmp/feed1.ffm
FileMaxSize 100M
</feed>

#3. http
<stream>
Feed feed1.ffm
Format flv
</stream>

# RTP
<stream>
Feed feed1.ffm
Format rtp
VideoCodec mpeg4
VideoFrameRate 15
VideoBufferSize 80000
VideoBitRate 100
VideoQMin 1
VideoQMax 5
VideoSize 352x288
PreRoll 0
NoAudio
</stream>

#4. stat.html
<stream>
Format status
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255
</stream>



Then, I execute
ffmpeg -i ./test.mp4 -vcodec libx264 -acodec aac http://localhost:8090/feed1.ffm
.

Finally, I can configure
rtsp://localhost:5554/test1.mpeg4
in VLC player and play the video.

Now, what I need is to store the RTSP data on the disk, instead of playing it with some player like VLC.


For example, I want to receive the RTSP data and store it into fixed-size files. If I've received 100M RTSP data, I would like to store it into 10 10MB files. And in the future, I can extract the data from the 10 files and play the video.


How to achieve this ? What should I do ?


-
Store arguments of a command in variable [duplicate]
2 décembre 2022, par user206904I am trying to store the arguments of a command in a string instead of calling the function directly with the parameters but it seems that Powershell is not handling the string properly


ffmpeg -v quiet -stats ... # works

$var = "-v quiet -stats"

ffmpeg $var ... #does not work



I get :


Unrecognized option 'v quiet'. Error splitting the argument list : Option not found


What is the correct way to handle this ?


Thanks