Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (56)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Pré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 ) (...)

  • 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 (5778)

  • Revision a5062cc635 : Don't call encode_sb() for the final of 4-split subpartitions. The resulting re

    8 juillet 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Don't call encode_sb() for the final of 4-split subpartitions.

    The resulting reconstruction is never used, thus it just wastes CPU
    cycles. Reduces encode time of first 50 frames of bus (speed 0) @
    1500kbps from 2min2.0 to 2min1.2, i.e. a 0.65% overall speedup.

    Change-Id : I74755ca3aadc21e2be220f486259060bd4088c45

  • Fluent FFMPEG complex filter to split file into multiple outputs

    26 octobre 2020, par lowcrawler

    It appears possible to have multiple outputs from a single FFMPEG command : ffmpeg overlay on multiple outputs

    


    I'd like to know how to do this in FFMPEG. I'm specifically using the complexFilter option in an attempt to split the video into 4 different sizes and place an overlay, and then save the 4 resulting files.

    


    The code is my attempt to simply split the video into 4 and save it. I get the Error: ffmpeg exited with code 1: Filter split:output3 has an unconnected output error. I'm unsure how to connect the output to a file in fluent-ffmpeg.

    


        let ffmpegCommand = ffmpeg() 
        .addInput(path.join(__dirname, PROCESSING_CACHE_DIRECTORY, "tempImage_%d.jpg"))

        .addOutput(outputPathFull)
        .addOutput(outputPathMed)
        .addOutput(outputPathSmall)
        .addOutput(outputPathThumb)


        .toFormat('mp4')
        .videoCodec('libx264')
        .outputOptions('-pix_fmt yuv420p')
        .complexFilter([
        {
                filter: 'split', options: '4',
                inputs: ['0:v'], outputs: [outputPathFull, outputPathMed, outputPathSmall, outputPathThumb]
            },
        ])


    


    When I flip the outputs and put them below the complexFilter, I get 4 files - one with the appropriate quality (and 4x bigger than expected) and the others in very low quality.

    


  • h264_parser : don’t stop on SPS_EXT in split

    31 octobre 2014, par John Stebbins
    h264_parser : don’t stop on SPS_EXT in split
    

    Add SPS_EXT, SEI, and subset SPS to codes that are skipped during split.
    These codes can come before the PPS and results in incomplete extradata.

    • [DBH] libavcodec/h264_parser.c