Recherche avancée

Médias (91)

Autres articles (78)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Installation en mode ferme

    4 février 2011, par

    Le 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 (...)

Sur d’autres sites (10128)

  • Video won't play with Android's native MediaPlayer, however it plays with Dropbox's video player

    12 novembre 2014, par Nachi

    I’m having trouble playing a certain .3gp file (from a Dropbox link) with Android’s MediaPlayer. However the file magically plays without problems from the Dropbox Android app.

    I’m trying to play it using this :

    Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
    intent.setData(Uri.parse("https://www.dropbox.com/s/zpiqwmxka6llavt/SketchyFile.3gp"));
    startActivity(intent);

    and my manifest contains

    which gives a "Can’t play this video" error.

    error-screenshot

    Logcat shows :

    I/NuCachedSource2(89): new range: offset= 2245017
    I/ChromiumHTTPDataSource(89): connect to https://dl.dropbox.com/0/view/a1crokuhpprsaeo/SketchyFile.3gp @2245017
    I/NuCachedSource2(89): ERROR_END_OF_STREAM
    E/MediaPlayer(3629): error (1, -2147483648)
    E/MediaPlayer(3629): Error (1,-2147483648)
    D/VideoView(3629): Error: 1,-2147483648

    If I try to play it from the Dropbox Android app, Dropbox’s video player has no problem playing it.

    dropbox-success-screenshot

    According to ffmpeg’s ffprobe tool I could verify that the media type is not something exotic to Android.

    Is Dropbox performing some weird transcoding voodoo and is there a way I can make this work in a similar way ?

    EDIT : Here’s some more insight into DropBox’s encoding voodoo.

  • android ffmpeg .so download [closed]

    19 janvier 2015, par Jas

    Anybody knows from where to get compiled .so FFMPEG library for Android ?

    I tried thousand of times to compile the FFMPEG manually on windows-7 using Android NDK
    but never succeeded.

    So I think it’s better to use precompiled lib as I’m already using the same same technolgy that used in :
    https://github.com/guardianproject/SSCVideoProto

    But the ffmpeg lib in this project is very old.

    Any help is much appreciated.......

  • Android live streaming multicast

    10 mars 2016, par user1573559

    I have built a Android application based on FFMPEG, reference http://www.roman10.net/how-to-build-android-applications-based-on-ffmpeg-by-an-example/.
    Now, I want to live streaming multicast ?
    How to convert multicast to unicast url to live streaming ?
    Please suggest.