
Recherche avancée
Autres articles (112)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (3891)
-
Need a workaround for error in xuggler todo with vorbis
25 septembre 2012, par ChrisI have been at this for days, I am using xuggler, the only version i can use is 3.4 because upto 4.4 writing to outputstream directly causes jvm crash.
I need to encode audio using vorbis, however, when i run code which works with any other audio codec I get
2012-09-25 13:54:16,578 [Thread-4] ERROR org.ffmpeg - [libvorbis @ 0308a010] libvorbis : buffer overflow.
2012-09-25 13:54:16,578 [Thread-4] WARN com.xuggle.xuggler - error : avcodec_encode_audio failed (../../../../../../../csrc/com/xuggle/xuggler/StreamCoder.cpp:1586)I think a workaround for found for this is in later versions of StreamCoder.cpp
if (mCodecContext->codec->id == CODEC_ID_FLAC
|| mCodecContext->codec->id == CODEC_ID_VORBIS)
{
// FLAC & VORBIS audio for some reason gives an error if your output buffer isn't
// over double the frame size, so we fake it here. This could be further optimized
// to only require an exact number, but this math is simpler and will always
// be large enough.
bufferSize = (64 + getAudioFrameSize() * (bytesPerSample + 1)) * 2;
}But if I use the following code to make the IBuffer,
int bufferSize = aCoder.getAudioFrameSize() * (aCoder.getBitRate());
final byte[] audioBuf = new byte[bufferSize];
//read audio bytes into audiobuf....
buf = IBuffer.make(null, audioBuf, 0, (64 + aCoder.getAudioFrameSize() * (aCoder.getBitRate() + 1)) * 2);
System.out.println("afterbufmake");
smp = IAudioSamples.make(buf,1,IAudioSamples.Format.FMT_S16);
if (smp == null) {
System.out.println("smp == null");
// return;
}smp always ends up null.
Can anyone think of what might be happening with buffer overflow for just Vorbis and a workaround as I have only 3.4 version of Xuggler that works for what I need which is writing to outputstream.
Thank you.
-
What encoding settings for BlackBerry HTML5 streaming ?
27 septembre 2012, par user1441859For several days I've been desperately trying to get my videos stream on BlackBerry as well as the major desktop and mobile browser.
The videos are embedded in this way :<video preload="auto" controls="controls">
<source src="url.mp4" type="video/mp4"></source>
<source src="url.ogv" type="video/ogv"></source>
//flash fallback
</video>When opening the page in the BB browser the black video frame with the controls appears but when I try to play the video the frame stays black and displays an error message : "Video portion is of an unsupported format".
Sound does play however.By now I have tried H.264 and mpeg4 with AAC audio and both of them don't play properly on my BB (OS version 6.0).
I've been using ffmpeg to encode the files. -
ChromaKey FLV Transparency
1er décembre 2012, par Mr DI have over 20000 FLV's at the moment. They currently have no alpha channel and are all CGI generated text on a black background.
My issue :
I need to be able to remove the black background and make it transparent, so I can use these videos to layer over pictures in my flash project.It needs to be an automated process, that can go through the whole dir of videos and remove the backgrounds
What I've tried ?
I have spent the last three days pulling my hair out. Currently the option I see is to write a custom filter for ffmpeg.
The end goal :
Layer the flv videos over randomly generated videos in an adobe air application built in flex.