
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
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 (...) -
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 (...)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (5553)
-
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