
Recherche avancée
Autres articles (93)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (6526)
-
convert lower bitrate mp3 to higher bit rate [closed]
6 mars 2016, par janemani had 2000 songs in 128 kbps but in my server space was not there so i have compressed those mp3 to 16kbps and found ok quality on my pc but when i was listening those songs on my iphone i found that sound quality is not good so now i wan t to convert those 16kbps songs to 48kbps which i think will give good sound quality so that users cant differentiate that songs are compressed and it will load fast as well .here is the ffmpeg code i have used to convert 16kbps file to 48kbps . i can see that the size of converted file has increased approx 3 fold but not sure whether it will give the better quality mp3 when i increase the bit rate through conversion .please suggest any way to get my file back with good mp3 quality
<?php
if ( exec('ffmpeg -i /pathtomp3folder/test.mp3 -acodec libmp3lame -ab 48k -ac 1 -ar 44100 /pathtomp3folder/oputput.mp3'))
{
echo 'done!!';
}
?>i can do below code as well wthout specifying the frequency which is best way to do
ffmpeg -i /pathtomp3folder/test.mp3 -acodec libmp3lame -ab 48k -ac 1 /pathtomp3folder/oputput.mp3
{
echo 'done!!';
}i dont see much difference in 16kbps and converted file quality however size got increased 3 times in converted file
what is the minimum kbps we should prefer so that users cant detect the difference and i get high streaming rate as well without buffering .i am targetting mobile device so please suggest about mobile device
size of 16 kbps file was 745kb and size of 48kbps file is 1840kb
where i am doing mistake any idea or if anyone can share his experinene it will be a great help .i have stuggled to get my collection of 2000 songs back as i dont have backup and in my pc the quality of mp3 seems to be ok but when i play in iphone it clearly shows that its of low quality
in my server ffmpeg is installed and working properly so it is easily converting the bit rate .one more thing i want to know when the bit rate is getting changed from 16kbps to 48 kbps what is the changes in quality ???/ as i can clearly see that size is increasing but the quality remains same
-
Capture video on iOS device and live stream it to a server (or another mobile)
13 février 2015, par theDuncsI want to be able to record footage using my iOS device and stream it directly to a server.
There’s quite a few articles on S.O. that talk about this, but I’m not sure any have answered the question very well.
Should I be using HTTP Live Streaming, or is this just for sending data to an iPhone ?
Should I be using AVCaptureSession to grab the video (a segment at a time ?), sending each segment to the server ?
Should I be using AVCaptureVideoDataOutput and ffmpeg for streaming ?I’m a little lost with all this, so any sample code or docs or links would be really appreciated.
Thanks for your help guys.
Duncan
-
how to use ffmpeg library to stream audio from mms links on Android ?
3 juillet 2012, par Caiquei have searched a lot about the ffmpeg library. I have already installed it, the android ndk too... and i don't know how to stream links mms. I understand that it uses native methods, but i never used native methods before, how we can use ? anyone already did something like ?
what i need is play a radio from a url, what uses mms protocol, is there a way to do it with ffmpeg library ? apparently, in the iphone is so simple to use this library.
i know that is possible with the vitamio plugin, but i want to know how to use with the ffmpeg library.
sorry for my english
thanks