Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (16)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3369)

  • Revision c5443fc881 : Fix decoder mismatch in sub-pixel SSSE3 intrinsic filters In 8-tap filtering, t

    23 mai 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/common/x86/vp9_asm_stubs.c


     Modify /vp9/common/x86/vp9_subpixel_8t_intrin_ssse3.c



    Fix decoder mismatch in sub-pixel SSSE3 intrinsic filters

    In 8-tap filtering, to guarantee the intermediate results fit in
    16 bits, the order of accumulating the products needs to be done
    correctly, and the largest product should be added last. This
    patch fixed the problem using the method in commit "Correct ssse3
    8/16-pixel wide sub-pixel filter calculation".

    Change-Id : I79d0ad60c057b15011ece84cda9648eee0809423

  • playing m3u8 videos with dynamic url in laravel [on hold]

    9 mars 2019, par Farzane Khazaei

    I convert my Mp4 videos to M3u8 via ffmpeg and I want to display them on my android application.

    for security reason i store my videos in storage folder and i don’t have direct access to the files. and the endpoint for displaying videos is "products/{product_id}/sample"

    please tell me how can i response M3u8 videos for my application

  • Why am I getting an exit status of 1 ?

    24 mai 2018, par Akaisteph7

    So, I am writing this code to analyze this video but I am facing this issue when I try to run it in Spyder, Anaconda :

    import subprocess
    from subprocess import call
    import math

    ##Converts the given file into a series of images
    def Video_to_Image_Converter(fileName):
       res1 = call("ffmpeg -i " + fileName + " -vf fps=1 frame-%d.jpg", shell=True)
       print(res1)
       result = subprocess.Popen('ffprobe -i '+ fileName +' -show_entries format=duration -v quiet -of csv="p=0"', stdout=subprocess.PIPE,stderr=subprocess.STDOUT, shell=True)
       output = result.communicate()
       print(output)
       #return math.ceil(float(output[0])) + 1


    if __name__ == '__main__':
       videoLength = Video_to_Image_Converter('sampleVideo.wmv')
       print(videoLength)

    So, this code worked fine in iPython but I started having issues when trying to use Spyder. res1 should have an exit status of 0 if everything went well but it is 1. However, I do not know what went wrong. All it says when running subprocess.check_output on call is :

    Command 'ffmpeg -i sampleVideo.wmv -vf fps=1 frame-%d.jpg' returned non-zero exit status 1

    Please help.