
Recherche avancée
Autres articles (55)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (7787)
-
PSNR calculating by JM reference
15 février 2019, par TaliaI need to calculate psnr with jm reference. I tried
./lencod.exe -o main.yuv -r ref.yuv
, i got the below error, could you please guide me ?
Setting Default Parameters...
Parsing Configfile encoder.cfg.............................................................................................................................................................................................................................................................................................................................................................................................................................
Error in command line, ac 1, around string ’-o’, missing -f or -p parameters ? -
Combine several flv in one video
31 juillet 2013, par user2638776I am recording several video on server using flash plugin and FMS (Flash Media Server). I would like to combine them into one big video which then can been played later. I am looking in to ffmpeg for solution as my requirements are to generate video via a php script. I would love to hear some options or get some guide lines.
-
Trouble writing mp3 into flv container
8 février 2013, par SriramI am encoding a raw pcm stream with
LAME
and writing the mp3 encoded samples to an flv container using ac
program. For debugging purposes, I am also writing the mp3 encoded samples to a file separately. The following is observed :- The mp3 written to another file is correct. There are no clicks or any other artefacts observed.
-
The flv file does not play anything. Examining with
ffmpeg
like so :$ ./ffmpeg.exe -i temp_local_flv.flv
The above command gives the following :
ffmpeg version N-49352-gc46943e Copyright (c) 2000-2013 the FFmpeg developers
built on Jan 26 2013 12:12:14 with gcc 4.7.2 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
libavutil 52. 17.100 / 52. 17.100
libavcodec 54. 91.100 / 54. 91.100
libavformat 54. 61.104 / 54. 61.104
libavdevice 54. 3.102 / 54. 3.102
libavfilter 3. 34.101 / 3. 34.101
libswscale 2. 2.100 / 2. 2.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 2.100 / 52. 2.100
[flv @ 0000000000307be0] Stream discovered after head already parsed
[mp3 @ 000000000237d9c0] Header missing
Input #0, flv, from 'temp_local_flv.flv':
Duration: 00:00:00.07, start: 0.002000, bitrate: 643 kb/s
Stream #0:0: Audio: mp3, 22050 Hz, mono, s16p, 32 kb/s
Stream #0:1: Data: none
At least one output file must be specifiedMy questions :
1. What is this "Header missing" ? Is there a "special" mp3 header that needs to be written when writing encoded samples to an flv container ? If so, what does the header contain ? And given that the mp3 samples written to the file are decoded correctly by an audio player, what am I missing ?