
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 (86)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...)
Sur d’autres sites (11527)
-
Convert mp3 to amr using the jave in centos but that is not work
13 août 2014, par zt9788I want to Convert mp3 to amr using the JAVE which uses ffmpeg.
And i had install ffmpeg
rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
yum -y install ffmpeg ffmpeg-devel
**yum install amrnb-devel amrwb-devel**I can use ffmpeg to convet audio file
ffmpeg -i 1.mp3 -ac 1 -ar 8000 1.amr//it is can work
But when i use the jave it is not support libamr_nb in centos 6.5 :
Encoder encoder = new Encoder();
try {
String[] strings = encoder.getAudioEncoders();
for(String ss : strings){
logger.error(ss);
}
} catch (EncoderException e) {
logger.error(e.getMessage());
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}print :
ac3,adpcm_adx,adpcm_ima_wav,adpcm_ms,adpcm_swf,adpcm_yamaha,flac,g726,libfaac
libmp3lame,mp2,pcm_alaw,pcm_mulaw,pcm_s16be,pcm_s16le,pcm_s24be,pcm_s24daud
pcm_s24le,pcm_s32be,pcm_s32le,pcm_s8,pcm_u16be,pcm_u16le,pcm_u24be,pcm_u24le
pcm_u32be,pcm_u32le,pcm_u8,pcm_zork,roq_dpcm,sonic,sonicls,vorbis,wmav1,wmav2I can use the same code in windows.
-
Revision f297504f2d : Re-work configure interface for encoding based on external mi This commit refin
14 juillet 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encoder.c
Modify /vp9/vp9_cx_iface.c
Modify /vpx/vpx_encoder.h
Modify /vpxenc.c
Re-work configure interface for encoding based on external miThis commit refines the configuration interface for encoding
process based on external mode info. It allows the vpxenc to read
the external file name from command line, and to produce warning
message when necessary.Change-Id : I109d02ea9e6e418d00378d512ed9ab9bb0770dbd
-
RTSP authentification through ffmpeg/ffplay doesn't work because of special symbols in the password
26 octobre 2018, par Eugene MartI have run into a problem while trying to receive a video from an IP-camera using ffplay.
My rtsp request looks like this : rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp
And ffplay/ffmpeg returns an 401 Unauthorized error code. I am absolutely sure that the credentials are correct. The problem is caused by the password (M3%LOL$KEKfp), which consists of special symbols like %, and #. Is there any way to make it work without changing the password ?
I tried using quote marks like this ffplay "rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp", and it didn’t have any ideas ?
PS : I’m using windows. Tried both CMD and PowerShell