
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (82)
-
Soumettre bugs et patchs
10 avril 2011Un 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 2011MediaSPIP 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 2011Contrairement à 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 Avisonvc-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>
-
Revision a1f15814be : Clamp decoded feature data Not all segment feature data elements are full-range
27 novembre 2012, par John KoleszarChanged 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 djspatuleI'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 :


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




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

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

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


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