Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

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 (13097)

  • Restore compatibility with powerpc-apple-darwin9-gcc-4.2.1

    15 juillet 2016, par Pavel Koshevoy
    Restore compatibility with powerpc-apple-darwin9-gcc-4.2.1
    

    ... and attempt to preserve compatibility with clang that was
    introduced in 311a953c76081fca99b872629d248f9d69ebc0c3 (untested)

    Reviewed-by : "Ronald S. Bultje" <rsbultje@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ppc/asm.S
    • [DH] libavcodec/ppc/fft_altivec.S
  • Android : ExoPlayer - Get current frame number from video

    28 avril 2016, par Gil

    I’m developing an Android video app where I need to get the current frame number of the video being displayed while in pause mode.

    I need to send my Server the frame number currently paused in video and get back a list of items regarding that frame/time, right now I’m sending the current paused time in milliseconds, but it doesn’t work quite well, because the Server compare the time sent to a specific frame it calculated, based on the time, but sometimes the comparison is not exact.

    I know you can get a bitmap from that frame if you use MediaMetaDataRetriever, and I did it but it returns bitmap image and what I need is an index.
    I’m using ExoPlayer (I need that feature for MP4 and for HLS, too, if that matters).

    Is there a way to get that info from the video ?

  • Video output file duration is cut in half when processed using fluent-ffmpeg

    7 novembre 2019, par Kamau

    I have a node server set up and it takes a file for pre-processing. When using only ffmpeg library, files are processed with no problem, when using fluent-ffmpeg, if a video is 20 seconds, the output will only be the last half of the video (10 seconds). I’ve tried multiple files of varying length and with same issue. Any idea why this would happen ?

    const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
    const ffprobePath = require('@ffprobe-installer/ffprobe').path;
    const ffmpeg = require('fluent-ffmpeg');

    ...

    ffmpeg.setFfmpegPath(ffmpegPath);
    ffmpeg.setFfprobePath(ffprobePath);

    ffmpeg('video.mov').videoBitrate('512k').output('./output/video.mov')
       .on('error', function(err, stdout, stderr) {
         console.log('Cannot process video: ' + err.message);
       }).screenshots({
         count: 1,
         size:'640x480'
       });