Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (11)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (4384)

  • NReco ffmpeg library error

    19 janvier 2016, par agurodriguez

    I’m using NReco.VideoConverter for a video converting application. Now I’m trying to replace the audio in the source video for an mp3 track. I’m using this snippet from the official site : http://www.nrecosite.com/video_converter_net.aspx but I receiving this error :

    audio.mp3 : Invalid data found when processing input (exit code : 1)

    var ffmpeg = new NReco.VideoConverter.FFMpegConverter();
    ffmpeg.ConvertMedia("video.mp4", null, "output_video.mp4", null, new ConvertSettings() {
     AudioCodec = "copy", VideoCodec = "copy",
     CustomInputArgs = String.Format(" -i \"{0}\" ", "audio.mp3"),
     CustomOutputArgs = " -map 0 -map 1",
    });

    I tried with different audio files but still the same scenario.

    Hope you can help me !
    Regards

  • avcodec/prores_aw : change src pix_fmt and alpha description

    8 novembre 2018, par Martin Vignali
    avcodec/prores_aw : change src pix_fmt and alpha description
    

    use b64a as src pix fmt (doesn't seems to have an impact on decoding)
    but it's the value use by official encoder

    • [DH] libavcodec/proresenc_anatoliy.c
  • Limit file size in FFmpeg

    26 novembre 2019, par Arete

    The official documentation for FFmpeg says :

    -fs limit_size (output)

    Set the file size limit, expressed in bytes. No further chunk of bytes is written after the limit is exceeded. The size of the output file is slightly more than the requested file size.

    This is very confusing. If the file size is slightly more than the requested file size then I have the following questions :

    1. What determines how much more (than the requested file size) the file will consume ?

    2. How much more will the file exceed the requested file size ?

    3. Is there any way to set the file size exactly ?

    4. What is the point of having the -fs if it does not actually work ?