
Recherche avancée
Autres articles (98)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7402)
-
Update GSFN links
20 décembre 2011, par Scott Schillerm doc/download/index.html m doc/getstarted/index.html m doc/index.html m doc/resources/index.html m doc/technotes/index.html m index.html Update GSFN links
-
FFMpeg for iPhone
10 août 2012, par iHorseI am trying to create an app that will allow me to stream video FROM the iPhone TO a server. my current theory as to how to do this is to create a series of FFMpeg files and send them to the server. as far as i can tell i have compiled the FFMpeg library correctly for the iPhone.
i followed these instructions here. a series of executable files appeared in the folder so i'm assuming it worked.my question is now what ? how do i get these into an app ? how do i make calls to these executable files ? and most importantly will this even work the way i want it to ?
-
Downloading, transcoding, then streaming on the fly with VLC
12 avril 2012, par Alexis KI need to download a file from a web service the immediatley extract the audio, then transcode it, then stream it out.
When I use :
vlc.exe URL :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}
it is really choppy when I listen to it on the other computer. What is strange also is that for some YouTube links, the above works well, but for others it dosen't work well. I am not sure why this is.
However, when I download the audio first, then stream it out, like this
vlc.exe "song.mp3" :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}
it works well. The issue is I can't always download the song before hand (long pod casts or internet radio...).
Is there a command or VLC optimization that I can use to help remedy this situation ? Or another program that would be good ?