Recherche avancée

Médias (91)

Autres articles (61)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • python simple web app stack [on hold]

    8 septembre 2013, par Shonu93

    I am currently learning python and have written an app that I would like to put out on the web and/or Facebook platform. My script for the app is around 50-100 lines. The things I would like to implement are :

    1.HTML5 and CSS3

    • I'm good with this and would like to make the front end really appealing.

    2.Database

    • A simple database that keeps some basic info of the users who have used this app. (Either
      through their Facebook account or something else ! )
    • I would also like to have the option of storing 30 second mp3 clips. Say around 50 of
      these clips which the user can select and download.

    3.Python Backend

    • My python script should process user input on the server and send the output to the user.
    • My server should also have ffmpeg and lame libraries installed. (As my app requires this !)

    NOTE ** I would like to develop the complete web app locally first, before deploying it on the web **

    I really have no idea how to go about this. My app works like a charm on my Mac OSX and I really want to deploy this app on the web to make others happy too ! Do help me out guys !

  • How to add album art with ffmpeg ?

    17 juillet 2016, par Adi Ricky k

    Everybody, I’ve stuck to add album art on mp3 files.

    I already research and Googling about this issue but not solution yet, on ffmpeg documentation to add image (album art) to mp3 use this script :

    ffmpeg -i input.mp3 -i cover.png -c copy -map 0 -map 1 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    Source from : http://www.ffmpeg.org/ffmpeg-all.html#mp3

    But it’s doesn’t work on my console output is :

    Unrecognized option 'c'
    Failed to set value 'copy' for option 'c'

    I looking for another solution and I get from : http://trac.ffmpeg.org/ticket/2221 :

    ffmpeg -i input.mp3 -i cover.png -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    Also return same output, I already research why return :

    Unrecognized option 'c'
    Failed to set value 'copy' for option 'c'

    But there are no body have same problem.
    anybody can help me, please ?

    nb : I use ubuntu 12.04 and ffmpeg version 0.8.6-4:0.8.6-0.
    thanks

  • Is it possibility to merge FLV files by using javascript ?

    26 juin 2020, par DingXuan

    I know that I can merge multiple FLV files by using FFMPEG, but I want I can do this on front-end.

    


    I have looking for this question for a long time, but can't find any method to do that.

    


    Anyone can help me ?