
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (105)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (8571)
-
Spotlight : Alwaysdata.com the company behind Piwik.org web hosting [Interview]
Piwik is the result of the work of many talented individuals and companies. Today we’d like to showcase Alwaysdata.com, the awesome web hosting company providing managed hosting for all Piwik.org websites and services.
I recently met and asked a few questions to Cyril, co-founder of Alwaysdata.com and Piwik core developer. Learn more in the interview below !
What is Alwaysdata ?
We are a French web hosting company created in 2006. If you need to host a website — a Piwik installation, for example — or even your domains/emails, we provide infrastructure and maintenance services.
Who are your customers and what kind of work do you do ?
We have several types of clients :
- Individuals who need hosting for their personal site and who benefit from storage space with direct SSH access.
- Web agencies who need hosting for their clients’ sites.
- The largest customers, often on dedicated servers, for hosting their site/infrastructure.
Our work falls into three categories :
- Support (via administration, telephone, Twitter, IRC, etc.)
- Development (in Python), primarily to add new features
- System administration, either for maintenance (e.g. adding servers), or for preparing new features
What sets Alwaysdata apart from the large web hosting competition ?
Two things :
- Availability. We are a small team and often know our customers quite well. We are all on IRC, so you can contact us directly if you need any assistance.
- Features. We are halfway between traditional web hosting and the cloud, combining the advantages of both.
Are you using Piwik internally or with customers ? If so, how are you using Piwik ?
All of our customers can view statistics for their sites via our global Piwik installation, without having to configure anything.
To provide these analytics reports to our customers, we implemented import of the raw access logs in Piwik. The Log import toolkit is now a feature included in Piwik.
What is the next big thing for Alwaysdata ?
We are going to upgrade our pricing : instead of fixed costs, each of our clients will now pay exactly what they consume. This allows our clients the benefit of a very high quality service for the lowest possible price.
We are also going to add native support for more technologies : Java, Node.js, ZeroMQ, etc.
Thank you for your time and all the best to Alwaysdata for the future !
—
Note from Matt, Piwik founder : Cyril and the team at Alwaysdata.com have been consistently great in their system administration work for Piwik.org services, providing a fast and reliable web hosting experience with top notch support and security practises. They also handled the migration of all services from our old servers with total piece of mind.
Alwaysdata contributed to Piwik the popular Log Analytics toolkit. They are great software developers and system administrators with a passion for their work. Since 2006, they have been maintaining optimized hosting services for the entire web infrastructure (websites, domains, emails, databases, etc.), from the simplest to the most exotic. We do recommend their managed hosting services.
Learn more
- Visit their website at Alwaysdata.com
- Learn more about their Managed hosting on dedicated servers
- Learn more about other companies and individuals who make a difference in Piwik.
-
video snapshot generating horizontally in node js.
2 février 2016, par iamI am using FFMPEG for generating snapshot of video but problem is that snapshot is capturing horizontally i want it to vertical.
code
pathToFile = path+name;
pathToSnapshot = path+'sshot.jpg';
// Also a default node module
require('child_process').exec(('ffmpeg -i '+ pathToFile +' -vframes 1 -s 450x450 -ss 02 '+ pathToSnapshot), function () {}); -
Conversion does not end using ffmpeg on Android device
3 février 2016, par BelhaverI am trying to make an application with usage of ffmpeg-android-java https://github.com/WritingMinds/ffmpeg-android-java and i have a problem. File conversion just does not end.
Here is code which i am using :
try {
// code...
String commandStr = "-y -i /storage/emulated/0/input.mp4 -strict experimental -s " + fileWidth + "x" + fileHeight + " -vcodec libx264 -r 30 /storage/emulated/0/output.mp4";
ffmpeg.execute(commandStr, new ExecuteBinaryResponseHandler() {
@Override
public void onSuccess(String message) {
Log.d("FFMPEG success", "");
// code...
}
@Override
public void onFailure(String message) {
Log.d("FFMPEG failure: ", message);
// code...
}
@Override
public void onProgress(String message) {
Log.d("FFMPEG process: ", message);
}
@Override
public void onFinish() {
Log.d("FFMPEG done", "");
}
});
} catch (Throwable e) {
e.printStackTrace();
}Here is the output process :
FFMPEG process:: WARNING: linker: /data/data/pl.tradesoft.testowa/files/ffmpeg has text relocations. This is wasting memory and prevents security hardening. Please fix.
FFMPEG process:: ffmpeg version n2.4.2 Copyright (c) 2000-2014 the FFmpeg developers
FFMPEG process:: built on Oct 7 2014 15:08:46 with gcc 4.8 (GCC)
FFMPEG process:: configuration: --target-os=linux --cross-prefix=/home/sb/Source-Code/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/sb/Source-Code/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/sb/Source-Code/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/sb/Source-Code/ffmpeg-android/build/armeabi-v7a-neon --extra-cflags='-I/home/sb/Source-Code/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all -mfpu=neon' --extra-ldflags='-L/home/sb/Source-Code/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
FFMPEG process:: libavutil 54. 7.100 / 54. 7.100
FFMPEG process:: libavcodec 56. 1.100 / 56. 1.100
FFMPEG process:: libavformat 56. 4.101 / 56. 4.101
FFMPEG process:: libavdevice 56. 0.100 / 56. 0.100
FFMPEG process:: libavfilter 5. 1.100 / 5. 1.100
FFMPEG process:: libswscale 3. 0.100 / 3. 0.100
FFMPEG process:: libswresample 1. 1.100 / 1. 1.100
FFMPEG process:: libpostproc 53. 0.100 / 53. 0.100
FFMPEG process:: Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/input.mp4':
FFMPEG process:: Metadata:
FFMPEG process:: major_brand : isom
FFMPEG process:: minor_version : 512
FFMPEG process:: compatible_brands: isomiso2avc1mp41
FFMPEG process:: encoder : Lavf54.63.104
FFMPEG process:: Duration: 00:01:00.35, start: 0.000000, bitrate: 3267 kb/s
FFMPEG process:: Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1368x768 [SAR 1:1 DAR 57:32], 3258 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)
FFMPEG process:: Metadata:
FFMPEG process:: handler_name : VideoHandler
FFMPEG process:: Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 3 kb/s (default)
FFMPEG process:: Metadata:
FFMPEG process:: handler_name : SoundHandler
FFMPEG process:: [libx264 @ 0xb5e08800] using SAR=1/1
FFMPEG process:: [libx264 @ 0xb5e08800] using cpu capabilities: none!
FFMPEG process:: [libx264 @ 0xb5e08800] profile High, level 3.2
FFMPEG process:: [libx264 @ 0xb5e08800] 264 - core 142 - H.264/MPEG-4 AVC codec - Copyleft 2003-2014 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
FFMPEG process:: Output #0, mp4, to '/storage/emulated/0/output.mp4':
FFMPEG process:: Metadata:
FFMPEG process:: major_brand : isom
FFMPEG process:: minor_version : 512
FFMPEG process:: compatible_brands: isomiso2avc1mp41
FFMPEG process:: encoder : Lavf56.4.101
FFMPEG process:: Stream #0:0(und): Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 1368x768 [SAR 1:1 DAR 57:32], q=-1--1, 30 fps, 15360 tbn, 30 tbc (default)
FFMPEG process:: Metadata:
FFMPEG process:: handler_name : VideoHandler
FFMPEG process:: encoder : Lavc56.1.100 libx264
FFMPEG process:: Stream #0:1(und): Audio: aac ([64][0][0][0] / 0x0040), 44100 Hz, stereo, fltp, 128 kb/s (default)
FFMPEG process:: Metadata:
FFMPEG process:: handler_name : SoundHandler
FFMPEG process:: encoder : Lavc56.1.100 aac
FFMPEG process:: Stream mapping:
FFMPEG process:: Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
FFMPEG process:: Stream #0:1 -> #0:1 (aac (native) -> aac (native))
FFMPEG process:: Press [q] to stop, [?] for help
FFMPEG process:: frame= 16 fps=0.0 q=0.0 size= 0kB time=00:00:00.62 bitrate= 0.6kbits/s
FFMPEG process:: frame= 31 fps= 30 q=0.0 size= 0kB time=00:00:01.11 bitrate= 0.3kbits/s
.......
FFMPEG process:: frame= 1801 fps=2.7 q=29.0 size= 4550kB time=00:01:00.11 bitrate= 620.0kbits/s
FFMPEG process:: frame= 1805 fps=2.7 q=29.0 size= 4552kB time=00:01:00.25 bitrate= 618.8kbits/s
FFMPEG process:: frame= 1808 fps=2.7 q=29.0 size= 4555kB time=00:01:00.30 bitrate= 618.8kbits/s
FFMPEG process:: frame= 1810 fps=2.7 q=-1.0 Lsize= 4640kB time=00:01:00.34 bitrate= 629.9kbits/s
FFMPEG process:: video:4561kB audio:15kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 1.407034%
FFMPEG process:: [libx264 @ 0xb5e08800] frame I:8 Avg QP:16.53 size:114657
FFMPEG process:: [libx264 @ 0xb5e08800] frame P:571 Avg QP:19.19 size: 5161
FFMPEG process:: [libx264 @ 0xb5e08800] frame B:1231 Avg QP:26.30 size: 654
FFMPEG process:: [libx264 @ 0xb5e08800] consecutive B-frames: 8.7% 1.3% 1.3% 88.6%
FFMPEG process:: [libx264 @ 0xb5e08800] mb I I16..4: 19.9% 33.4% 46.7%
FFMPEG process:: [libx264 @ 0xb5e08800] mb P I16..4: 1.7% 2.3% 0.5% P16..4: 16.5% 2.5% 2.0% 0.0% 0.0% skip:74.5%
FFMPEG process:: [libx264 @ 0xb5e08800] mb B I16..4: 0.1% 0.1% 0.0% B16..8: 5.8% 0.4% 0.1% direct: 0.2% skip:93.2% L0:37.8% L1:59.7% BI: 2.5%
FFMPEG process:: [libx264 @ 0xb5e08800] 8x8 transform intra:47.6% inter:79.3%
FFMPEG process:: [libx264 @ 0xb5e08800] coded y,uvDC,uvAC intra: 38.4% 73.1% 35.2% inter: 2.0% 4.6% 0.4%
FFMPEG process:: [libx264 @ 0xb5e08800] i16 v,h,dc,p: 40% 30% 15% 16%
FFMPEG process:: [libx264 @ 0xb5e08800] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 23% 15% 38% 5% 6% 3% 3% 3% 4%
FFMPEG process:: [libx264 @ 0xb5e08800] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 30% 26% 18% 5% 6% 4% 4% 3% 3%
FFMPEG process:: [libx264 @ 0xb5e08800] i8c dc,h,v,p: 40% 25% 29% 7%
FFMPEG process:: [libx264 @ 0xb5e08800] Weighted P-Frames: Y:2.6% UV:2.6%
FFMPEG process:: [libx264 @ 0xb5e08800] ref P L0: 68.8% 8.0% 15.3% 7.5% 0.5%
FFMPEG process:: [libx264 @ 0xb5e08800] ref B L0: 85.0% 12.4% 2.6%
FFMPEG process:: [libx264 @ 0xb5e08800] ref B L1: 94.1% 5.9%
FFMPEG process:: [libx264 @ 0xb5e08800] kb/s:619.16And that’s all, nothing more is showing up. I was trying to change codec etc. and it didn’t work. Do you have any idea how can i resolve that problem ?