
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (24)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6372)
-
How to call ffmpeg with arguments from C using popen on Linux ?
14 décembre 2019, par Edoardo ColellaI tried to use
ffmpeg
concatenation withpopen
command in C but I get "No such file or directory". If I use Linux terminal with the same command it works.C code :
fp=popen("ffmpeg -i \"concat: audio/1.mp3|audio/2.mp3\" -acodec copyoutput.mp3", "r");
pclose(fp);Error in Linux shell :
audio/1.mp3|audio/2.mp3 No such file of directory found
What could be the problem ?
-
How to close all the threads and multiprocesses in a tkinter app when app closes ?
16 juillet 2021, par kupI am creating a tkinter app which start a multiprocess.process (daeman = True) and then that process further starts a couple threads and that thread further starts a ffmpeg process.


for i, val in enumerate(group):
 threads.append(Thread(target = self.ffmpeg, args=(val, )))
 threads[i].start()



But when i close the app the process does not stops, i can still see log in the terminal after i closes the app.


I just want them to close when app shuts down.


i also tried :


sys.exit()



-
How to use FFprobe on Pycharm ? [closed]
27 novembre 2023, par someoneontheglobeSort of a segue from my other question, is it possible to use ffprobe on Pycharm ? I thought I had it imported in, and even so, I have the exe file in my PATH variables, but I keep getting errors.


I'm using aeneas for forced audio alignment, and I'm running the command :
python -m aeneas.tools.execute_task --example-json
into the Pycharm terminal (taken from here), but I would continue to get the error of[ERRO] Unable to call ffprobe executable
. Is there any other way to do it ?