
Recherche avancée
Autres articles (57)
-
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 ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...)
Sur d’autres sites (10027)
-
Revision 4dbad63a71 : Begin refactor of frame schedule in rate control Various cleanups and streamlin
18 décembre 2013, par Deb MukherjeeChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Modify /vp9/encoder/vp9_firstpass.h
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_ratectrl.c
Begin refactor of frame schedule in rate controlVarious cleanups and streamlining of interfaces as precursor
to further advancements in rate control.
Pre-encode parameter setting for different use cases :
One-pass, first of 2-pass, second of 2-pass, and Svc
are separated out.There is no change in output with this change.
Change-Id : Ied8ca7d84d610993776aa30ef263fe20452e0e3e
-
Revision 672b75a103 : Convert inv_tile_order to control interface Restore ABI compatibility with the
27 mars 2013, par John KoleszarChanged Paths : Modify /test/tile_independence_test.cc Modify /vp9/vp9_dx_iface.c Modify /vpx/vp8dx.h Modify /vpx/vpx_decoder.h Convert inv_tile_order to control interface Restore ABI compatibility with the master branch. Change-Id : (...)
-
How to convert audio files without changing bitrate using FFMPEG ? [duplicate]
1er avril 2021, par Abraham ArnoldI am converting MP3 file to WAV and I am using following code.


ffmpeg -i input.mp3 -acodec pcm_s16le -ac 1 -ar 16000 output.wav



So the original
input.mp3
bitrate is 128kbps and when converted theoutput.wav
file bitrate is 256kbps. I need the output file to be also keep same bitrate as original without changing it. I tried many ways. But I wasn't able to do that. I need some proper way to keep the original file bitrate value with output file. Anybody can help me ? Thanks in advance.