
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 (42)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...)
Sur d’autres sites (4456)
-
How can I close all the threads and multiprocesses in a Tkinter app when the app closes ?
3 septembre 2021, par kupI am creating a Tkinter application which starts a multiprocess.process (daeman = True) and then that process further starts a couple of threads and that thread further starts an FFmpeg process.


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



But when I close the application the process does not stop. I can still see the log in the terminal after I close the application.


I just want them to close when application shuts down.


I also tried :


sys.exit()



-
how use ffmpeg to convert caf file ?
25 novembre 2015, par tommy7xoI am using a ffmpeg to convert audio files. It is used for voice login mechanism for my web application. The problem occurs when I am using it from IOS application, but it works for web. IOS application is sending aa audio file to api, and it is converted on server side. Server is running script :
ffmpeg -i $1 -ar 8000 -ac 1 $2
$1 and $2 is input and output file path respectively. The only difference is file format as IOS is using .caf instead of .wav. When I run application for .caf file I have following error :
/app/tmp/voices/1448448813_sample.caf: Input/output error
It is a ffmpeg problem ? How to fix it ?
-
FFMpeg on Android not working
30 août 2013, par user2171513I have build FFmpeg statically linked binary and I am using it to do some video/audio encoding -decoding in an Android application. If I use FFmpeg from my android application using
Runtime.getRuntime().exec(Command);
then it seems to suddenly crash in between without any error logs.
but If I run the exact same command through adb shell then it succeeds. I am not able to figure out what would be the difference in running a native binary through adb shell or through an Android Application.Any help is appreciated.