
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (16)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (4184)
-
Convert ASF file with codec Racal recorder to wav
11 juin 2020, par ArshedI want to convert the asf file which is having codec "A4 ;ACELP ; ;Racal Recorders".
Codec is detected using MediaInfo library. The file is not playable using any common audio/video players like VLC. Converting to wav using FFmpeg fails with error unknown codec.



Is there any converter/FFmpeg-plugin available for this codec ?



PS:I'm not able to share the file due to security policy


-
Unable to convert files with fluent-ffmpeg
4 avril 2017, par SomenameI installed fluent-ffmpeg with
npm install fluent-ffmpeg
and verified its present in the node-modules. There is no error if I include it in the servervar ffmpeg = require('fluent-ffmpeg');
But when I use it to convert a.gif
file in the directory to.mp4
it throws an error :Error: Cannot find ffmpeg
My code :
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
var ffmpeg = require('fluent-ffmpeg');
var proc = new ffmpeg({ source: '/uploads/myfile.gif' })
.usingPreset('podcast')
.saveToFile('/uploads/mynewfile.mp4', function(stdout, stderr) {
console.log('file has been converted succesfully');
});What am I doing wrong ? I want to convert the
.gif
to.mp4
-
How do I convert flac to wav on iOS ?
12 mai 2017, par popctrlI have a file which is encoded with FLAC and I want to convert it to WAV.
I have added this FFMpeg lib to my project and imported it.
I see some code from this answer, but I am unclear on how to use it :
#import "avformat.h"
// Some code goes here
/*
* avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options)
*/
int openInputValue = avformat_open_input(&pFormatCtx, utf8FilePath, inputFormat, nil);
NSLog(@"%s - %d # openInputValue = %d", __PRETTY_FUNCTION__, __LINE__, openInputValue);I currently have this code in a function which takes
NSData
holding the FLAC file. Ifavformat_open_input
is the correct call, how do I set the variable ? If it is not the correct call, what is ?This question seems like a duplicate but it doesn’t really have a good answer.
Also note that I don’t want a player. This file contains MQA so I need to run it through my own custom decoder.