
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (98)
-
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 (...)
-
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 (9317)
-
how can i record sound with ffmpeg with electron ?
10 février 2023, par korayaggulI'm trying to record sound with electron using ffmpeg but I've never done it before, how can I do it ?


need to run this code


ffmpeg -loglevel debug -f avfoundation -i none:1 -f avfoundation -i none:2 -filter_complex amix=inputs=2:duration=first:dropout_transition=3 out.mk


-
How to use Intel QSV record screen based on ffmpeg
18 octobre 2020, par zondaI want to record my screen with ffmpeg.

I succeeded in the normal way.

ffmpeg -f gdigrab -framerate 30 -draw_mouse 1 -i desktop -c:v h264 -r 30 -preset ultrafast -tune zerolatency -pix_fmt yuv420p "record.mp4"



But I want use GPU record my screen now.

I'm trying to use Intel QSV on ffmpeg.

ffmpeg -f gdigrab -framerate 30 -draw_mouse 1 -i desktop -c:v h264_qsv -r 30 -tune zerolatency -pix_fmt yuv420p "record.mp4"



It does not work and show :

[h264_qsv @ 0000000000479080] Error initializing the encoder: invalid video parameters (-15)
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height


I don't know what happened.


And I'm trying simple way.

ffmpeg -i test_input.mp4 -c:v h264_qsv -preset:v faster test_output.mp4

It does not work too.


My computer information :

acer notebook : TravelMate P243-MG

OS : windows 7 64bits

CPU : Intel i5-3210M

Graphics card : Nvidia GT-630M


Thanks in advance !


-
FFMPEG record sound stop always at the same size
12 mai 2022, par gildasI try to record live sounds catch by a device (raspberry Pi with microphones) in my computer (linux).
I use this command on the device :


arecord -D dmic_sv -c2 -r 48000 -f S32_LE -t wav | \
ffmpeg -re -f wav -i pipe: \
 -f s16le -acodec pcm_s16le -ac 1 -ar 48000 -af "volume=16dB" 
 tcp://ipPC:55000



I use this command on my PC :


FFREPORT=file=ffreport.log:level=32 \
ffmpeg -f s16le -acodec pcm_s16le -ac 1 -ar 48000 \
 -i tcp://ipPC:55000?listen -f wav fichiercible.wav



It is working but the record always stops when fichiercible.wav reach 536.9Mo.


I tried to put this option
-fs 2000000000
on the command on my PC :

FFREPORT=file=ffreport.log:level=32 \
 ffmpeg -f s16le -acodec pcm_s16le -ac 1 -ar 48000 \
 -i tcp://ipPC:55000?listen \
 -f wav -fs 2000000000 fichiercible.wav



But the result was the same, the record stop when the file is 536.9Mo


Is it possible to record bigger size file with ffmpeg ?