Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (13659)

  • Add gamma encodign/decoding before/after scaling in libswscale

    17 avril 2015, par Pedro Arthur
    Add gamma encodign/decoding before/after scaling in libswscale
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libswscale/options.c
    • [DH] libswscale/swscale.c
    • [DH] libswscale/swscale.h
    • [DH] libswscale/swscale_internal.h
    • [DH] libswscale/utils.c
  • Unable see video after encoding it using ffmpeg

    22 septembre 2015, par Sharathreddy

    I have used ffmpeg for video encoding using following parameters.

    ffmpeg -i movie.mov -c:v libx264 -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -s 480x360 -acodec libvo_aacenc -b:a 128k -async 1 -movflags faststart -y movie.mp4

    "movie.mov" successfully encoded and created "movie.mp4".
    But when I play movie.mp4 in windows media player or android player, blank screen appears but the movie is playing since I’m able hear audio.
    Is there any way to re-encode movie.mp4 so that I can get video.

  • "FFmpeg was not found, spotdl can't continue" even though its installed using sudo apt-get install spotdl + it works if ran from terminal

    23 juin 2022, par dank rainbow
    @bot.command()&#xA;async def getsong(ctx, *, songname):&#xA;    "get song in mp3 from song name"&#xA;    os.popen(f&#x27;spotdl {songname} -f "/home/pi/discordbot/output/{songname}.mp3"&#x27;)&#xA;    await ctx.send(file=discord.File(fr&#x27;/home/pi/discordbot/output/{songname}.mp3&#x27;))&#xA;

    &#xA;

    ffmpeg installed with sudo-apt get. works if ran from terminal&#xA;how to fix ?

    &#xA;

    figured it out my self.&#xA;working code if it benefits anyone :

    &#xA;

    @bot.command()&#xA;async def getsong(ctx, *, songname):&#xA;    "get song in mp3 from song name"&#xA;    subprocess.Popen(f&#x27;spotdl -o "/home/pi/discordbot/output" --ffmpeg "/usr/bin/ffmpeg" {songname} --path-template "{songname}.mp3"&#x27;, shell=True)&#xA;    await ctx.send(file=discord.File(fr&#x27;/home/pi/discordbot/output/{songname}.mp3&#x27;))&#xA;

    &#xA;