
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 (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (15305)
-
Play just audio (without launching a window)
6 août 2017, par Paradise on EIs there a way to hide
ffplay
window on Windows ? I want to play audio files (some of them have video streem as well), but I don’t want a window to appear. Is there any way to hide window completelly ?I took a look at their documentationa and I didn’t find a way to do it. I also searched on the internet and didn’t find anything useful. Everyone are asking "Why in the world do you want to hide window..." and similar questions instead of actually posting an answer on how to do it.
I believe ffplay doesn’t have native way to hide window. So, what are the most easiest alternative ? One of the alternatives would be to download ffplay source code, modify it and recompile it, but it is definitelly not an easy and quick way.
Is there any way I can launch a process without showing window. It would be great if there is some way to achieve it when ffplay is launched from Node.js (becuase I am using Node.js’s module
child_process
to play audio files). So, how can I hide ffplay’s window ?My current code is following :
var cp = require('child_process');
var proc = cp.spawn('ffplay', [
'-no_banner',
'-loglevel', 'panic',
playlist.splice(Math.random() * playlist.length | 0, 1)[0]
]);Question
How to hide ffplay’s window ? If it is possible using
ffplay
native arguemnts (which I didn’t find in ther documentation) then what arguments to use ? If there is no native way, then is it possible to do it using Node.js’s modulechild_process
? If not, is there any other way I can hide ffplay’s window ? Again, I must note that some of files I play have video stream as well. So, is there any way to hide ffplay’s window ?Thanks in advance.
-
Why html5 dont play audio file with this name ?
21 septembre 2012, par John SmithTell me please, why audio file with name '1348175998expro' is play , but audio file with name '1348175998exprog' is not play ???
Link http://testwork.ru/10001/ConcertMedia/1348175998exprog.mp3
http://testwork.ru/10001/ConcertMedia/1348175998expro.mp3What it a lag ?
-
ffmpeg use amix and adelay to play ad over song
15 mars 2017, par snowkiterdudeI have two mp3 files, one long and one short(a song and an ad). I need the ad to play over the song starting 15 seconds into the song. I also need the volume of the song to fade out/in slightly before and after the ad. I have tried using amix with adelay but just can’t get it right.
here is something close but broken.
ffmpeg -i song.mp3 -i ad.mp3 -filter_complex "amix=inputs=2:duration=first:dropout_transition=2 ;adelay=0|15000" output.mp3
How can I get the ad to mix with the song properly ?