Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (10880)

  • SOLVED - Compiling FFMPEG on Windows with Cywin and NDK r5

    19 mai 2012, par protectedmember

    This isn't a question - it's an answer for alll of you who have been facing the same problems as I have. I've been trying to compile this thing for a while now and I know of the numerous posts floating around the internet offering help. I have read and tried most of the suggestions and wanted to colate my success into this single post for others to benefit from.

    Since I don't have a blog, I thought it wouldn't hurt to post on here instead.

    I have managed to compile FFMPEG 0.10.3 (Freedom) on Windows 7 (32 bit) using NDK r5 and Cygwin. The steps :

    1 - Download/install Cygwin in the root of your C drive. I'm not going to give instructions on this, it's simple enough and there are plenty of tutorials on this.

    2 - Download NDK r5 from here and extract to the root of your C drive.

    3 - Download FFMPEG 0.10.3 from here and extract to the root of your C drive.

    4 - Open the file 'configure' in the root of the FFMPEG directory in a text editor.

    5 - Comment out lines 2073, 2074 and 2075.

    6 - Below 2075, add the following line :

    TMPDIR=c :/cygwin/tmp

    7 - Download this script (thankyou roman10) and place it inside your FFMPEG root directory. Rename the file to

    build_android.sh

    8 - Open the script in a text editor and edit line 17 to read

    c :/android-ndk-r5

    9 - Click start > run and type "bash" (without the speech marks) and press enter.

    10 - Type the following and press enter :

    cd /cygdrive/c/ffmpeg-0.10.3

    11 - Type the following and press enter :

    ./build_android.sh

    12 - Sit back and wait... libffmpeg.so will soon appear in your "c :\ffmpeg-0.10.3\android\" directory (where is defined in the bottom of the script from roman10's blog). The default architecture is armv7-a.

    The script from roman10's blog will actually compile quite a large shared object (.so) file. The compiler flags can be adjusted to suit your needs in the script from roman10's blog.

    I hope this helps,

    P.

  • How to send MPEGTS streams over UDP

    24 décembre 2015, par pAkY88

    I am developing a realtime video-streaming system which is composed basically by a server and several clients.

    For now, let’s ignore how packets are forwarded among the server and the clients, let’s focus just on how the server can send a MPEGTS stream over UDP packets.

    The stream is encoded in MPEGTS format.

    What I’m trying to do is reading some packets (the main question is "how many ?") and encapsulating them in UDP packets. The destination (a client) reads these UDP packets and then forward them to VLC, which is able to play MPEGTS network streams by reading UDP packets.

    If I send only video packets, everything works fine, instead if I try to encapsulate in the same UDP packet, both some video packets and some audio packets, VLC is not able to decode and play the stream.
    I read somewhere that each UDP packet should contain 7 TS packets, but unfortunately even if I comply with this rule, VLC doesn’t decode the stream correctly.

    Here is a sample code of my program : http://pastebin.com/evMi6FkY

    How should I encapsulate MPEGTS packets in UDP packets ?

    Thanks !

  • ffmpeg C api capture frames from usb Cam

    18 février 2013, par Ahmed Kato

    After doing some search I can find some command line solutions to grab frames from the webcam like this :

    ffmpeg -ss 60 -i input.mpg -frames:v 20 frame_%d.png

    but I need to do that usgin the ffmpeg C api, this tutorial is outdated.

    at the end my question is how to grab frames from a webcam using ffmpeg C api.