
Recherche avancée
Autres articles (22)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
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 (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (4410)
-
generate streams at different bitrates using same libx265 codec in ffmpeg
28 janvier 2016, par sudheer babuUsing ffmpeg command " ffmpeg.exe -f rawvideo -vcodec rawvideo -s 1920x1080 -r 25 -pix_fmt yuv420p -i crowd_run_1080p25.yuv -c:v libx265 -preset ultrafast -b:v 5000K crowd1080p5.265 -s 1920x1080 -b:v 3000K crowd1080p5_1.265 " ,in this way ffmpeg use 2 times libx265 codec for giving streams. it means the way is like two instants. But i want it in single instant. Using libx265 codec only 1 time, i need 2 outputs of different bitrates mentioned . Is there any way ?
Please respond if any one have idea on this ...
I need to interface my company version codec with ffmpeg ; As My hevc codec version giving 4 different streams at single instant with different bitrates by taking single input. So i need to understand whther its possible in ffmpeg using libx265 codec. if u know any information regarding this,pls share.
-
avformat/img2dec : reduce bmppipe probe score
11 septembre 2014, par Michael Niedermayeravformat/img2dec : reduce bmppipe probe score
bmp pipe needs the bmp parser which is not bug free and should thus not be favored
over the bmp image2 demuxer
that also means this change could be reverted in case bmp pipe is improved so it
handles all single bmp images correctlySigned-off-by : Michael Niedermayer <michaelni@gmx.at>
-
tls_gnutls : fix hang on disconnection
14 juin 2015, par wm4tls_gnutls : fix hang on disconnection
GNUTLS_SHUT_RDWR means GnuTLS will keep waiting for the server’s
termination reply. But since we don’t shutdown the TCP connection at
this point yet, GnuTLS will just keep skipping actual data from the
server, which basically is perceived as hang.Use GNUTLS_SHUT_WR instead, which doesn’t have this problem.
Signed-off-by : Martin Storsjö <martin@martin.st>