
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (65)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (5963)
-
using ffmpeg to live stream to Youtube
6 septembre 2018, par Bruno PicardiI created an app in Windows to live stream the content of all the screen or only a portion of it (a Windows) to Youtube.
I used this app but I still have a problem I’m not able to understand.
I use different internet connections : ADSL at home 30Mbit, or ADSL router outside ad 2.5Mbit.
In any case, after starting ffmpeg to live stream the fps strats growing from 300 to 2000 the transmission is perfect for some minutes, then the fps slowdown until a very low value for the bitrate of the Youtube streaming. The image is no more clear and disappears, the audio is still working. The CPU is still under the 35-40% of usage.
ffmpeg must be restarted to get another 5-7 minutes of good transmission.
I tryed changing the ffmpeg command line but nothing seams to influence this behaviour.
This is because I still don’t undestand Where the problem is. Any suggestions ?
A log of a single session (aprox. 20 minutes) is available here http://www.mbinet.it/public/ffmpeg-20180106-094446.txt
Another (aprox. 5 min.) is available here http://www.mbinet.it/public/ffmpeg-20180106-105529.txt
Thanks -
ffplay - how to use cmdutil.h
4 décembre 2018, par Lucker10As I get decoding artefacts with a custom ffmpeg player application (ffmpeg stream decoding - artefacts when not using ffplay) while ffplay shows a perfect image without artefacts, I need to implement my player in the same way ffplay does.
ffplay.c uses an
AVDictionary *codec_opts;
which is defined (correct me) in cmdutils.c. I need this dictionary to do the codec initialization analogue to ffplay (line 2615f.), but I dont understand how it is created. Is there a way to
a) include cmdutils in the same way ffplay does - linking to cmdutils.o in the end gives me in the end
:-1: error: /.../cmdutils.o: undefined reference to symbol 'swresample_version@@LIBSWRESAMPLE_3'
although I included libswresample using (QT) :
LIBS +=-L/usr/local/lib -lavformat -lswscale -lswresample -lavutil -lavcodec
b) get access to the AVDictionary codec_opts in any other way ?
-
ffmpeg poor audio(only) streaming quality ? how to configure
9 mai 2021, par Teraffmpeg streams audio only with bad quality.. i need better quality, lantency isn't a problem !



im making a discord bot that streams audio from my local input..



i saw the -aq short for -q:audio but changing that doesn't seem to make a diffrence.. im sure 48k samplerate should be plenty.
need stereo channel.



have no idea how to change the bitrate or the compression... maybe that might be the problem ?



using ffmpeg i got it working but i found that the quality isn't perfect..
how do i get loseless audio only ? or is there somthing wrong with my parameters ?



{
 FileName = "ffmpeg.exe",
 Arguments = $"-hide_banner -loglevel panic -f dshow -i audio=\"{Program.AUDIO_DEVICE_NAME}\" -aq 8 -ac 2 -f s16le -ar 48000 pipe:1",
 UseShellExecute = false,
 RedirectStandardOutput = true
 }




expected : close too or lossless quality, high lantency is fine (not more than 10 secs)



reuslt : 8/10 quality and 1.5 sec lantency.. could be better



if ffmpeg isn't the answer to my solution what else can i use ?



edit : found out that the -f s16le is an audio format i tried switching to other pcm with no luck s24le gives me white noise with barely audbile audio
same as s32le ? im using voice meter btw as a virtual input i suspect the low quality is because the format is only 16bit..



edit2 : bitrate other than 48000 seems to dail the songs in diffrent speeds