Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (24)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Creating farms of unique websites

    13 avril 2011, par

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

Sur d’autres sites (6771)

  • Design Custom FFmpeg media player in Android for Allwinner A20 device

    22 décembre 2016, par Hardik

    I want to design one custom media player using FFmpeg library in android OS for Allwinner A20 custom board.

    This custom board is having two playback devices HDMI and 3.5mm Jack. So I want to play same audio file to both devices simultaneously.

    I can see device file for both sound card in /dev/snd/pcmC1D0p for HDMI and /dev/snd/pcmC2D0p for 3.5mm Jack. (Note : pcmC0D0p and pcmC0D0p using for some other audio zone)

    I’m using tlv320aic3100 codec with I2s Interface for 3.5mm audio out Jack.

    Using Android media player I’m not able to serve two sound cards simultaneously, So I’m thinking to design custom media player using FFmpeg library.

    I need some predictions and possible challenges in this approach.
    and
    I would be very grateful if somebody could suggest step-wise procedure to do this.

  • Converting a large number of MP3 files to videos for YouTube, each using same the JPEG image

    25 juin 2020, par David

    I am looking for a way to convert large number of MP3 files to videos, each using the same image. Efficient processing time is important.

    


    I tried the following :

    


    ffmpeg -i image.jpg -i audio.mp3 -vcodec libx264 video.mp4


    


    VLC media player played the resulting video file with the correct sound, but a blank screen.

    


    Microsoft Media Player played the sound and showed the intended image. I uploaded the video to YouTube and received the message :

    


    


    "The video has failed to process. Please make sure you are uploading a supported file type."

    


    


    How can I make this work ?

    


  • Combine unordered images to video (+MP3 audio)

    8 mars 2012, par TheSHEEEP

    So I did a few jobs with ffmpeg and also created my own dll, using ffmpeg API directly, but for my next project, I need to be able to combine multiple images together to a video with ffmpeg, also adding a mp3 sound clip.
    I know that you can do that for ordered images like this :

    image001.jpg image002.jpg image003.jpg etc...


    ffmpeg -f image2 -i img%03d.jpg -i sound.mp3 output.mpg

    But in our project, we do not have the images ordered like that. Instead, which images to use for the video in which order is determined at runtime (one image for each frame of a video at 30fps).
    So a video with 10 frames, for example, could have to consist of the following order of images :

    image001.jpg image002.jpg image111.jpg image012.jpg imageFun.jpg image001.jpg image002.jpg imageFun.jpg image055.jpg imageEnd.jpg

    How would I do that using ffmpeg ? This part of the documentation doesn't exactly help me here.

    I really don't want to resort to using the ffmpeg API directly from C/C++, but fear that I have to if that is not possible "natively".

    .

    Addition :

    If that is not possible with ffmpeg, but with some other software (that runs on Linux and can be controlled from command line) - I'm all ears ! ;)