Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (31)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5419)

  • avfilter/vf_yadif : reallocate frames if strides differ

    3 septembre 2013, par Michael Niedermayer
    avfilter/vf_yadif : reallocate frames if strides differ
    

    Fixes Ticket2896

    An alternative to this would be to change the code to support any
    stride.
    The condition of differing strides should be rare.
    If theres no speedloss supporting any stride would be better

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

    • [DH] libavfilter/vf_yadif.c
  • lavc/pngenc : stop setting dts unnecessarily for APNG

    12 juillet 2022, par Anton Khirnov
    lavc/pngenc : stop setting dts unnecessarily for APNG
    

    APNG is not marked as supporting reordering, so dts will be set from pts
    by the generic code.

    • [DH] libavcodec/pngenc.c
  • Change the audio of the video based on start and end time

    4 avril 2022, par Vuqar Samed

    Lets say I have sample video named "samplevideo" and sample audio named "sampleaudio". I want to replace the audio of the samplevideo with the sampleaudio starting from 5 sec to 12 sec. Until 5 sec mark the video audio won't change, then sampleaudio starts and lasts for 7 sec.

    &#xA;

    I tried to come up with ffmpeg command that solves this problem :

    &#xA;

    ffmpeg -i samplevideo.mp4  -i sampleaudio.aac -ss 20 -map 0:v  -map 1:a -c:v copy output.mp4&#xA;

    &#xA;

    Problem :
    &#xA;It cuts video starting from 20 sec time mark. What I want is to persist the video and the original audio stream until it hits desired time mark and then use sampleaudio until desired end time.

    &#xA;

    I would appreciate any help.

    &#xA;