
Advanced search
Other articles (62)
-
Le profil des utilisateurs
12 April 2011, byChaque 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 (...) -
HTML5 audio and video support
13 April 2011, byMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Configurer la prise en compte des langues
15 November 2010, byAccé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 (...)
On other websites (4810)
-
ffmpeg lavfi distorted audio
11 March 2017, by JohnHow to play audio at a normal rate?
First 2s play fine, then audio becomes distorted, it seems to speed up.
ffmpeg -f image2 -loop 1 -framerate 25 -i example.jpg -lavfi "amovie=sample.aac:loop=0" -f flv rtmp://192.168.99.100:1935/live/mystream2
Repeating audio with loop:0 returns `[flv @ 0000000000708220] Non-monotonous DTS in output stream 0:0;
audio: http://cdn.online-convert.com/example-file/audio/example.aac
Thank you.
-
FFMPEG with javaCV can't open stream
29 June 2015, by rgomesI having a strange behavior when testing to get the video Stream of a Mobotix camera, I’m using javaCV 0.11.
When I set a timeout I can’t open the stream, the stream only open if I don’t set the timeout parameter.I verified this behavior with javaCV 0.11 and Java CV 0.11 in version 0.9 and 0.8 it works with the timeout.
Probably an error of the lib JavaCV or the way I’m using it :P
My question for the ffmpeg experts is the following:
When I’m calling:
avformat_open_input
the function returns -138
I called the function av_strerror fir this error code and the function was returned "Error number -138 occurred".
A description not very useful, can someone tell me what this error means?
-
DXVA2/D3D11 encoders not available in FFmpeg for no apparent reason
3 July 2020, by user1134621this is a weird one. I am trying to set up FFmpeg for hardware encoding of a live input into h264. I got it working fine on Linux with VAAPI. On Windows I was probably successful as well with NVENC but I do not have a NVENC capable card to check. What has been giving me a headache is encoding through DXVA2 or D3D11VA. FFmpeg picks up available hardware but it will not give me any suitable encoders. I even built FFmpeg myself to make sure that all the CONFIG_DXVA_HWACCEL switches are enabled, I can grep the binary for
h264_dxva2
etc. and see that they are there. However, callingavcodec_find_encoder_by_name
always returns NULL.h264_vaapi
orh264_nvenc
work fine though. I am obviously missing something stupid. Do you have any suggestions where to look? Thanks.