Recherche avancée

Médias (91)

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Further SMC Encoding Work

    25 août 2011, par Multimedia Mike — General

    Sometimes, when I don’t feel like doing anything else, I look at that Apple SMC video encoder again.

    8-bit Encoding
    When I last worked on the encoder, I couldn’t get the 8-color mode working correctly, even though the similar 2- and 4-color modes were working fine. I chalked the problem up to the extreme weirdness in the packing method unique to the 8-color mode. Remarkably, I had that logic correct the first time around. The real problem turned out to be with the 8-color cache and it was due to the vagaries of 64-bit math in C. Bit shifting an unsigned 8-bit quantity implicitly results in a signed 32-bit quantity, or so I discovered.

    Anyway, the 8-color encoding works correctly, thus shaving a few more bytes off the encoding size.

    Encoding Scheme Oddities
    The next step is to encode runs of data. This is where I noticed some algorithmic oddities in the scheme that I never really noticed before. There are 1-, 2-, 4-, 8-, and 16-color modes. Each mode allows encoding from 1-256 blocks of that same encoding. For example, the byte sequence :

      0x62 0x45
    

    Specifies that the next 3 4×4 blocks are encoded with single-color mode (of byte 0×62, high nibble is encoding mode and low nibble is count-1 blocks) and the palette color to be used is 0×45. Further, opcode 0×70 is the same except the following byte allows for specifying more than 16 (i.e., up to 256) blocks shall be encoded in the same matter. In light of this repeat functionality being built into the rendering opcodes, I’m puzzled by the existence of the repeat block opcodes. There are opcodes to repeat the prior block up to 256 times, and there are opcodes to repeat the prior pair of blocks up to 256 times.

    So my quandary is : What would the repeat opcodes be used for ? I hacked the FFmpeg / Libav SMC decoder to output a histogram of which opcodes are used. The repeat pair opcodes are never seen. However, the single-repeat opcodes are used a few times.

    Puzzle Solved ?
    I’m glad I wrote this post. Just as I was about to hit “Publish”, I think I figured it out. I haven’t mentioned the skip opcodes yet– there are opcodes that specify that 1-256 4×4 blocks are unchanged from the previous frame. Conceivably, a block could be unchanged from the previous frame and then repeated 1-256 times from there.

    That’s something I hadn’t thought of up to this point for my proposed algorithm and will require a little more work.

    Further reading

  • PHP exec 'at' command doesn't work

    16 avril 2014, par Vitaly

    I'm trying to schedule video recording from live stream with 'at' command :

    exec("/usr/bin/at now +1 minute <<< \"ffmpeg -i 'http://191.235.136.144:9001/?cmd=play&file=7663&type=channel' -vcodec copy -acodec copy -t 30 -f mp4 -y /media/NASDRIVE/video_2.mp4\" 2>&1", $output, $return_var);

    Checking with 'at -l' doesn't show anything. When I run absulutely the same command in the console, everything works fine.

    I've added 'www-data ALL=NOPASSWD : ALL' to sudoers. Still getting empty 'at' queue.

  • vf_hqdn3d : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_hqdn3d : make config_props work properly when called multiple times.
    

    Do not leak all the temp buffers.

    • [DBH] libavfilter/vf_hqdn3d.c