Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • PHP Compress video from Gopro, best way ?

    11 janvier 2013, par Mepps

    I develop a website for hosting videos from GoPro (mp4 files often in HD)

    I would like how to compress video after upload.
    Acutally, on website you can upload video and watch it but she are so fat and its not possible to watch it ...

    I see ffmpeg-php but i don't see how to compress with her API.

    the best way, it's compress to unique format like flv ? or to ogv/webM/mp4 to used html 5 ?

    Any ideas ?

    Thanks a lot,

    Regards

  • How to merge image and audio to video with the same color ? (FFMPEG)

    6 février 2019, par JeanClothem

    i try to merge audio and image to video in ffmpeg,

    The problem that export does not have the same color as the original


    Here is a comparison on YouTube

    Original : https://www.youtube.com/watch?v=NsSBI9qwFE4

    Export ffmpeg : https://www.youtube.com/watch?v=FsxwqTSqpbQ

    ffmpeg -loop 1 -i rose.jpg -i rose.flac -c copy -shortest rose.mkv

    I want to get the same color as my original image

    Thank you !

  • Bash Script to convert all flv file in a directory to mp3

    11 août 2014, par UnbrandedTech

    This is my code so far.

    #!/bin/bash
    #James Kenaley
    #Flv to Mp3 directory converter

    find /home/downloads -iname "*.flv" | \
    while read I;
    do
       `ffmpeg -i ${I} -acodec copy  ${I/%.flv/.mp3}`
       echo "$I has been converted"
    done

    but its picking up white spaces in the names of the flv files and throws a error saying its not in the directory. how do make it use the whole file name and not the just the first word before the space ?