Advanced search

Medias (1)

Tag: - Tags -/iphone

Other articles (37)

  • Les notifications de la ferme

    1 December 2010, by

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Support audio et vidéo HTML5

    10 April 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 April 2011, by

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

On other websites (6290)

  • Error: The path is not of a legal form while using NReco.VideoConverter

    26 January 2017, by Dyon

    I 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
  • Add useHTML5Audio note to basic template

    31 July 2011

    m demo/template/index.html Add useHTML5Audio note to basic template

  • Core: Register focusin, focusout and keyup also on radio/checkbox

    20 May 2014, by staabm
    Core: Register focusin, focusout and keyup also on radio/checkbox
    

    Fixes #1062
    Closes #1065