
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (62)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (7232)
-
Re-encoding vlc-created mpeg2 .ts file results in 20 second file ; AKA : multi-stream file with hidden streams
23 novembre 2016, par insanerI was recording something with
vlc
off v4l2 (in case that makes a difference), and I just selected the first format that worked, being mpeg2 using TS container. File resulted in .ts extension, as automatically selected by vlc. When I then tried to put the video file in my video editor, it said the video was 19,884 hours long, when it should be about 6 minutes (it is 80mb in size). When I try to play it in xine, it correctly shows the duration (vlc doesn’t), and when I useffprobe
:[mpegts @ 0x9b2c0a0] max_analyze_duration 5000000 reached at 5000000
Input #0, mpegts, from 'loopbacktestcap.ts': Duration: N/A, start:
17978.139456, bitrate: N/A Program 1
Stream #0:0[0x44](): Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 104857 kb/s, 30 fps, 30
tbr, 90k tbn, 60 tbc
Stream #0:1[0x46](): Video: mpeg2video ([2][0][0][0] / 0x0002), 90k tbnNotice especially this line :
Duration: N/A, start: 17978.139456, bitrate: N/A Program 1
I looked it up and it seems the lack of duration has to do with the container. But I have tried a few things to reencode (I tried -vcodec copy, mpeg2, libx264...) and all I can get is 20 second files of 1.1mb - 1.8mb.
So how can I reencode this file so the duration appears, and I get the full 6 minutes, instead of just the first 20 seconds ?
-
azure encoding : video track in one .webm file, audio track in a .mp3 separate file, output .mp4 file
26 avril 2016, par Osama AlshaykhIn azure, I want to generate a video from two independent files : video track is in a .webm file and audio track is in a .mp3 file. Is this possible ?
I want to use Azure media services. If not, then FFMPEG could be a solution. correct ?Thanks,
Osama -
Unable to Creating Video File from one audio file and single image file in windows form c# using ffmpeg.exe
25 juillet 2018, par MoonTechHello I created one form for creating video from one mp3 file and one jpg file.
For this I Wrote this Code but this is not the answer.private void button2_Click(object sender, EventArgs e)
{
string input_audio = @"C:\Users\...\Desktop\test\audio";
string outPut = @"C:\Users\...\Desktop\test\outputvideo";
string img= @"C:\Users\...\Desktop\folder image\image123";
stripAudioTest(img, input_audio, outPut);
}
public void stripAudioTest(string image, string AudioFile, string outputfile)
{
string FFMPEG_PATH = "ffmpeg.exe";
string strParam = "-loop 1 -i "+ image+".jpg -i "+ AudioFile+ ".mp3 -c:v libx264 -c:a aac -strict experimental -b:a 128k -shortest "+ outputfile+ ".mp4";
process(FFMPEG_PATH, strParam);
}
public void process(string Path_FFMPEG, string strParam)
{
try
{
Process ffmpeg = new Process();
ffmpeg.StartInfo.UseShellExecute = false;
ffmpeg.StartInfo.RedirectStandardOutput = true;
ffmpeg.StartInfo.CreateNoWindow = true;
ffmpeg.StartInfo.FileName = Path_FFMPEG;
ffmpeg.StartInfo.Arguments = strParam;
ffmpeg.Start();
ffmpeg.StartInfo.ErrorDialog = true;
ffmpeg.WaitForExit();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}FYI : mp3 file Duration 5 minutes and 23 Seconds .
1. I am new in FFmpeg so I don’t have idea how to get out of this.
2. I Got ffmpeg command from Here
3. I tried Few of more ffmpeg command .Please check it below.string strParam = "-y -stream_loop -1 -i " + image + ".jpg -i " + AudioFile + ".mp3 -y -r 25 -b 2500k - acodec ac3 - ab 384k - vcodec mpeg4 " + outputfile+".mp4";
another one
string strParam = "-loop 1 -i " + image + ".jpg -i " + AudioFile+ ".mp3 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -pix_fmt yuv420p -shortest " + outputfile+".mp4";