Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (47)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Not able to make playable ASF file ffmpeg [on hold]

    12 février 2016, par Farukh Zahoor

    I am using this command line to make playable asf file from an image

    ffmpeg -loop 1 -i "G :\ffmpeg\1.jpg" -i "G :\ffmpeg\silence.mp3" -t 5 -vcodec libx264 -acodec libvo_aacenc -pix_fmt yuv420p -f asf -movflags faststart -b 1352k -r 30 -s 704x480 -vf "setdar=4:3" "G :\ffmpeg\output.asf"

    But I am able to make mp4 file using this command from an image

    ffmpeg -loop 1 -i "G :\ffmpeg\1.jpg" -i "G :\ffmpeg\silence.mp3" -t 5 -vcodec libx264 -acodec libvo_aacenc -pix_fmt yuv420p -f mp4 -movflags faststart -b 1352k -r 30 -s 704x480 -vf "setdar=4:3" "G :\ffmpeg\output.mp4"

    I get no error making files from the above commands. Can anybody guide me on this ?

  • webp : Make sure enough bytes are available

    3 juillet 2015, par Andreas Cadhalpun
    webp : Make sure enough bytes are available
    

    Every chunk needs at least 8 bytes for chunk_type and chunk_size.
    Prevent a possible infinite loop.

    CC : libav-stable@libav.org
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavcodec/webp.c
  • How to make a nonstreamable mp4 streamable from a JS browser client ?

    14 mai 2020, par Daniel Kobe

    For my service we are sending videos that need processing. Unfortunately some of the videos are non streamable. By that I mean the metadata information is at the end of the file and not the beginning. With ffmpeg you can make a video streamable with this command : ffmpeg -i source.mp4 -a:v copy -a:c copy -movflags faststart output.mp4

    &#xA;&#xA;

    Is there anyway I can replicate ffmpegs faststart logic from a JS client ?

    &#xA;&#xA;

    I see that there are libaries like ffmpeg.js but I was hoping to avoid having a huge library in the code.

    &#xA;