
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (15)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (4904)
-
Error : The path is not of a legal form while using NReco.VideoConverter
26 janvier 2017, par DyonI am trying to convert a .flac-file to a .wav-file using NReco.VideoConverter, but I keep getting an error and I do not know why.
This is the piece of code I am using for the conversion ://Create the NReco.VideoConverter.FFMpegConverter object
var ffmpeg = new FFMpegConverter();
//inputFile will be something like this:
//type: string, "C:\\some\\folder\\fullTrackName" + ".flac"
var inputFile = Path.Combine(downloadFolder + fullTrackNameNoExtension + ".flac");
//outputFile will be something like this:
//type: string, "C:\\some\\folder\\musicfile" + ".wav"
var outputFile = Path.Combine(downloadFolder + fullTrackNameNoExtension + ".wav");
//Convert the file using NReco.VideoConverter.FFMpegConverter
ffmpeg.ConvertMedia(inputFile, outputFile, null);inputFile/outputFile would be like this, this is what I see when I insert a breakpoint and check the values of in/outputFile :
string, inputFile/outputFile : "Z :\Downloads\Audio - File (Original Mix).flac" (or .wav)
And this is the error I receive when I run ffmpeg.ConvertMedia :
System.ArgumentException: The path is not of a legal form.
at System.IO.Path.LegacyNormalizePath(String path, Boolean fullCheck, Int32 maxPathLength, Boolean expandShortPaths)
at System.IO.Path.NormalizePath(String path, Boolean fullCheck, Int32 maxPathLength, Boolean expandShortPaths)
at System.IO.Path.GetFullPathInternal(String path)
at System.IO.File.InternalGetLastWriteTimeUtc(String path, Boolean checkHost)
at NReco.VideoConverter.FFMpegConverter.EnsureFFMpegLibs()
at NReco.VideoConverter.FFMpegConverter.ConvertMedia(Media input, Media output, ConvertSettings settings)
at NReco.VideoConverter.FFMpegConverter.ConvertMedia(String inputFile, String inputFormat, String outputFile, String outputFormat, ConvertSettings settings)
at NReco.VideoConverter.FFMpegConverter.ConvertMedia(String inputFile, String outputFile, String outputFormat)
at APPLICATION_Name.APPLICATION_Class.ConvertFile(String downloadFolder, String fullTrackName, String fullTrackNameNoExtension, String downloadQuality, String downloadType) in X:\APPLICATION_Name\DownloadTrack.cs:line 244 -
Revision b192d99f73 : Fix ads2gas script to look for ALIGN as a word. Change-Id : I4efc4f4e87e8666b692
11 décembre 2012, par Frank GalliganChanged Paths : Modify /build/make/ads2gas.pl Fix ads2gas script to look for ALIGN as a word. Change-Id : I4efc4f4e87e8666b69257de82c5c5dd4aadee28c
-
Extract Word timing in audio file [on hold]
2 décembre 2018, par user1160621Is there any code solution (as FFmpeg) to find the word timing in an audio file, for example, the result will be :
word1 : start at 1.1 Seconds and ended at 1.7
word2 : start at 2.1 Seconds and ended at 2.4Thank you.