Advanced search

Medias (1)

Tag: - Tags -/ogg

Other articles (31)

  • Creating farms of unique websites

    13 April 2011, by

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

    5 September 2013, by

    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;

  • Les autorisations surchargées par les plugins

    27 April 2010, by

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

On other websites (5660)

  • Segmenting video into different parts and unique rendering on each part then concat afterwards

    2 March 2016, by goudarziha

    I currently have a very poorly performing application that splits up a video, renders it and the concats all rendered videos on android using ffmpeg

    So I am running into issues with segmenting a video up into 5 parts at each different intervals/durations, rendering each video segment uniquely slowing up/speeding up and then finally concat all the segments back into one final video.

    Currently I am doing each part separately -

    Segmenting -
    example for one segment
    -y -i pathIn -ss 0.0 -t 2.0 -vcodec copy -acodec copy -an pathOut

    Rendering - example slowing down/speeding up

    - y -i path -filter:v setpts=2.0*PTS pathOut

    Concat -

    - f concat -i input1.mp4 -i input2.mp4 -i input3.mp4 -i input4.mp4 -i input5.mp4 -c copy output.mp4

    Right now I am running different separate thread for each editing of video, so 3, segment, rendering and concat.

    I am trying to get this all done on one command ffmpeg line if at all possible, if not just the segmenting and rendering of the videos and kick of the concat cmd line later.

    I am trying to emulate something similar to this https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

  • Remove parts of a video automagically without reencode?

    21 August 2022, by Sam

    I'm looking for a way to remove automatically the opening and ending parts of a video (credits) without reencode.

    


    If you need an example, take Game of Thrones : I'd need a way to automatically remove the GoT opening (with the theme music) and the ending part (with the credits and the HBO logo part).

    


    FFmpeg can do that, but the cut has to be manual and happens only at keyframes... which isn't precise enough for me.

    


    I thought that maybe there is a tool that allows to scan a video, and remove a part between two input frames (the start of opening frame, the end of opening frame)... etc, same thing for Ending.

    


    Thanks for the help !

    


  • avcodec/ac3: Move non-(de|en)coder-only parts out of ac3.h

    12 May 2022, by Andreas Rheinhardt
    avcodec/ac3: Move non-(de|en)coder-only parts out of ac3.h
    

    Move AC3HeaderInfo into ac3_parser_internal.h and the rest
    into a new header ac3defs.h.

    This also breaks an include cycle of ac3.h and ac3tab.h
    (the latter now only needs ac3defs.h).

    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3.c
    • [DH] libavcodec/ac3.h
    • [DH] libavcodec/ac3_parser.c
    • [DH] libavcodec/ac3_parser_internal.h
    • [DH] libavcodec/ac3dec.c
    • [DH] libavcodec/ac3dec_data.c
    • [DH] libavcodec/ac3defs.h
    • [DH] libavcodec/ac3dsp.c
    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc.h
    • [DH] libavcodec/ac3tab.c
    • [DH] libavcodec/ac3tab.h
    • [DH] libavcodec/eac3_data.c
    • [DH] libavcodec/mips/ac3dsp_mips.c
    • [DH] libavcodec/x86/ac3dsp_init.c
    • [DH] libavformat/hls_sample_encryption.c
    • [DH] libavformat/spdifdec.c
    • [DH] libavformat/spdifenc.c