
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
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
Autres articles (101)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (6976)
-
How to convert audio in each directory by FFmpeg and batch script.
16 juin 2013, par StallmanAfter a hard study, I have created a
batch
file :for /R D:\storytelling\MusicFiles %%a in (*.3gp) do ffmpeg -i %%a -y %%~na.mp3
However, it can't reach my goal since the scenario is a little different here :
Here is my directory structure :
I have several directories under a certain path :
D:\storytelling\MusicFiles\
and new directories could be created by another application. And I putffmpeg.exe
file in this path :D:\storytelling\MusicFiles\
.
Also, In each directory, I have hundreds of.3gp
files, and my target is to convert them to.mp3
in the directory where theyused
to stay at.
But this scriptfor /R D:\storytelling\MusicFiles %%a in (*.3gp) do ffmpeg -i %%a -y %%~na.mp3
would convert every
.3gp
file in each directory to the path :D:\storytelling\MusicFiles\
It leads to :
But I want thepublicUser_XXX.mp3
files are still in the directorypublicUser
and after conversion all the files remain in their original directory. The only change is that I got new a media copy with different media format like :Please help and give me some advise.
-
rtsp to rtmp using ffmpeg or any tool wrapper
27 août 2017, par ChakriI have a requirement where I need to restream the RTSP stream from camera source to RTMP server. I know this may sound a repeated question but my exact scenario is I cannot do it manually over command line with ffmpeg command. I need a wrapper where I receive the rtsp and rtmp url from external source say through REST invocation. Then the code can trigger the ffmpeg restream.
Basically flow is like this :
- Camera source application sends RTSP read event(could be basic HTTP(REST) request with RTSP url, metadata about camera info, serial no etc) to my streamer app
Ex : /usr/bin/ffmpeg -i rtsp ://10.144.11.22:554/stream1 -f flv rtmp ://10.13.11.121:1935/stream1
-
Streamer app computes the RTMP server url for corresponding camera and triggers a ffmpeg command to stream RTSP to RTMP
-
Streamer app triggers above(2) in separate thread and keeps reading the logs for monitoring purpose. Also identifies the end of RTSP stream and sends an update(Example : RTSP END) event to UI
Now at point(2) I need a suggestion. Here I need a stable wrapper/api which can help. I tried this through some Java wrappers but the process hangs or fails to read the output from ffmpeg. Also I need to handle streams from many cameras where spawning thread for each one could be exhaustive.
So I am looking for some similar api/wrapper in C++ or Go Lang which might have more closer interaction in handling ffmpeg command.
Please point if similar issue is addressed elsewhere
-
Trim video file to edit-out silent parts
18 décembre 2018, par karelI have video recordings of webinars with long silent gaps in them. I need to edit out the silent parts (both the audio and corresponding video tracks). I need to do this through a linux command and be able to do this as a batch action for several video files.
Ideal scenario is to run a command that :- detects long silent gaps (longer than defined time threshold, e.g. 5
seconds) - cuts out long silent sections and leaves only 5 seconds of
silent video bet ween all ’loud’ video sections.
In another post I found this great script (below). It does the job, but it a) doesn’t leave in extra silent 5 seconds of video which I need after every ’loud’ video part, and b) doesn’t compile produced video files into one composed video file (this problem is less of an issue for me, although it would be great to do that in the same command).
I didn’t figure out how to modify the script to do this.
Thanks beforehand for any suggestion.
ffmpeg -i input.mkv -filter_complex "[0:a]silencedetect=n=-90dB:d=0.3[outa]" -map [outa] -f s16le -y /dev/null |& F=’-aq 70 -v warning’ perl -ne ’INIT $ss=0 ; $se=0 ; if (/silence_start : (\S+)/) $ss=$1 ; $ctr+=1 ; printf "ffmpeg -nostdin -i input.mkv -ss %f -t %f $ENVF -y %03d.mkv\n", $se, ($ss-$se), $ctr ; if (/silence_end : (\S+)/) $se=$1 ; END printf "ffmpeg -nostdin -i input.mkv -ss %f $ENVF -y %03d.mkv\n", $se, $ctr+1 ; ’ | bash -x
- detects long silent gaps (longer than defined time threshold, e.g. 5