Recherche avancée

Médias (91)

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (7669)

  • Revision b4262c6cc5 : tests : enable datarate_test based on CONFIG_ENCODERS not just CONFIG_VP8_ENCODE

    22 février 2014, par James Zern

    Changed Paths :
     Modify /test/test.mk



    tests : enable datarate_test based on CONFIG_ENCODERS

    not just CONFIG_VP8_ENCODER ; there's now VP9 code in the same file

    Change-Id : I73d8b9141af1374b37480fb0495e17a7952eb4f9

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

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