Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (102)

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

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11257)

  • avcodec/internal : Bump sane_nb_chanels

    20 août 2019, par Michael Niedermayer
    avcodec/internal : Bump sane_nb_chanels
    

    This allows decoding more als reference samples

    Suggested-by : Thilo Borgmann <thilo.borgmann@mail.de>
    Reviewed-by : Thilo Borgmann <thilo.borgmann@mail.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/internal.h
  • Combine images into video (with audio in background) in ffmpeg

    4 juillet 2021, par Mayank Thapliyal

    I have a folder with 15 images and 1 audio file :

    &#xA;

    image_1.jpg, image_2.jpg, image_3.jpg ..... and music.webm

    &#xA;

    (Also resolution of images is 1440x720)

    &#xA;

    I want to combine these images into a video with audio in background.And framerate I require is 0.2 (5 second for each frame).I gave a search on Stackoverflow and I found the nearest example and tried.But it failed.

    &#xA;

    ffmpeg -f image2 -i image%03d.jpg -i music.webm output.mp4

    &#xA;

    (Actually I have very little knowledge of ffmpeg so please excuse my foolishness)

    &#xA;

    Please help me with my issue.(Also I didn't understood where in the code I have to enter framerate)

    &#xA;

    Edit :-If needed I can easily tweak with filename of images.Be free to tell me that too

    &#xA;

  • How to copy ffmpeg conversion output to file name without previous file extension [duplicate]

    20 janvier, par Tim

    I am trying to batch convert mp4 music files to m4a music files using ffmpeg on ubuntu .The command works but uses previous file extension for new name.

    &#xA;

    find ./ -iname "*.mp4" type f -exec ffmpeg -i {} -vn -acodec cp "{}".m4a &#xA;

    &#xA;

    This command produces a new file as such : ..01_Loser.mp4.m4a

    &#xA;

    but I need ..01_Loser.m4a

    &#xA;

    I cannot figure out how to get file name without previous extension. Any help would be appreciated. Thanks !

    &#xA;