Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (13308)

  • Split Long Video Into Small Parts With FFmpeg And PHP

    13 janvier 2021, par Rhara Mutiara

    First, English is not my native language, I hope you understand what i want to say
    
I want to split long video, lets say 1 hour of video into small parts.
Right now I'm able to do this with this code

    


    ob_start();
    passthru('ffmpeg -i in.mp4 -acodec copy -f segment -segment_time 3 -force_key_frames "expr: gte(t, n_forced * 3)" %d.mp4');
    ob_end_clean();


    


    The output is thousands of parts with name 0.mp4, 1.mp4, 2.mp4 etc and 3sec duration each part
    
What I want to do now is should look like this :
    
0.mp4 3seconds , 1.mp4 5seconds, 2.mp4 3seconds.. etc
    
is it possible ?

    


  • dv : better split weight tables assignment

    25 octobre 2014, par Christophe Gisquet
    dv : better split weight tables assignment
    

    This is a mostly cosmetical patch in preparation for the following.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dv.c
  • vp9 : split decode_coeff_b loop inside txsz branch.

    16 février 2014, par Ronald S. Bultje
    vp9 : split decode_coeff_b loop inside txsz branch.
    

    The advantage of this is that the is32x32 division branch in
    decode_coeffs_b is removed from the inner loop to outside the block
    coef decoding loop in decode_coeffs. Also, it allows us to merge the
    txsz branches from the block coef decoding loop, the context merge
    and the context split.

    • [DH] libavcodec/vp9.c