
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (103)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (12630)
-
Convert PCM to AAC using PyAV
26 août 2022, par Dave JohansenI need to convert PCM (G.711U) audio to AAC in realtime. I've been able to do it with
ffmpeg
, but would like to usePyAV
to have direct control and not have to run a separate process. What's the best way to do that ?

cat input.raw | ffmpeg -hide_banner -f mulaw -ar 8000 -ac 1 -i - -c:a aac -f adts - > output.mp4



(NOTE : in the actually use case there aren't actual files for input.raw and output.mp4 and those are just streaming data but I did them to be able to show the example)


-
error occured on -pix_fmt in ffmpeg while converting from .mov to mp4 file
7 avril 2016, par AmeyI am trying to convert .mov to .mp4 using ffmpeg my command is :
ffmpeg -i input.mov -vcodec libx264 -acodec copy output.mp4
but its giving me error like this
[buffer @ 00000000059bf480] Unable to parse option value "-1" as pixel format
Last message repeated 1 times[buffer @ 00000000059bf480] Error setting option pix_fmt to value -1.
[graph 0 input from stream 0:4 @ 00000000043fd8a0] Error applying options to the
filter.
Error opening filters !even I tried for another command
ffmpeg -i input.mov -vcodec copy -acodec copy output.mp4
but it converts only some part and first part is blank with sound then after some time picture is coming..
I have two Q’s
1] for first command what is -pix_fmt and what value to be set for ?
2] for second command why it was giving only some part, as I am copying everything vcodec as well acodec..
please guide me ..!!
-
FFmpeg low framerate when adding audio
22 juillet 2021, par Massiwe are sending a video from a Linux PC with GPU (Alienware M15 R2 so very strong in hardware) connected to a Logitech Brio 4K resolution camera.
We are using ffmpeg and in particular the following command :


ffmpeg -re -hwaccel cuvid -hwaccel_output_format cuda -f v4l2 -input_format mjpeg -framerate 30 -video_size 3840x2160 -i /dev/video4 -f pulse -i default -c:v h264_nvenc -tune ull -preset llhq -zerolatency true -pix_fmt rgb0 -c:a aac -aac_coder fast -ar 44100 -b:a 256k -b:v 25000k -threads 0 -f flv "rtmp ://192.168.1.1/WebRTCAppEE/XXX"


As you can see this is the part related to audio "-c:a aac -aac_coder fast -ar 44100 -b:a 256k"
If we send the script WITHOUT the audio part, we see it very fluid even in 4K resolution, with 30 FPS, but of course with no audio.
If we send the script WITH the audio part, the FPS goes down to 19-20 and the video is no more fluid. In this case we tried also to downgrade the video quality, but the result is always the same, the video is not fluid, even if the PC has not the CPU and GPU very loaded.
Would you suggest another script or some correction in order to avoid this problem and stream a video getting both video and audio from a device ?