Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (66)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

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

Sur d’autres sites (10300)

  • Android JNI architecture target for use with multiple devices

    8 mai 2012, par William Seemann

    When using JNI in Android does the C code need to be compiled to adhere to all different types of ARM architectures ? For instance if I compile ffmpeg for armeabi can I use it on all Android devices or do I need to compile it to different targets such as armeabi-v7a ?

  • Streaming from gopro to android

    28 septembre 2017, par Marco Bernardi

    I’m try to send the video stream from gopro to android.
    I connect and manage the gopro via http thanks to guide of KonradIt https://github.com/KonradIT/goprowifihack
    With ffmpeg android library we managed the streaming
    http://writingminds.github.io/ffmpeg-android-java/
    but i can see only the information about the frame and i can send the
    stream to my computer (attacched to gopro) and see it with vlc.
    The ffmpeg command launched from the application android is :

    ffmpeg -an -f:v mpegts -i udp ://:8554 -an -f:v mpegts udp ://10.5.5.101:8555

    But we want see the stream directly on app android.

    How can do it ?

  • Trim or split opus on android without ffmpeg

    25 mai 2021, par Omkar

    Trim or split opus on android without ffmpeg

    


    The opus file could be contained in any format supported by ffmpeg export
(Created when building the app,ffmpeg too heavy to include in app)

    


    I tried genVideoUsingMuxer , MediaExtractor ,MediaMetadataRetriever but it fails with error

    


    Unsupported mime 'audio/opus'
java.lang.IllegalStateException: Failed to add the track to the muxerat android.media.MediaMuxer.nativeAddTrack(Native Method)
at android.media.MediaMuxer.addTrack(MediaMuxer.java:660)


    


    Any way i can trim the audio on android with a lightweight solution

    


    Reencoding is not needed but its ok if output format is anything playable on android