
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (37)
-
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 (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
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 (5255)
-
Android NDK - FFMpeg, correct video seeking
15 mars 2012, par shermanI want change the seek frame while playing video. I do :
void Java_ffvideolivewallpaper_frankandrobot_com_NativeCalls_seekFrame(
JNIEnv *env, jobject this, jint time)if (av_seek_frame(pFormatCtx, videoStream, time, AVSEEK_FLAG_ANY) < 0)
__android_log_print(ANDROID_LOG_DEBUG, "ERROR SEEK!!!->>>",
"av_seek_frame failed.");Video is displayed incorrectly. How do this correctly ?
-
ffmpeg : add hyperlink to video ?
15 mars 2012, par Simoni am experiment with ffmpeg, making videos from more images and adding watermark, some effect etc.
What I am interested : Is it possible to embed HYPERLINK into video using ffmpeg ?
For example, watermark or something else to be 'clickable' and to redirect to some www location ?
-
How to encode video using ffmpeg-java on Android from Bitmaps ?
15 décembre 2011, par gtcompscientistI am using
ffmpeg-java
compiled for Android to encode/decode video for my application.The problem that I've run into is that I am currently getting each frame as a
Bitmap
(just a plainandroid.graphics.Bitmap
) and I can't figure out how to stuff that into the encoder.Here is the code that I am using to instantiate all the ffmpeg libraries :
AVCodecLibrary cLibrary = AVCodecLibrary.INSTANCE;
cLibrary.avcodec_register_all();
cLibrary.avcodec_init();
AVFormatLibrary fLibrary = AVFormatLibrary.INSTANCE;
fLibrary.av_register_all();
//AVUtilLibrary uLibrary = AVUtilLibrary.INSTANCE;
//uLibrary.av_malloc();
AVCodec pCodec = cLibrary.avcodec_find_encoder(AVCodecLibrary.CODEC_ID_H263);
if (pCodec == null)
{
Logging.Log("Unable to find codec.");
return;
}
Logging.Log("Found codec.");
AVCodecContext codecCtx = cLibrary.avcodec_alloc_context();
codecCtx.bit_rate = 64000;
codecCtx.coded_width = VIDEO_WIDTH;
codecCtx.coded_height = VIDEO_HEIGHT;
codecCtx.time_base = new AVRational(1, VIDEO_FPS);
codecCtx.pix_fmt = AVCodecLibrary.PIX_FMT_YUV420P;
codecCtx.codec_id = AVCodecLibrary.CODEC_ID_H263;
//codecCtx.codec_type = AVMEDIA_TYPE_VIDEO;
if (cLibrary.avcodec_open(codecCtx, pCodec) < 0)
{
Logging.Log("Unable to open codec.");
return;
}
Logging.Log("Codec opened.");This is what I want to be able to execute next :
cLibrary.avcodec_encode_video(codecCtx, pPointer, pFrame.size(), pFrame);
But, as of now, I don't know how to put the Bitmap into the right piece or if I have that setup correctly.
A few notes about the code :
-VIDEO_WIDTH
= 352
-VIDEO_HEIGHT
= 288
-VIDEO_FPS
= 30 ;
- I'm unsure about howpPointer
andpFrame
are handled.