
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (111)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (8927)
-
Raspberry Pi > CRTMPServer > JWplayer
18 juin 2015, par user3147697I’m trying to get a raspberry pi to stream to a crtmpserver, and from there to a webpage with JWplayer.
I am able to send video successfully to crtmpserver with this :
raspivid -t 0 -w 960 -h 540 -fps 25 -b 500000 -vf -o - | ffmpeg -i - -acodec aac -ac 2 -strict experimental -ab 160k -vcodec libx264 -preset slow -profile:v baseline -level 30 -maxrate 10000000 -bufsize 10000000 -b 1000k -f rtsp -metadata title=teststream rtsp ://192.168.1.20:5544/flvplayback
But am having trouble viewing the stream from crtmpserver using this is my html jwplayer code :
<code class="echappe-js"><script type="text/javascript"><br />
jwplayer("myElement-teststream").setup({<br />
playlist: [{<br />
sources:[{<br />
file: 'rmtp://192.168.1.20:1935/live/teststream"<br />
}]<br />
}],<br />
height: 1080,<br />
primary: 'flash',<br />
width: 1920<br />
});<br />
</script>What am I missing ?
-
how ffmpeg resolve the flac format file [closed]
19 février 2024, par haijiaI want make a music player use ffmpeg. As usual, when read the end of file, the av_read_frame will sender a NULL AVPacket to flash packet.NULL AVPacket But when I use the flac format file, the avcodec_receive_frame get the error is "Invalid data found when processing input" instead of "end of file".receive_frame_error,But on other format, avcodec_receive_frame get the error called "end of file".
So, Shoud I ignore this error and regard as the end of file ?


If possible, I want it get "end of file".


-
ffmpeg not encoding 'container' correctly
11 août 2012, par Barry ChapmanI am trying to encode a file that is uploaded to our server using ffmpeg.
However, when we play the video through any flash based media player (FlowPlayer, JW Player) it plays the audio but no video. When we play it on a desktop application (VLC, QT, WMP) - it works fine.
Here is my encoding command :
/usr/local/bin/ffmpeg -y -i {$in} -vcodec libx264 -acodec libfaac -ab 128k -ac 2 -b 300 -threads 4 -flags +loop -cmp +chroma -partitions 0 -subq 1 -trellis 0 -refs 1 -coder 0 -bufsize 10M -qcomp 0.6 -qmax 22 -qdiff 4 -level 30 {$out}
{$in}
is the input file,{$out}
is the output file.Our ffmpeg version is
N-41485-g1321e6e-syslint
I am still somewhat new to the video encoding scene, can anyone see anything with my encode string that might be a giveaway ?