
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (27)
-
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 (...)
Sur d’autres sites (6397)
-
Xuggler Error : Could Not Open
22 septembre 2012, par MalTecI am using xuggler API to transcode Video from one format to another.
Following the example, provided by
http://wiki.xuggle.com/MediaTool_Introduction & http://www.javacodegeeks.com/2011/02/xuggler-tutorial-transcoding-media.html
public void convertVideo(){
String sourceUrl=getResourceDirectory()+"/in/AV36_1.AVI";
String destUrl=getResourceDirectory()+"/out/output.mp4";
IMediaReader reader = ToolFactory.makeReader(sourceUrl);
// add a viewer to the reader, to see progress as the media is
// transcoded
reader.addListener(ToolFactory.makeViewer(true));
// create a writer which receives the decoded media from
// reader, encodes it and writes it out to the specified file
IMediaWriter writer = ToolFactory.makeWriter(destUrl, reader);
// add a debug listener to the writer to see media writer events
writer.addListener(ToolFactory.makeDebugListener());
////
//// // create the media writer
reader.addListener(ToolFactory.makeWriter(destUrl, reader));
// read packets from the source file, which dispatch events to the
// writer, this will continue until
while (reader.readPacket() == null)
do {} while(false);
}Provides Could Not Open Exception :
Exception in thread "main" java.lang.RuntimeException: could not open: D:\Malhar\project_works\VideoConvertter/resources/in/AV36_1.AVI
at com.xuggle.mediatool.MediaReader.open(MediaReader.java:637)
at com.xuggle.mediatool.MediaReader.readPacket(MediaReader.java:434)
at util.VideoEncoder.convertVideo(VideoEncoder.java:38)
at ConvertVideo.main(ConvertVideo.java:12)Have tried with different file to.. But, the result is same.
-
How to include MPEG codec ?
22 décembre 2018, par Edin HajdarevicWhy embed video streams are not visible in my c++ program ? I added WebBrowser into the program and the page that Browser should show is embed video stream. When I compile and run program, and when I press connect (button that should load web browser) it just loads black screen. That’s when I use just embed video stream (valid one), when I use whole site where stream is, program loads whole site, expect stream which is black. What might be problem ?
I tagged html and css in this post since they might know something about it too.
void__fastcall TForm1::Button1Click(TObject *Sender)
{
UnicodeString code, key;
int br;
code = Edit1->Text;
if (code=="C577F") br=1;
if (code=="A9967") br=2;
if (code=="G02C1") br=3;
if (code=="TB4FA") br=4;
if (code=="U3E4B") br=5;
if (code=="KR11V") br=6;
if (code=="DFF9D") br=7;
if (code=="L738D") br=8;
if (code=="AA46C") br=9;
if (code=="EC6E7") br=10;
if (code=="T7BCE") br=11;
if (code=="JT429") br=12;
if (code=="R5F2C") br=13;
if (code=="O582B") br=14;
if (code=="A1FB4") br=15;
switch(br)
{
case 1:
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=1";
break;
case 2:
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=2";
break;
case 3:
key="3";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=3";
break;
case 4:
key="4";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=4";
break;
case 5:
key="5";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=5";
break;
case 6:
key="6";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=6";
break;
case 7:
key="7";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=7";
break;
case 8:
key="8";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=8";
break;
case 9:
key="9";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=9";
break;
case 10:
key="10";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=10";
break;
case 11:
key="11";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=11";
break;
case 12:
key="12";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=12";
break;
case 13:
key="13";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=13";
break;
case 14:
key="14";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=14";
break;
case 15:
key="15";
WebBrowser1->URL = "https://live-sports-stream.net/embed/video.php?channel=15";
break;
default:
ShowMessage("Code not valid. Contact @account on instagram for a new one.");
}
} -
How can I get matplotlib to show full subplots in an animation ?
12 mars 2015, par Matt StoneI’m trying to write a simple immune system simulator. I’m modeling infected tissue as a simple grid of cells and various intracellular signals, and I’d like to animate movement of cells in one plot and the intensity of viral presence in another as the infection progresses. I’m doing so with the
matshow
function provided bymatplotlib
. However, when I plot the two next to each other, the full grid gets clipped unless I stretch out the window myself. I can’t address the problem at all when saving to an mp4.Here’s the default view, which is identical to what I observe when saving to mp4 :
And here’s what it looks like after stretching out the viewer window
I’m running Python 2.7.9 with matplotlib 1.4.2 on OS X 10.10.2, using ffmpeg 2.5.2 (installed via Homebrew). Below is the code I’m using to generate the animation. I tried using
plt.tight_layout()
but it didn’t affect the problem. If anyone has any advice as to how to solve this, I’d really appreciate it ! I’d especially like to be able to save it without viewing withplt.show()
. Thanks !def animate(self, fname=None, frames=100):
fig, (agent_ax, signal_ax) = plt.subplots(1, 2, sharey=True)
agent_ax.set_ylim(0, self.grid.shape[0])
agent_ax.set_xlim(0, self.grid.shape[1])
signal_ax.set_ylim(0, self.grid.shape[0])
signal_ax.set_xlim(0, self.grid.shape[1])
agent_mat = agent_ax.matshow(self.display_grid(),
vmin=0, vmax=10)
signal_mat = signal_ax.matshow(self.signal_display(virus),
vmin=0, vmax=20)
fig.colorbar(signal_mat)
def anim_update(tick):
self.update()
self.diffuse()
agent_mat.set_data(self.display_grid())
signal_mat.set_data(self.signal_display(virus))
return agent_mat, signal_mat
anim = animation.FuncAnimation(fig, anim_update, frames=frames,
interval=3000, blit=False)
if fname:
anim.save(fname, fps=5, extra_args=['-vcodec', 'libx264'])
else:
plt.show()