Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (52)

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

  • How convert High bitrate mp3 to lower rate using ffmpeg in android

    23 mars 2018, par Android Team

    We want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.

    ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3

    Result :-the output bitrate same as input mp3.

    And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3

    so please suggest any solution.

  • How to implement live camera plus WebGL overlay live streams

    12 avril 2016, par zproxy

    The goal is to test a youtube live stream configuration where :

    1. Samsung Galaxy S6/S7 (android) (wifi) streams cameras (one or all)
    2. Chrome renders a WebGL 3D (static or realtime, webrtc ?, flash ?) to be overlayed (localhost)
    3. ffmpeg mixes the available stream and upstreams to youtube live event

    Whats needed to implement this configration ? Yes this may require actual custom implementation for android app and chrome app in the end.

  • Android gcc 4.6 crash on __check_for_sync8_kernelhelper - ARM - FFmpeg

    3 août 2013, par user2646692

    I'm compiling ffmpeg with gcc 4.6 (as this is default on ndk r9) for armv7-a devices and a weird crash occurs on certain devices that didn't happen when running code compiled with gcc 4.4.3.

    this is the backtrace :

    08-02 18:36:08.200: I/sec_anm_ahi_output(1535): setParameters(stop_output_streamtype=1)
    08-02 18:36:08.360: I/DEBUG(18804):          #00  pc 000162a0  /system/lib/libc.so (__libc_android_abort)
    08-02 18:36:08.360: I/DEBUG(18804):          #01  pc 00418334  /data/data/com.ffmpeg.android/lib/libffmpeg.so (__check_for_sync8_kernelhelper)
    08-02 18:36:08.360: I/DEBUG(18804): libc base address: afd00000

    After searching on google, it seems the problem is in 64-bit atomic as it seems my compiled code it's not using dmb instructions instead it's calling kernelhelper :

    https://code.google.com/p/android/issues/detail?id=41297

    http://www.ogre3d.org/forums/viewtopic.php?f=21&t=78199

    The workaround it's to compile for armv7-a, but I'm already doing this with the same results. These are the flags I'm using :

    CPU=armv7-a
    OPTIMIZE_CFLAGS="-march=$CPU -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb -D__thumb__"
    EXTRA_LDFLAGS="-Wl,--fix-cortex-a8 -march=armv7-a"
    PREFIX=./android/$CPU
    EXTRA_CONFIGURE=""

    I have also tried with these, but with same results :

    CPU=armv7-a
    OPTIMIZE_CFLAGS="-march=$CPU -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb -D__thumb__"
    EXTRA_LDFLAGS="-Wl,--fix-cortex-a8 -march=armv7-a"
    PREFIX=./android/$CPU
    EXTRA_CONFIGURE="--disable-armv5te --disable-armv6 --disable-armv6t2"

    I have tested on different devices and these are the results :

    Nexus 4 - No Crash

    Nexus 7 - No crash

    Galaxy sII - Crash

    Galaxy Ace 2 - Crash

    I would appreciate any help.

    Thanks.