
Recherche avancée
Autres articles (65)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (6012)
-
ffmpeg - output 5.1 AAC without lowpass on the LFE channel
1er janvier 2023, par blendmasterI'm trying to encode 6 arbitrary mono audio streams into a single AAC 5.1 track in an mp4 container (here with test streams) :


ffmpeg -f lavfi -i testsrc=duration=10:size=100x100:rate=30 -f lavfi -i aevalsrc="-2+random(0)" -filter_complex "[1:a][1:a][1:a][1:a][1:a][1:a]join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-LFE|4.0-BL|5.0-BR[a]" -map '0:v' -map "[a]" -c:a aac -channel_layout 5.1 -t 10 testlfe.mp4



5 of the channels replicate the input audio just fine (modulo encoding). However, the LFE channel is lowpassed. Extracting with :


ffmpeg -i testlfe.mp4 -filter_complex "channelsplit=channel_layout=5.1:channels=LFE[LFE]" -map '[LFE]' testlfe.wav



I get a lowpassed rumble, instead of the original full white noise




(from
ffmpeg -i testlfe.wav -lavfi showspectrumpic=s=640x320 testlfe.png
)

Is there a way to prevent the lowpass from happening ?


I couldn't find any references whether that's inherent to the AAC 5.1 encoding, something that ffmpeg does, or inherent to the decoding process. (I did decode my same test files using something that uses Microsoft MediaFoundation and the LFE channel was still lowpassed).


-
How to live stream from Windows 10 app to Youtube ?
12 août 2015, par BolandI’m playing around with the YouTube Live Stream API. That’s working fine so far, but the next step is to stream the web cam data to YouTube via RTMP.
In the (excellent) documentation at Google Dev, it outlines the Life of a Broadcast. However, all steps are documented in detail, except the step I’m interested in :
Step 3.2 : Start your video
Start transmitting video on your video stream.
I was able to use Open Broadcasting Software to stream to a manually created YouTube Live Event, but I have no idea how to do it from my Windows 10 App. I’ve looked at the MediaElement class, and was able to capture the web cam preview in my app. But I can only find methods to save as a file.
Also found information about FFMPEG, which should probably be able to do the job, but I cannot find a library / DLL to use FFMPEG in my App.
I just need some guidance where to look next, because now I’m just clueless what to do.
/edit : I came across MPlatform SDK, which sounds exactly what I want, but it costs $5000.... Not for a hobby :(
-
C++, FFMpeg : Unable to find any decoder or encoder
14 juillet 2016, par AmNI have been using this sample https://ffmpeg.org/doxygen/trunk/decoding__encoding_8c.html as reference for my C++ application. I have used the same code as in the given page. I have linked the libraries, placed the dlls and compiled with no errors. Everything works except that it always throws : Codec not found error.
/* find the MPEG-1 video decoder */
codec = avcodec_find_decoder(AV_CODEC_ID_MP2);
if (!codec) {
fprintf(stderr, "Codec not found\n");
exit(1);
}I have changed the line to AV_CODEC_ID_MP2 in this, just to test if only the MPEG codex was missing but seems like all are missing. I have tried changing this to multiple codecs as defined in avcodec.h file (enum AVCodecID, line 189), but all return "Codec not found".
Am I missing something ?
Compiler : Microsoft Visual Studio 2015 Community Edition
Project Type : QTProjectOh and I am trying to make a Video Player just to enhance my c++ skills during these holidays. First I was trying QTMediaPlayer Widget, but it was throwing crazy errors on "DirectShowPlay::doRender" or something like that. So I switched to FFMpeg, but this too doesn’t work.
Thank you for reading my question.