
Recherche avancée
Autres articles (52)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...)
Sur d’autres sites (16021)
-
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 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 ?
-
RTSP Invalid data found when processing input
2 décembre 2020, par Даша ОніщенкоI'm trying to connect to the IP camera


stream = new Stream({
 name: 'name',
 streamUrl: 'rtsp://91.245.79.15:8556/Streaming/Channels/0',
 wsPort: 9999,
 ffmpegOptions: { // options ffmpeg flags
 '-stats': '', // an option with no neccessary value uses a blank string
 '-r': 30 // options with required values specify the value after the key
 }
})




But I receive the following error on the terminal :


rtsp://91.245.79.15:8556/Streaming/Channels/0: Invalid data found when processing input.



What am I doing wrong ?