
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (4)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (1461)
-
(WinError 2) combining video (.mp4) and audio (.mp4) using Python ffmpeg
28 mai 2021, par LeonI'm new to using ffmpeg, and I'm trying to use ffmpeg to combine an audio only (.mp4 format) and a video only (also .mp4 format)


I've tried reinstall FFmpeg, ffmpeg, and ffmpeg-python :


import ffmpeg

def main():
 video_stream = ffmpeg.input('Video.mp4')
 audio_stream = ffmpeg.input('Audio.mp4')
 ffmpeg.output(audio_stream, video_stream, 'result.mp4').run()


if __name__ == "__main__":
 main() 



It returns me this error :


Traceback (most recent call last):
 File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 15, in <module>
 main()
 File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 11, in main
 ffmpeg.output(audio_stream, video_stream, 'result.mp4').run()
 File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 313, in run
 process = run_async(
 File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 284, in run_async
 return subprocess.Popen(
 File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
 self._execute_child(args, executable, preexec_fn, close_fds,
 File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
 hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] The system cannot find the file specified
</module>


-
Windows Batch-File to execute n other batch-files in parallel
11 décembre 2015, par JosI use ffmpeg to convert video files. The codec I’m encoding with is single-threaded. There are a lot of video files to convert, so instead of using multithreaded encoding I can simply encode multiple video files with 1 thread each.
To automate the encoding I use the follow commands in a .bat :
SET maindir=%~dp0
FOR /r /d %%f in (*) do pushd "%%f" & Call %maindir%convert-with-ffmpeg.bat & popdThis calls "convert-with-ffmpeg.bat" sequentially`to convert each file/folder in the main dir.
What would my .bat file have to look like if I want to do this in parallel (say, 12 times) until there are no more folders left to process ?
EDIT : Let me be clear that I want to LIMIT the amount of running processes at 12. When a .bat is done, I want the main .bat to start a new process until all files are converted (100+).
-
FFmpeg on Qt Creator
10 novembre 2022, par c47296I have got FFmpeg compiled using MSYS2. I have a strange issue that appeared only recently.the app crashes.
This is my main file :


#include "mainwindow.h"
#include <qapplication>
#include <qdebug>

extern "C" {
#include <libavdevice></libavdevice>avdevice.h>
#include <libavformat></libavformat>avformat.h>
#include <libavutil></libavutil>avutil.h>
#include <libavcodec></libavcodec>avcodec.h>
}


int main(int argc, char *argv[])
{
 //qDebug() << av_version_info();
 // avdevice_register_all();
 QApplication a(argc, argv);
 MainWindow w;
 w.show();
 return a.exec();
}
</qdebug></qapplication>


The program runs but crashes if I call 'avdevice_register_all()' and others FFmpeg functions,but only call 'av_version_info()' is runs, not crashes.
I don't really know how to solve this ?


I have already tried to use google solving the problem,but no result.