Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (20)

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

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5105)

  • Grow your business and understand your conversion funnel with Funnels for Piwik

    14 décembre 2016, par InnoCraft — Plugins

    Hi, this is Tom from InnoCraft. The company of the makers of Piwik.

    No matter what type of website or app you have, whether you are trying to get your users to sign up for something or sell products, there is a certain number of steps your visitors have to go through. I bet the same applies to you.

    Have you ever wondered if your visitors or users actually follow that path in your website or app ? And wondered where you lose your visitors ? Where they maybe get confused ? Want to see when something is not working anymore ? Maybe you have a multi step signup form or onboarding process ? On every step you lose visitors and therefore potential revenue and conversions. It’s critical to know how well your visitors go through these steps, where they originally came from and where they go to when they drop off.

    If you are wondering about such things like we do, or want to drive your conversions and sales, we have something for you.

    -> Read the rest of the story on the Funnels Marketplace page.

    What does the new Funnel report look like ?

    Here is below just a little preview of the Funnel report.

    You get this funnel report for each of your goals so you can optimise each of your conversion funnels.

    Where do I get Funnel for Piwik ?

    Funnels is available on the Piwik Marketplace :

    Funnels is premium plugin for Piwik and comes with our 14 day money back guarantee and 1-click installation & updates (all product updates come for free).

    You can also signup for a free Piwik Cloud-hosted trial to discover the power of Funnels !

  • how to choose ffmpeg video mp3 audio version id ?

    7 juin 2013, par Ulterior

    I am having issues on ffmpeg encoded video files audio tracks. My encoded video contains ID for audio track as extracted from mediainfo :

    I use CODEC_ID_MP3 in guess_format "mov" container for quicktime

    Audio
    ID                                       : 2
    Format                                   : MPEG Audio
    Format version                           : Version 2
    Format profile                           : Layer 3
    Codec ID                                 : .mp3
    Duration                                 : 2s 916ms
    Bit rate mode                            : Constant
    Bit rate                                 : 128 Kbps
    Channel(s)                               : 1 channel
    Sampling rate                            : 16.0 KHz
    Compression mode                         : Lossy
    Stream size                              : 45.3 KiB (2%)
    Language                                 : English

    This is not recognized on a vanilla codecless installation of windows 7, only played by k-lite codec libmad

    I have noticed, that another test file contains similar mp3 track and is played by media player OK :

    Audio
    ID                                       : 2
    Format                                   : MPEG Audio
    Format version                           : Version 1
    Format profile                           : Layer 3
    Mode                                     : Joint stereo
    Mode extension                           : MS Stereo
    Codec ID                                 : 6B
    Duration                                 : 1mn 9s
    Bit rate mode                            : Constant
    Bit rate                                 : 320 Kbps
    Channel(s)                               : 2 channels
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 2.67 MiB (38%)
    Writing library                          : LAME3.98

    The difference I noticed is in Format version number and Codec ID, which is Version 2 from ffmpeg output - I couldnt locate this version setting in ffmpeg source files, so my question is - is there a way to influence this format version identificator and set the codec id as in above playable video ?

  • Split HEVC video into pieces of less than 1 second

    28 septembre 2019, par Vadim

    I am trying to split 3-second HEVC video 240fps into 5 parts less than 1 second.

    Video info

    Format                      : HEVC
    Format/Info                 : High Efficiency Video Coding
    Format profile              : Main@L6@Main
    Codec ID                    : hvc1
    Codec ID/Info               : High Efficiency Video Coding
    Duration                    : 2 s 861 ms
    Bit rate                    : 84.8 Mb/s
    Width                       : 1 920 pixels
    Height                      : 1 080 pixels
    Display aspect ratio        : 16:9
    Frame rate mode             : Constant
    Frame rate                  : 239.760 (240000/1001) FPS
    Color space                 : YUV
    Chroma subsampling          : 4:2:0
    Bit depth                   : 8 bits
    Bits/(Pixel*Frame)          : 0.170
    Stream size                 : 28.9 MiB (100%)
    Title                       : GoPro H.265
    Language                    : English
    Encoded date                : UTC 2016-05-14 03:54:07
    Tagged date                 : UTC 2016-05-14 03:54:07
    Color range                 : Full
    Color primaries             : BT.709
    Transfer characteristics    : BT.709
    Matrix coefficients         : BT.709
    Codec configuration box     : hvcC

    FFMPEG command :

    ffmpeg -y -i output240.mp4 -c copy -segment_time 0.6 -f segment  output%0d.mp4

    But it cuts into 3 parts 1 second long each

    With h264 there is no such problem.
    If i`ll reincode h265 to h265 with parameter -x264-params keyint=1:scenecut=0

    .//ffmpeg -i testVideo.mp4 -c:v libx264 -x264-params keyint=1:scenecut=0 -c:a copy output.mp4

    It is all ok.

    Is there any option to split without encoding ?