
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP 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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (6011)
-
Displaying progress while working on FFMpegConverter ?
1er novembre 2017, par GreenRoofDuring a part of my project, I should download video data and audio data of a youtube link and merge them using
NReco.VideoConverter
. So this here is my code :public class Download {
public NReco.VideoConverter.FFMpegConverter ffMpeg;
public BackgroundWorker bgWorker;
public Download (BackgroundWorker bgWorker) {
this.BgWorker = BgWorker;
var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
ffMpeg.ConvertProgress += (s, e) => ReportProgress(Convert.ToInt64(e.Processed.TotalSeconds), Convert.ToInt64(e.TotalDuration.TotalSeconds));
}
public MergeData() {
// Video data and Audio data are downloaded to tempVidPath and tempAudPath.
ffMpeg.Invoke(String.Format("-i \"{0}\" -i \"{1}\" -y -c copy \"{2}\"", tempVidPath, tempAudPath, targetPath));
}
public ReportProgress(long part, long total) {
bgWorker.ReportProgress(0, new string[] {part.ToString(), total.ToString()});
}
}
public partial class App : Form {
//**omit
public void Execution() {
bgWorker = new BackgroundWorker(); // bgWorker is already defined in Designer class.
bgWorker.WorkerReportsProgress = true;
Download Dnld = new Download(bgWorker);
bgWorker.ProgressChanged += (s, e) => {
string[] arr = ((System.Collections.IEnumerable)e.UserState).Cast().Select(x => x.ToString()).ToArray();
progBar.Maximum = Int64.Parse(arr[1]);
progBar.Value = Int64.Parse(arr[0]);
};
bgWorker.DoWork += (s, e) => {
Dnld.MergeData()
}
}
}Here, I have no idea how to keep
progBar
to track the merging process while two files are being merged. Is there any method likeWebClinet.DownloadFileAsync
so I can get progress data from the thread ?** I didn’t write unnecessary codes so codes may complicated and inefficient. But there are much more codes so please understand that problems. :)
-
Merge commit 'ecc5c4db2dd3a0f328d95df89daa59f78b4b2810'
30 octobre 2017, par James Almer -
avcodec/pixlet : fixes integer overflow in read_highpass()
17 août 2017, par Michael Niedermayeravcodec/pixlet : fixes integer overflow in read_highpass()
Fixes : runtime error : negation of -2147483648 cannot be represented in type 'int32_t' (aka 'int') ; cast to an unsigned type to negate this value to itself
Fixes : 2879/clusterfuzz-testcase-minimized-6317542639403008Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>