Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (82)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5725)

  • vc-1 : Add platform-specific start code search routine to VC1DSPContext.

    21 juillet 2014, par Ben Avison
    vc-1 : Add platform-specific start code search routine to VC1DSPContext.
    

    Initialise VC1DSPContext for parser as well as for decoder.
    Note, the VC-1 code doesn’t actually use the function pointer yet.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] configure
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/arm/vc1dsp_init_arm.c
    • [DBH] libavcodec/vc1.c
    • [DBH] libavcodec/vc1dec.c
    • [DBH] libavcodec/vc1dsp.c
    • [DBH] libavcodec/vc1dsp.h
  • Revision a1f15814be : Clamp decoded feature data Not all segment feature data elements are full-range

    27 novembre 2012, par John Koleszar

    Changed Paths : Modify /vp9/common/vp9_seg_common.c Modify /vp9/common/vp9_seg_common.h Modify /vp9/decoder/vp9_dboolhuff.c Modify /vp9/decoder/vp9_dboolhuff.h Modify /vp9/decoder/vp9_decodframe.c Modify /vp9/encoder/vp9_bitstream.c Modify /vp9/encoder/vp9_boolhuff.c (...)

  • How to concatenate variables and strings as a full path for the "output file" of an ffmpeg command in a bash script

    12 mai 2022, par djspatule

    I'm trying to learn to bash scripting and I tried to use variables and arguments, etc. to specify a complex output file name to a ffmpeg command as follows :

    &#xA;

    for file in "$1"/*; do&#xA;    #get the name of each file in the directory (without the path nor the extension)&#xA;    filename=$(basename $file .mp3)&#xA;    #use mimic for Text To Speech. Difficult to install but good and natural voices.&#xA;    ~/Desktop/mimic1/mimic -t "$filename" -o $1/wavefile.wav&#xA;    #converts the wav file outputed by mimic into mp3&#xA;    ffmpeg -i $1/wavefile.wav -f mp3 "${1}/${filename} (title).mp3"&#xA;done&#xA;&#xA;

    &#xA;

    But the "${1}/${filename} (title).mp3" part in particular really doesn't seem to work...

    &#xA;

    Indeed, if I run script.sh ./, I get a file called (title).mp3

    &#xA;

    Can you help me figure out what it is I'm doing wrong ?&#xA;Thanks a million in advance.&#xA;Best,

    &#xA;

    P.S. : i also get earlier in the terminal's output basename: extra operand ‘.mp3’...like my whole code is wrong....?

    &#xA;