
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (111)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (13690)
-
ffmpeg transcoding : Metallic distorsion on macOS
10 septembre 2024, par XaviI am following ffmpeg's transcoding.c example to record audio and video from my input devices into an mp4 output file with H264 and AAC as codecs. I have no issues with the video and the audio transcoding works correctly on Windows.


However, on macOS I have an issue with any input device other than the internal microphone of my laptop : the audio comes out distorted and sounding noisy and metallic (sample recording claps : https://file.io/nEn8MXHUAUQ2). I went through the input and output parameters for the filter several times, checked the values, but there must be something I'm missing. And I can't explain why it works on Windows with the same devices.


Has anyone run into a similar problem before ? Any idea where I should start looking at ?


Additional comments :


- 

- While the Macbook's internal microphone (the only one that works) has only one channel, the other microphones I have available are stereo, so I can't say for sure that that's where the problem is.
- I also tested it on a macbook mini, with the same results.
- ffmpeg 6.1.1, MacOs 14.5
- Input filter arguments :
time_base=1/1000000:sample_rate=48000:sample_fmt=1:channel_layout=stereo
- Output filter arguments :
setpts=PTS-STARTPTS,aresample=48000:async=1:out_sample_fmt=8:out_chlayout=stereo,asetnsamples=n=1024












-
Find out what people are searching when coming from search engines
7 novembre 2017, par InnoCraft — PluginsAt InnoCraft, we know that SEO is an important topic for most of you. If you have not heard of this term before, SEO stands for Search Engine Optimization. It consists in having your content website visible within the search result pages without paying for ads. SEO is also often referred as “natural” or “organic” traffic.
In SEO, one of the most valuable data to analyze is the keyword used by the visitor to come to your website. Since 2011, major search engines decided to not disclose this data anymore, that’s the reason why you are seeing the “Keyword not defined” data within some of your Piwik reports, also called “not provided” :
Keyword not defined in PiwikThe solution
As your keyword data is collected by search engines, each of them provides the searched keywords within different services such as :
- Google Search Console
- Bing/Yahoo Webmaster tools
- Yandex Webmaster
Those services allow website owners to see how many times their website appeared within the SERP (Search Engine Results Page), how bots are crawling your pages, which search terms they used, and more. The drawback is, that they make take this data available only for a short period, you need to log in to all these services to get the insights you need and you cannot get aggregated overall keyword reports (over all search engines combined).
The solution that gives you all this data in Piwik
Would you like to know what the not defined search keywords in Piwik really are ? Would you like to combine keywords data from major search engines in one place ? Would you like to know how important your website is according to Google and Microsoft Bing and Yahoo ?
At InnoCraft, the company behind Piwik, we created a plugin called “Search Engine Performance Keywords”. With this plugin, you will :
- be able to keep the search terms forever
- save time by crossing data from Google and Bing search within Piwik
- get an overview of how Google and Bing are crawling your site
- monitor search rankings and click-through rates for each keyword
1 – Data ownership & data retention
Once more, it is going back to Piwik roots. As Piwik is a Free software, you own the data you collect. Once the import is successful, you will be able to keep the keywords data as long as you wish. In the case of services such as Google Search Console, they will delete the data after 90 days !! Without our plugin you will not be able to analyze precisely how your SEO is doing month by month, year by year.
2 – Save time by using a single interface
Google and Bing have no interest in gathering data coming from various search engines… we do. As a result, with our plugin you can visualize the data coming from those two sources within a single report in order to analyze your SEO in a better way.
You will not have to use spreadsheets anymore and no chance to miss some important keywords which you would maybe miss when you don’t aggregate them in a single report.3 – Crawl overview check
Both Google and Bing have a crawl “budget”. This budget needs to be optimized in order for search engine bots to consider the most relevant pages. By gathering all the data within Piwik you will have a clear view of how well your website is appreciated by search engines :
4 – Monitor search rankings
The Search Engine Keywords Performance feature allows you to monitor search rankings for a given keyword and see his evolution :
it also gives you the possibility to compare the performances of several keywords in order to see how your website is performing as a whole :
How to get started ?
The “Search Engine Keywords Performance” plugin has been developed by the InnoCraft team as a premium feature.
If you are not sure, note that InnoCraft is offering an unconditional and hassle-free 30-day money back guarantee period.
Once you have installed the plugin, follow the guide in order to have it up and running.
The installation process is not difficult in itself but takes some time as it requires to access to Google and Bing APIs.If you enjoyed this article, you may appreciate the following one about how to integrate ad services to Piwik : Make better online marketing decisions with the AOM plugin.
-
Discord Bot Not Playing Audio discord.js v13
17 avril 2023, par ChronoAeroI'm trying to make a discord bot that can play mp3 files in a voice channel.. but it doesn't seem to work as intended



 connection = joinVoiceChannel({
 channelId: voice.channelId,
 guildId: interaction.guildId,
 adapterCreator: voice.channel.guild.voiceAdapterCreator,
 });
 
 
 let resource = createAudioResource(createReadStream(join(__dirname, 'resources/try.mp3')), {
 inlineVolume : true
 });

 resource.volume.setVolume(0.2);

 console.log(join(__dirname, 'resources/try.mp3'));
 
 const player = createAudioPlayer();

 connection.subscribe(player);
 player.play(resource)
 console.log("done");

 await interaction.reply('I have joined the voice channel!');



It successfully joined the voice channel, but it does not play any sound at all


The bot joined the voice channel


I have made sure that the directory name is correct by console.logging join(__dirname, 'resources/try.mp3')


I have also tried to check the required dependency for playing audios in discord.js v13


const { generateDependencyReport } = require('@discordjs/voice');

console.log(generateDependencyReport());



here's the output :


--------------------------------------------------
Core Dependencies
- @discordjs/voice: 0.6.0
- prism-media: 1.3.2

Opus Libraries
- @discordjs/opus: 0.5.3
- opusscript: not found

Encryption Libraries
- sodium: not found
- libsodium-wrappers: 0.7.9
- tweetnacl: not found

FFmpeg
- version: 4.4-essentials_build-www.gyan.dev
- libopus: yes
--------------------------------------------------



I think the discord.js v13 docs said that it only requires any one of each Core , Opus, Encryption, and FFmpeg Dependencies (Correct me if I'm wrong)


Did I miss anything ?


Thank you in advance