Recherche avancée

Médias (91)

Autres articles (98)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (13072)

  • How to make (output file) take the name from (input mp3 file) in FFMPEG ?

    23 novembre 2020, par Артем

    I am using Windows 7
    
Here is my batch file.
    
This batch file combines mp3 and png. By adding album art to the audio file.

    


    @echo off
@setlocal EnableDelayedExpansion
color a
set a=Your_files\*.mp3
set aa=Your_files\*.png
set b="Result\%%~na.mp3"
set c=ffmpeg
set f=-map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)"
for %%a in (%a%) do !set mp3="%%a"!
for %%s in (%aa%) do !set png="%%s"!
%c% -y -i %mp3% -i %png% %f% %b%
exit


    


    When I write this (%% na.mp3) he doesn't know where to get the title from.
    
So it outputs this as the filename (% na.mp3).

    


    set a=Your_files\*.mp3
set aa=Your_files\*.png
set b="Result\%%~na.mp3"


    


    That's what I want. Open me

    


  • ffmpeg tile screenshot file with uniform distribution over video length

    23 octobre 2017, par Michael Yousef

    I’m trying to take a video and create a screenshot file for it. I want it to cover the entire duration of the video and be uniformly distributed over the video. I have a command right now that I found online, it can produce a screenshot file, but it doesn’t cover the entire duration

    ffmpeg -ss 00:05:00 -i video.mp4 -frames 1 -vf "select=not(mod(n\,8000)),scale=320:240,tile=4x8" out.png

    Instead of having it cap every 80 seconds, I want it to determine what the duration is use that. It should cap the first screen at my initial offset, then however far ahead as necessary.

    Also, if anyone knows how to add information to the outputted file at the top, like filename, duration, bitrate, etc., that’s also something I want to output.

  • Révision 17466 : re-ecriture de la fonction d’upgrade des spip_auteurs_xxx en spip_auteurs_liens :

    22 mars 2011, par cedric -

    decoupe pour migrer une table a la fois

    generalisation pour etre utilisee pour n’importe quel autre pivot que auteur

    reduire la manipulation des donnees entre lecture et ecriture

    faire un delete par id_xxx, ce qui simplifie et reduit le nombre de requetes

    assurer l’avancement meme en cas de (...)