Recherche avancée

Médias (91)

Autres articles (79)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9014)

  • Retrieve orientation info for video under Android

    22 avril 2013, par C Young

    Just like ExifInterface.TAG_ORIENTATION's working for JPEG, how can I retrieve orientation info for video ?

    For example I record a video in portrait mode, the orientation of video should be 90 or 270.

    And when I record a video in landscape mode, the value should be 0 or 180.

    When playing video, MediaPlayer in SDK always works correctly, but I don't find any way to retrieve this info.

    Finally, if I cannot get orientation of video using android SDK, can I get this info using FFMPEG ?

    Thanks very much for your help 

  • What is the Android equivalent of /dev/video0 for tablet Camera ?

    25 mai 2012, par flock.dux

    Is there any /dev/video0 file for Android Camera ? I want to capture camera preview through ffmpeg on Android. Such as ;

    ffmpeg -f video4linux2 -i /dev/video0 out.mpeg
  • Encoding Android Camera Frames h263/h264 [closed]

    29 décembre 2015, par Another Guy

    I want to implement a Video Chatting app on Android . I created a SurfaceView , get Camera preview and captured the frame as a byte[ ] using Camera.PreviewCallback.onPreviewFrame( ) method . Now I want to encode that byte[ ] to a h263 frame , pass over the network . Also get similar type of frame over network , decode it to a byte[ ] ( or a displayable format ) , and show it in a View . I want to do it at least 15 FPS rate . I am asking help for the encoding/decoding part .

    For that purpose , which library would be suitable for me ? From where I should start ? Is my starting point wrong ? Is there any support on SDK or would I have to use NDK ? I have heard about FFMpeg/x264 library , but I could not figure out how I can use them in my purpose . It’s highly appreciated If you name any library , any reference , learning path , link or code snippet . Can you help me saying any workflow I should follow ? What if I want to use h264 encoding ? I just want to get it done , GPL/LGPL license of library would not matter a lot .

    I am a beginner in Android development . Any kind of assistance would be highly appreciated . Thanks in advance .