
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (54)
-
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. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (9981)
-
ffmpeg : drop in sound multiple times at random intervals
7 septembre 2022, par CoderPadwanI have a 2 MP3 files, one is 10 minutes long and another track that is 1 second long. I would like to merge these tracks into a new file that plays the 1 second track at random intervals of the longer one.


-
Play Raspberry Pi h264 stream in C# app
29 octobre 2016, par CoreMeltdownI have a Raspberry Pi board with dedicated camera that records video only in h264. I am looking for the best method to stream and play recorded video in real-time (as in, less than 1 sec delay) in c# windows forms app. The additional requirement is that such stream can be easily processed before displaying, for example for searching for objects on the image.
Stuff I tried :
- VLC server on raspi and VLC control in c# forms app <- simple solution, with RTSP, but has a serious flaw, which is a 3sec delay in image displayed. I couldn’t fix it with buffor size/options etc.
- creating a socket on raspi with nc, receiving raw h264 data in c# and passing it to mplayer frontend <- If I simply start raspivid | nc and on the laptop nc | mplayer, i get exactly the results i want, the video i get is pretty much realtime, but the problem arises when i try to create mplayer frontend in c# and simulate the nc.exe. Maybe I’m passing the h264 data wrong (simply write them to stdin) or maybe something else.
- using https://github.com/cisco/openh264 <- I compiled everything, but i can’t even get to decode sample vid.h264 i recorded on raspi with h264dec.exe, not to mention using it in c#.
h264dec.exe vid.h264 out.yuv
This produces 0bytes out.yuv file, while :
h264dec.exe vid.h264
Gives me error message : "No input file specified in configuration file."
- ffmpeg <- I implemented ffplay.exe playback in c# app but the lack of easy method to take screencaps etc. discouraged me to further investigate and develop.
I’m not even sure whether I’m properly approaching the subject, so I’d be really thankful for every piece of advice I can get.
EDIT
Here is my ’working’ solution I am trying to implement in c#raspivid --width 400 --height 300 -t 9999999 --framerate 25 --output - | nc -l 5884
nc ip_addr 5884 | mplayer -nosound -fps 100 -demuxer +h264es -cache 1024 -The key here is FPS 100, becuase then mplayer skips lag and plays the video it immediately receives with normal speed.
The issue here is that I don’t know how to pass video data from socket into mplayer via c#, because I guess it is not done via stdin (already tried that). -
mp4 is not playing on changing the name of mp4 file
7 juillet 2014, par user2301309I am using below code to generate file name-
File imagefile = new File(path);
int imageCount = 0;
if (!imagefile.exists()) {
imagefile.mkdirs();
}else{
String[] files = imagefile.list();
for(String file : files){
if(file.contains("mp4")){
String fileName = file.replace(".mp4","");
String[] parts = fileName.split("_");
String count = parts[parts.length-1].replaceAll("\\D+","");
int i = Integer.parseInt(count);
if(i+1>imageCount){
imageCount = i+1;
}
}
}
}
String video_id = "VID"+ "_" + imageCount;
String video_info = (Lat_Lon_CellID.lat+"#"+Lat_Lon_CellID.lon+"#"+Lat_Lon_CellID.datetimestamp+"#"+Home.imei+"#").replaceAll("\\.", "@");
newVideoPath = path + File.separator +video_info+ video_id + ".mp4";videofile name generated here is 0@0#0@0#null#354961053417767#VID_0.mp4
but when i try to play this video, i got error MediaPlayer error (1, -2147483648) while if i change newVideoPath to-
String video_id = "VID"+ "_" + imageCount;
newVideoPath = path + File.separator + video_id + ".mp4";videofile name generated here is VID_0.mp4
then it plays the video.
Can anyone tell me that what could be the reason ?