
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (60)
-
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 à (...) -
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 -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (8491)
-
python 2 - is it possible to convert wav to mp3 in memory ?
23 février 2016, par Alejandro SimkievichI have been using the following script to convert mp3 to wav (in Python, for the script below to work you need to install ffmpeg) :
from pydub import AudioSegment
file = 'whatever.mp3'
base_file = file[:file.index('.')]
sound = AudioSegment.from_mp3(file)
sound.export(base_file+'.wav', format="wav")However, the file comes from a client (as an array/buffer) and dumping it to disk to convert it afterwards is costly.
Is there a way to convert an mp3 buffer to wav in memory ?
-
Restart ffmpeg on loss of stream
21 octobre 2018, par JoeNI record a rtmps stream with ffmpeg, occasionally the stream drops out for various reasons (isp failure, network problems) Ffmpeg stops and I have to manualy restart it.
Is there a way to monitor for stream loss and restart ffmpeg ?
Maybe a script ? I use Linux. I have tried timout stimout but they do not work.Here is my ffmpeg command that I enter in terminal
ffmpeg -i rtmps://(url) -r 25 \
-vf "drawtext=fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: text='%{localtime}': x=(w-tw)/2: y=h-(2*lh): fontcolor=white: fontsize=24: box=1: boxcolor=0x00000000@1" \
-f segment -strftime 1 -segment_time 1800 \
-segment_format mkv /media/joe/disk/a/%m_%d_%Y-%H_%M_%S.mkv -
Inserting an image inside a video every few frames using ffmpeg
9 mars 2017, par Erez HochmanCan I use FFMPEG to insert an image every 20 frames in a video ?
I’m trying to create a subliminal message experiment and I thought it would be an easy way to make it but I can’t find anything online.I tried to make something myself and created a script that :
1.splits a file into audio and video files
2.splits the video into frames
3.overwrites every 20th image in the sequence with the message image
4.re-encoding the video
5.concatenating it with the original audiothis works but it’s way more disk space consuming to be comfortable, is there a better way to do this ?
any advice or thought would be happily welcome.