
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (59)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (4942)
-
Issues with merging multiple audio files recorded by RecordRTC
29 juillet 2019, par user590723I have been playing with RecordRTC a little bit. The audio input seem to be correctly sent to the web servers and saved on the drive.
var recorder = RecordRTC(stream, {
recorderType: MediaStreamRecorder,
type: 'audio',
mimeType: 'audio/wav',
timeSlice: 2000,
ondataavailable: function (blob) {
var fileObject = new File([blob], fileIndex + '-capture.wav', {
type: 'audio/wav'
});
var formData = new FormData();
formData.append('blob', fileObject);
formData.append('filename', fileObject.name);
$.ajax({
url: 'XXX',
data: formData,
cache: false,
contentType: false,
processData: false,
type: 'POST',
success: function (response) {
console.log('saved');
}
});
fileIndex++;
}}) ;
I tried using ffmpeg to merge all the files into one, however every single time ffmpeg is crashing during parsing the second file :
"Invalid data found when processing input"
The command I am running is :
ffmpeg.exe -f concat -safe 0 -i mylist.txt -c copy output.wav
I would really appreciate if anyone could shed some light on what I am missing here.
Thanks,
M -
http live streaming based on a m3u file
23 mars 2018, par 3agelx45I have an account on a platform of streaming (legal !). This platform provide me with a m3u file, the content looks like follow :
#EXTM3U
#EXTINF:-1 tvg-id="" tvg-name="|| something ||" tvg-logo="" group-title="",|| CAT1 ||
http://someurl.domain:1234/video1.ts
#EXTINF:-1 tvg-id="" tvg-name="video2" tvg-logo="" group-title="CAT1 part 1",VIDEO1
http://someurl.domain:1234/video2.ts
#EXTINF:-1 tvg-id="" tvg-name="video2" tvg-logo="" group-title="CAT1 part 1",VIDEO2
.
.
.
etcThis file works fine using vlc from home. but when I travel I use Hotels hotspots and some do block the connection to someurl.domain:1234.
is it possible to stream the m3u file using a light http server (stream the file from server side and reroute result to http). The idea is run a small iptv server from home on my raspberry which will allow me to bypass the "censorship" faced with some hotspots.
Thanks !
-
ffmpeg v4l2 taking 100% cpu usage
16 novembre 2022, par didentifierI am on Fedora 37, version is irrelevant as I had same issue on Fedora 36.


I am using the following command to send video from my usb video card to v4l2loopback and the CPU usage goes to 100% and I can't do much more on my computer (i5-8600k, nvidia 2060 rtx, 16GB ram).


ffmpeg -nostdin -threads 1 -f video4linux2 -video_size 1920x1080 -input_format mjpeg -i /dev/video1 -f v4l2 -preset fast -c:v copy /dev/video0


previously the command was like that and the rest of the arguments was added to see if it makes any difference, it seems it doesn't change much


ffmpeg -f video4linux2 -video_size 1920x1080 -input_format mjpeg -i /dev/video1 -f v4l2 -c copy /dev/video0


To be honest I don't know much about ffmpeg or video in general, I was using the same command a few months ago on the same hardware with almost 0 impact to my performance, I could play games and watch videos at the same time while now I get 15 FPS in my games while I am using ffmpeg. Did anything change in ffmpeg ? Any improvements to my ffmpeg command ? Shouldn't ffmpeg not encode anything if I am using pixelformat and frame rate supported by my usb video card and if that is true shouldn't be super light ?