
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (98)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (3870)
-
will Adult script pro work with google app engine as server ? [on hold]
1er février 2016, par niko nørrei want to user Google app engine as a server for my website and app.
but a programmer needs to set the script up for me.
the script is called Adult Script Pro and it need FFMpeg and more to Work.do google app engine provide me with ssh root access ?
The requirements are the following :
Apache, Lighttpd or Nginx Server (with rewrite support)
MySQL 5.x
PHP >= 5.2.x (mod_php or CGI/FastCGI)
GD2 Support
MySQL Support
CURL Support
SimpleXML Support
FTP Support
PCRE with UTF8/Unicode Properties
PHP CLI >= 5.2.x (see above for support)
FFMpeg => 0.11.5 (with support for lame, x264, theora, vpx, xvid, faac, faad2, amr, webm, jpeg, png, gif and freetype)
Will the site Work whid Google app engine as server ??
Pleas help thanks
Nikolaj -
x264 / libx264 : Can only one I/P frame to be used as reference for B-frames ?
29 mai 2021, par Mitra MAs you know
ref
parameter can set the number of previous frames each P-frame can use as references.

I need the same thing for B-Frames, but
ref=1
does not work for B-Frames.

I mean an I/P frame to be used as reference for B-frames only.


is it possible with a command line ? , or by change the following function in the source code ?


static inline int reference_update( x264_t *h )
{
if( !h->fdec->b_kept_as_ref )
{
 if( h->i_thread_frames > 1 )
 {
 x264_frame_push_unused( h, h->fdec );
 h->fdec = x264_frame_pop_unused( h, 1 );
 if( !h->fdec )
 return -1;
 }
 return 0;
}

/* apply mmco from previous frame. */
for( int i = 0; i < h->sh.i_mmco_command_count; i++ )
 for( int j = 0; h->frames.reference[j]; j++ )
 if( h->frames.reference[j]->i_poc == h->sh.mmco[i].i_poc )
 x264_frame_push_unused( h, x264_frame_shift( &h->frames.reference[j] ) );

/* move frame in the buffer */
x264_frame_push( h->frames.reference, h->fdec );
if( h->frames.reference[h->sps->i_num_ref_frames] )
 x264_frame_push_unused( h, x264_frame_shift( h->frames.reference ) );
h->fdec = x264_frame_pop_unused( h, 1 );
if( !h->fdec )
 return -1;
return 0;
}



-
x264 / libx264 : Can only one I/P frame to be used as reference for B-frames ?
29 mai 2021, par MariaAs you know
ref
parameter can set the number of previous frames each P-frame can use as references.

I need the same thing for B-Frames, but
ref=1
does not work for B-Frames.

I mean an I/P frame to be used as reference for B-frames only.


is it possible with a command line ? , or by change the following function in the source code ?


static inline int reference_update( x264_t *h )
{
if( !h->fdec->b_kept_as_ref )
{
 if( h->i_thread_frames > 1 )
 {
 x264_frame_push_unused( h, h->fdec );
 h->fdec = x264_frame_pop_unused( h, 1 );
 if( !h->fdec )
 return -1;
 }
 return 0;
}

/* apply mmco from previous frame. */
for( int i = 0; i < h->sh.i_mmco_command_count; i++ )
 for( int j = 0; h->frames.reference[j]; j++ )
 if( h->frames.reference[j]->i_poc == h->sh.mmco[i].i_poc )
 x264_frame_push_unused( h, x264_frame_shift( &h->frames.reference[j] ) );

/* move frame in the buffer */
x264_frame_push( h->frames.reference, h->fdec );
if( h->frames.reference[h->sps->i_num_ref_frames] )
 x264_frame_push_unused( h, x264_frame_shift( h->frames.reference ) );
h->fdec = x264_frame_pop_unused( h, 1 );
if( !h->fdec )
 return -1;
return 0;
}