
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (75)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
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 (5807)
-
ffmpeg throws conversion error, but only if the triggering web request is made from safari ?
22 novembre 2022, par Kyoshiro Kokujou ObscuritasI'm using ffmpeg to do an on-the-fly conversion of audio files to ensure high compatibility. i'm converting them to OGG. and all of this is done by a .NET 6 REST service.
This service is then accessed by a javascript Frontend.
Now the problem. The exact same request runs through without any problems on Windows + Firefox, but it does not on Safari. In Safari it says something about "unknownConversion failed"


it's the same file, it's the same name, and to make sure there are no weird invisible characters i used the Microsoft File API to convert it to a proper file path.


code looks like this


var ffmpeg = new Process();
 var startInfo = new ProcessStartInfo("D:\\Programme\\ffmpeg\\bin\\ffmpeg.exe",
 $"-i \"{path.FullName}\" -c:a libopus -f ogg -")
 {
 RedirectStandardError = true,
 RedirectStandardOutput = true,
 RedirectStandardInput = true,
 UseShellExecute = false,
 CreateNoWindow = true
 };
 ffmpeg.EnableRaisingEvents = true;
 ffmpeg.StartInfo = startInfo;
 ffmpeg.ErrorDataReceived += OnErrorDataReceived;
 ffmpeg.Exited += OnFinished;

 ffmpeg.Start();
 ffmpeg.BeginErrorReadLine();

 return File(new BufferedStream(ffmpeg.StandardOutput.BaseStream), "audio/ogg");



Complete Logs : https://pastebin.com/tTUcsjuT


-
I need to use SOX or similar To SPIT AUDIO with a specific given duration
28 mai 2019, par PierDEVITI need to use SOX or similar To SPIT AUDIO given a specific duration
Duration : 1 minute, this is the limit : I need this for transcribing the audio with Google Speech-To-Text
this is the main code that I had seen in the StackOverflow’s platform. It isn’t the final code but the house code :
https://unix.stackexchange.com/questions/99182/sox-splitting-audio-on-silence-but-leaving-tails
Code :
sox STE-000.wav out.wav silence 1 0.5 1% 1 1.0 1% : newfile : restart
Sentence-Recognition It’s a dream ! I but I can be satisfied with this method !
Thank in advice
-
What's the command for converting mp3 to ape using ffmpeg
14 février 2018, par user2331687How to convert the mp3 music file to APE ? It’s easy to convert APE to mp3 but I have no idea to convert mp3 to APE.