
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (104)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (12982)
-
ffmpeg avformat_open_input always returns "Protocol not found" rv=(-1330794744)
4 septembre 2013, par bzivkovicTrying to get ffmpeg working in Visual Studio 2010. So far all ffmpeg headers and libs are loaded, no error or warning occurs.
avcodec_register_all();
AVFormatContext *pFormatCtx = NULL;
char errbuf[256];
pFormatCtx = avformat_alloc_context();
int rv = avformat_open_input(&pFormatCtx, "myfile.ext", NULL, NULL);
if (rv!=0){
av_strerror(rv, errbuf, sizeof(errbuf));
}The problem is, avformat_open_input always returning -1330794744 (errbuf="Protocol not found"). Tried x86 & x64 headers and libs on 32bit XP and 64bit W7. Whatever I put for "myfile.ext" (tried "file1.avi", "file=c :\file1.avi", "http://www.someweb.com/file1.avi", and even empty char* "") response is always "Protocol not found". Any ideas ?
-
My FFMPEG converter is not allowing mp4 to webm conversions.
2 novembre 2016, par Fred Garbuttheres the command :
ffmpeg -i videos/test.mp4 -c:v libvpx -level 216 -profile 0 -qmax 42 -qmin 10 -c:a libvorbis -f webm out.webm
i keep getting this error :
Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
here is the full response
# ffmpeg -i videos/test.mp4 -c:v libvpx -level 216 -profile 0 -qmax 42 -qmin 10 -c:a
libvorbis -f webm out.webm
ffmpeg version N-49225-g7e059c9 Copyright (c) 2000-2013 the FFmpeg developers
built on Jan 24 2013 05:14:06 with gcc 4.1.2 (GCC) 20080704 (Red Hat 4.1.2-54)
configuration: --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvpx --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-gpl --enable-postproc --enable-nonfree
libavutil 52. 15.101 / 52. 15.101
libavcodec 54. 90.100 / 54. 90.100
libavformat 54. 61.104 / 54. 61.104
libavdevice 54. 3.102 / 54. 3.102
libavfilter 3. 33.100 / 3. 33.100
libswscale 2. 2.100 / 2. 2.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 2.100 / 52. 2.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'videos/test.mp4':
Metadata:
major_brand : mp42
minor_version : 1
compatible_brands: mp42avc1
creation_time : 2010-08-12 15:42:21
Duration: 00:00:34.20, start: 0.000000, bitrate: 358 kb/s
Stream #0:0(eng): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 100 kb/s
Metadata:
creation_time : 2010-08-12 15:42:21
handler_name : Apple Sound Media Handler
Stream #0:1(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x320, 251 kb/s, 29.97 fps, 29.97 tbr, 2997 tbn, 5994 tbc
Metadata:
creation_time : 2010-08-12 15:42:21
handler_name : Apple Video Media Handler
Please use -profile:a or -profile:v, -profile is ambiguous
File 'out.webm' already exists. Overwrite ? [y/N] y
v0.9.6
[libvpx @ 0x7e38d20] Failed to initialize encoder: ABI version mismatch
Output #0, webm, to 'out.webm':
Metadata:
major_brand : mp42
minor_version : 1
compatible_brands: mp42avc1
Stream #0:0(eng): Video: vp8, yuv420p, 640x320, q=10-42, 200 kb/s, 90k tbn, 29.97 tbc
Metadata:
creation_time : 2010-08-12 15:42:21
handler_name : Apple Video Media Handler
Stream #0:1(eng): Audio: none, 44100 Hz, stereo, fltp
Metadata:
creation_time : 2010-08-12 15:42:21
handler_name : Apple Sound Media Handler
Stream mapping:
Stream #0:1 -> #0:0 (h264 -> libvpx)
Stream #0:0 -> #0:1 (aac -> libvorbis)
Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or heightdoes anybody have any idea whats going on ? I am completely lost. I have tried so many different commands. converting from mp4 to ogg works fine, and i have had mp4 to webm working before, but i reinstalled ffmpeg to get the mp4 to ogg working and now ive lost my mp4 to webm conversions. >.< this whole installation process is such a damn nightmare. does anyone havea good tutorial for centos installation of ffmpeg that will work for mp4 ogg and webm ? I have used the centos tut that came off of the ffmpeg site, but it failed me. If anyone has any ideas that could point me in the right direction i would much appreciate it !
-
Converting Video for Android using FFMPEG
13 février 2017, par JebuWhat i am trying to do is convert video into mp4 format that will play in Android.
I’ve gone through http://developer.android.com/guide/appendix/media-formats.html
I am setting the following options
-vcodec libx264 -vprofile baseline -acodec libfaac -ar 44100 -ac 1 -ab 128k yet I get the error message "Sorry, This Video is not valid for streaming to this device"
I Played the video in android browser using videoJS http://video-js.zencoder.com/oceans-clip.mp4 and it WORKS fine.
I download the video oceans-clip.mp4 and tried to convert using minimalist options
-y -i working.mp4 -vprofile baseline pleasework.mp4
yet I get the same error message.
The following is the FFMPEG info dump of the video files
Working.mp4
Array
(
[0] => ffmpeg version N-40229-g24e3f44-syslint Copyright (c) 2000-2012 the FFmpeg developers
[1] => built on Apr 29 2012 22:01:41 with gcc 4.1.2 20080704 (Red Hat 4.1.2-52)
[2] => configuration: --prefix=/usr/local/cpffmpeg --enable-shared --enable-nonfree --enable-gpl --enable-pthreads --enable-libopencore-amrnb --enable-decoder=liba52 --enable-libopencore-amrwb --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --extra-cflags=-I/usr/local/cpffmpeg/include/ --extra-ldflags=-L/usr/local/cpffmpeg/lib --enable-version3 --extra-version=syslint
[3] => libavutil 51. 48.100 / 51. 48.100
[4] => libavcodec 54. 17.101 / 54. 17.101
[5] => libavformat 54. 3.100 / 54. 3.100
[6] => libavdevice 53. 4.100 / 53. 4.100
[7] => libavfilter 2. 72.100 / 2. 72.100
[8] => libswscale 2. 1.100 / 2. 1.100
[9] => libswresample 0. 11.100 / 0. 11.100
[10] => libpostproc 52. 0.100 / 52. 0.100
[11] => Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'working.mp4':
[12] => Metadata:
[13] => major_brand : isom
[14] => minor_version : 1
[15] => compatible_brands: isomavc1
[16] => creation_time : 2010-05-18 04:24:00
[17] => Duration: 00:00:46.54, start: 0.000000, bitrate: 3342 kb/s
[18] => Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 640x264 [SAR 132:133 DAR 320:133], 3195 kb/s, SAR 127:128 DAR 635:264, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc
[19] => Metadata:
[20] => creation_time : 2010-05-18 04:24:00
[21] => handler_name : GPAC ISO Video Handler
[22] => Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, s16, 144 kb/s
[23] => Metadata:
[24] => creation_time : 2010-05-18 04:24:01
[25] => handler_name : GPAC ISO Audio Handler
[26] => At least one output file must be specified
)Not Working.mp4
Array
(
[0] => ffmpeg version N-40229-g24e3f44-syslint Copyright (c) 2000-2012 the FFmpeg developers
[1] => built on Apr 29 2012 22:01:41 with gcc 4.1.2 20080704 (Red Hat 4.1.2-52)
[2] => configuration: --prefix=/usr/local/cpffmpeg --enable-shared --enable-nonfree --enable-gpl --enable-pthreads --enable-libopencore-amrnb --enable-decoder=liba52 --enable-libopencore-amrwb --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --extra-cflags=-I/usr/local/cpffmpeg/include/ --extra-ldflags=-L/usr/local/cpffmpeg/lib --enable-version3 --extra-version=syslint
[3] => libavutil 51. 48.100 / 51. 48.100
[4] => libavcodec 54. 17.101 / 54. 17.101
[5] => libavformat 54. 3.100 / 54. 3.100
[6] => libavdevice 53. 4.100 / 53. 4.100
[7] => libavfilter 2. 72.100 / 2. 72.100
[8] => libswscale 2. 1.100 / 2. 1.100
[9] => libswresample 0. 11.100 / 0. 11.100
[10] => libpostproc 52. 0.100 / 52. 0.100
[11] => Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'pleasework.mp4':
[12] => Metadata:
[13] => major_brand : isom
[14] => minor_version : 512
[15] => compatible_brands: isomiso2avc1mp41
[16] => creation_time : 2010-05-18 04:24:00
[17] => encoder : Lavf54.3.100
[18] => Duration: 00:00:46.54, start: 0.000000, bitrate: 1843 kb/s
[19] => Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 640x264 [SAR 127:128 DAR 635:264], 1715 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc
[20] => Metadata:
[21] => creation_time : 2010-05-18 04:24:00
[22] => handler_name : VideoHandler
[23] => Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, s16, 124 kb/s
[24] => Metadata:
[25] => creation_time : 2010-05-18 04:24:00
[26] => handler_name : SoundHandler
[27] => At least one output file must be specified
)The metadata looks almost the same yet it doesn’t seem to play in android. Any help appreciated.