Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (106)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (12323)

  • Android video rotate without re-coding ?

    1er juillet 2016, par user1251064

    i have google about this issue, and found a lot of answers. I know that we have some libraries (mp4parser, ffmpeg) witch merge, re-code, cut, etc, the videos.
    I just want to play a video with the default android media player, with the right rotation on the screen (portrait or landscape), but for that do i need necessarily to re-encoding the video ?
    Or is some way to achieve that without that process ?

    Thank you

  • Extract raw audio frames from OGG music file with Android NDK

    31 octobre 2018, par thenaoh

    In my Android app, I would like to be able to process audio on the fly from an OGG file by extracting audio samples, process them and redirect them to the audio output.

    I know how to make the last 2 steps using Android NDK, but I don’t know how to extract audio samples to get them in an array of floats or shorts.

    I tried to make this code work that, apparently, can extract raw audio samples on the fly.

    The problem is : I don’t manage to add FFMpeg in my project. I tried many tutorials (like this one), but it seems pretty difficult since I work on Windows. So after a while, I found Prebuild FFMpeg for Android, that seems interesting since it’s available for armeabi-v7a, arm64-v8a, x86 and x86_64 architectures, but again, I don’t understand how to add it in my project.

    I also took a look at libogg, libvorbis and vorbisfile, but I have no idea how to add them in my project.

    So, does anyone have a working example on how to extract audio samples from an OGG file on the fly ?

    Thanks for your help.

  • How to combine two videos in android by using FFmpeg ?

    31 août 2016, par Addy

    -y -i "concat :/storage/emulated/0/input1.ts|/storage/emulated/0/input2.ts" -c copy -bsf:a aac_adtstoasc /storage/emulated/0/output.mp4

    I am using this command and it doesn’t work in Android.