Recherche avancée

Médias (91)

Autres articles (104)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11904)

  • How to build ffmpeg libray for Android in Ubuntu [on hold]

    4 novembre 2014, par Zheng Wang

    I’m going to combine m4a audio files in one with the help of ffmpeg libray in Android.
    But now, I’m facing the problem in the building of ffmpeg jni and libaac .so file for Android.
    Thank you for your consideration.

  • 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

    


  • 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 ?