
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (111)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (17940)
-
Audio mixing with FFMPEG via RTP
4 mars 2016, par DmitryI have been digging this question for a few weeks and all my attempts to manage my problem failed.
I`m writing audio server. I have some "clients" which in advanced give me their SDP information about future audio. And have a "client2" which shoul get mixed audio. So, I know "clients" and "client2" IPs and ports.
Each of "clients" sent audio via RTP, then these packeges should go to the filter created based on SDP i had from this "clients" and "client2" and then shoud send mixed stream to "client2".
Can somebody draw me a logic scheme with names of functions of FFMPEG i need to use.
.
-
Java runtime.exec process hangs
2 décembre 2018, par brendanw36So basically my program creates a process of ffplay(program based on ffmpeg that plays audio and video), but it hangs(have to force kill the program, loading wheel of death, etc.) about 15 seconds into playing. What is also interesting is that I call it with -autoexit which should kill the program at the end of the audio or video, but it doesn’t close.
import java.lang.Runtime;
import java.lang.Process;
import java.io.IOException;
public class FFPlay
{
Process proc;
public FFPlay(String fileToPlay, String fileName)
{
try
{
String[] command = {"/Users/myusername/Documents/Java Projects/SwingTest/ffplay", "-window_title", fileName, "-x", "500", "-y", "500", "-autoexit", fileToPlay};
proc = Runtime.getRuntime().exec(command);
}
catch (IOException e)
{
e.printStackTrace();
}
}
}So what am I doing wrong ? Is this a bad method for executing binaries ? I don’t know much about the Runtime and Process classes to begin with.
Edit : Method that calls the above class
public void mouseClicked(MouseEvent e)
{
if (e.getClickCount() == 2)
{
int index = songList.locationToIndex(e.getPoint());
FFPlay player = new FFPlay(songList.getModel().getElementAt(index).toString(),songList.getModel().getElementAt(index).getName());
}
} -
fluent-ffmpeg - drawtext with a single quote
9 mars 2018, par user3409988I am not able to draw a text with fluent-ffmpeg that contains a single quote.
command.videoFilters({
filter: 'drawtext',
options: {
text: 'I\'m here'
});but the single quote is omitted, the written text is "Im here".