Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (99)

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

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

Sur d’autres sites (8429)

  • Using ffmpeg to split the duration of 360 video files [closed]

    14 décembre 2022, par bloodstar

    I run this code to split normal mp4 files into 5 minute chunks however when i execute 360 video files, the videos are then converted into a normal video (360 flat view) after running this code :

    


    @for %%I in (%*) do @ffmpeg.exe -i "%%~I" -c:v copy -c:a aac -segment_time 00:05:00 -f segment -reset_timestamps 1 "%%~nI_%%03d%%~xI" && del "%%~I"


    


    What am i doing wrong ? thanks

    


  • 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.

    


  • 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