
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (10309)
-
Streaming to Twitch with FFMpeg
18 décembre 2014, par Josh RaymondI’m using the following script to try and stream my linux desktop to Twitch.tv, I have the stream working, mostly. Unfortunatly, I’m unable to get it to stream my SECOND monitor instead of just my first..
Here’s the script
#! /bin/bash
INRES="1900x600"
OUTRES="800x600"
INAUD="pulse"
FPS="25
STREAM_KEY=$(cat ~/.twitch_key)
STREAM_URL="rtmp://live.twitch.tv/app/$STREAM_KEY"
ffmpeg \
-f alsa -ac 2 -i "$INAUD" \
-f x11grab -s "$INRES" -r "$FPS" -i :0.0+1280,0 \
-vcodec libx264 -s "$OUTRES" -pix_fmt yuv420p \
-acodec libmp3lame -threads 6 -qscale 5 -b 64KB \
-f flv -ar 44100 "$STREAM_URL"Everything works as it should (after a few hiccups I solved on my own before coming here)
But I was wondering if there was a way to pipe TWO audio inputs into ffmpeg ? One for the system sounds (IE game) and one for my mic ? I use Pulseaudio and have pavucontrol, if that matters.Thanks in advance.
-
How can I record video and clip into peace at the same time using ffmpeg ?
19 septembre 2023, par Noisy-JohnSmithHere is my question, I need to implement a function that satisfy the following :


- 

- Record your computer monitor(or any other video) into video in any format
- You have a button, every time you click the button, the process will ouput a 20 seconds clip with mp4 format.
.e.g :
I start a ffmpeg recording process at 00:00:00, and I click the button at 00:01:20, that will output a mp4 video from the Video recorded by step 1 from 60th second to 80th second
- The mp4 produce by step 2 is allow some bias for seconds. Maybe from 61st second to 79th second in step 2
- the clipping process is quick, need just few second










Is there any way to implement this function ?


-
Randomly silencing part of input audio in real time
3 septembre 2021, par NobodyMy machine is running Ubuntu 20 LTS. I want to manipulate the input live audio in real-time. I have achieved pitch shifting using sox. The command being -


sox -t pulseaudio default -t pulseaudio null pitch +1000



and then routing the audio from "Monitor of Nullsink" .


What I actually want to do is, silence randomized parts of the input audio, with a range. What I mean is, randomly mute 1-2s of the input audio.


The final goal of this project will be to write a script that manipulates my voice and makes it seems like my network is bad.


There is no restriction in method of achieving. That is we may use any language, make an extension, directly manipulate the input audio with sox, ffmpeg etc. Anything goes.