Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (10767)

  • Revision 513157e093 : Scatter-based scantables. This gains about 0.2% on derf, 0.1% on hd and 0.4% on

    25 mars 2013, par Ronald S. Bultje

    Changed Paths : Modify /configure Modify /vp9/common/vp9_entropy.c Modify /vp9/decoder/vp9_dequantize.c Scatter-based scantables. This gains about 0.2% on derf, 0.1% on hd and 0.4% on stdhd. I can put this under an experimental flag if wanted, just trying to get my patch queue in shape. Change-Id : (...)

  • Splitting multiple videos into shorter based on frame count

    15 décembre 2022, par LEstvs

    I can cut the video based on seconds, for example, I can cut the video from second 0 to second 10 and from second 10 to second 20. But I need to cut the video from frame 0 to frame 250 and from frame 250 to frame 500 because of some error due the counting of second. Does anyone has any idea about this ?

    


    Here is the code I use to cut based on seconds :

    


    required_video_file = "H8.avi"

with open("Z:/temp/Letícia/Videos/teste/times.txt") as f:
    times = f.readlines()

times = [x.strip() for x in times] 

for time in times:
    starttime = int(time.split('-')[0])
    endtime = int(time.split("-")[1])
    ffmpeg_extract_subclip(required_video_file, starttime, endtime, targetname=str(times.index(time)+1)+".avi")


    


  • Not able to play video file in Qt5 based Web browser on Linux ARM machine

    20 février 2016, par user3436349

    I am using Yocto Buildsystem to generate customized Linux Image with Qt5.4
    support in it for TI AM335x based ARM platform, here in Yocto I have selected
    components those are required for Qt5 based Webbrowser so as to play HTML5 audio
    and video files such as :
    - qtmultimedia
    - gstreamer (1.0)
    - qtscript
    - qtwebsockets
    - qtimageformats
    - libgles-omap3
    - lighttpd
    - gst-ffmpeg
    - gst-fluendo-mp3
    - gstreamer (0.10)

    Here after building the final image. I found that there are
    both gstreamer and gstreamer-1.0 directories in /usr/lib, also the
    required ffmpeg libs are located in /usr/lib/gstreamer directory.
    But I suspect the webkit by default links to /usr/lib/gstreamer-1.0
    directory and hence cannot find required libs.

    When I tried the manually copy the ffmepg related libs in /usr/lib/gstreamer-1.0
    directory from /usr/lib/gstreamer, then I got the libav related version error.

    Please guide me regarding who to configure webkit or webcore .bb file so that
    it links to both the gstreamer directories in /usr/lib and can thus play
    HTML5 audio and video files in qt5 based web-browser.