Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (87)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (8947)

  • nvenc : write the VUI signal properties for HEVC

    12 mai 2016, par Anton Khirnov
    nvenc : write the VUI signal properties for HEVC
    

    Bump the API version requirement to 6.

    Based on a patch by Agatha Hu <ahu@nvidia.com>.

    • [DBH] configure
    • [DBH] libavcodec/nvenc.c
  • Android watermark : Fatal signal 4 (SIGILL), code 2, fault addr 0xe2166842 in tid 13693 (atermarkvideo_2

    27 avril 2016, par Sakibmohammad Syed

    I am using ffmpeg library for watermark on video and below is my code but when I run program the it show error like Fatal signal 4 (SIGILL), code 2, fault addr 0xe2166842
    here is my code.

       public class MainActivity extends Activity {
       private String strAudioFolderPath;
       @Override
       protected void onCreate(Bundle savedInstanceState) {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.activity_main);

           strAudioFolderPath = "/sdcard/Download";
           String s = "ffmpeg -i /sdcard/Download/testing.mp4 -i /sdcard/test.png -filter_complex 'overlay=10:main_h-overlay_h-10' /sdcard/Download/out.mp4";

           GeneralUtils.deleteFileUtil(strAudioFolderPath + "vk.log");

           PowerManager powerManager = (PowerManager) this.getSystemService(Activity.POWER_SERVICE);
           PowerManager.WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "VK_LOCK");
           wakeLock.acquire();
           LoadJNI vk = new LoadJNI();
           try {
               try {
                   vk.run(GeneralUtils.utilConvertToComplex(s), strAudioFolderPath, MainActivity.this);
                   Log.e("Checking water marker", ">>>>>>>>>>>>>>>");

               } catch (Throwable e) {
               } finally {
                   if (wakeLock.isHeld())
                       wakeLock.release();
                   else {
                   }
               }
           } catch (Exception e)
           {
               e.printStackTrace();
           }
       }

    Actually I want to add watermark on video file using ffmpeg library but it show error as I mention above so I am unable to watermak on video. I have also seach a lot to solve this issue but I did not find any proper solution of this problem.

  • tests/audiomatch : also print signal vs reference length

    22 mars 2016, par Michael Niedermayer
    tests/audiomatch : also print signal vs reference length
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/audiomatch.c
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-mono-he-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-mono-he-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-mono-lc-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-mono-lc-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-stereo-he-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-stereo-he-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-mono-he-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-mono-he-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-mono-lc-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-mono-lc-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-stereo-he-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-stereo-he-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-m4a
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-adts
    • [DH] tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-dolby-44100-mono-he-mp4
    • [DH] tests/ref/fate/audiomatch-dolby-44100-mono-lc-mp4
    • [DH] tests/ref/fate/audiomatch-dolby-44100-stereo-he-mp4
    • [DH] tests/ref/fate/audiomatch-dolby-44100-stereo-he2-mp4
    • [DH] tests/ref/fate/audiomatch-dolby-44100-stereo-lc-mp4
    • [DH] tests/ref/fate/audiomatch-faac-16000-mono-lc-adts
    • [DH] tests/ref/fate/audiomatch-faac-16000-mono-lc-m4a
    • [DH] tests/ref/fate/audiomatch-faac-16000-stereo-lc-adts
    • [DH] tests/ref/fate/audiomatch-faac-16000-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-faac-44100-mono-lc-adts
    • [DH] tests/ref/fate/audiomatch-faac-44100-mono-lc-m4a
    • [DH] tests/ref/fate/audiomatch-faac-44100-stereo-lc-adts
    • [DH] tests/ref/fate/audiomatch-faac-44100-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-nero-16000-mono-he-m4a
    • [DH] tests/ref/fate/audiomatch-nero-16000-mono-lc-m4a
    • [DH] tests/ref/fate/audiomatch-nero-16000-stereo-he-m4a
    • [DH] tests/ref/fate/audiomatch-nero-16000-stereo-he2-m4a
    • [DH] tests/ref/fate/audiomatch-nero-16000-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-nero-44100-mono-he-m4a
    • [DH] tests/ref/fate/audiomatch-nero-44100-mono-lc-m4a
    • [DH] tests/ref/fate/audiomatch-nero-44100-stereo-he-m4a
    • [DH] tests/ref/fate/audiomatch-nero-44100-stereo-he2-m4a
    • [DH] tests/ref/fate/audiomatch-nero-44100-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-quicktime7-44100-stereo-lc-mp4
    • [DH] tests/ref/fate/audiomatch-quicktimeX-44100-stereo-lc-m4a
    • [DH] tests/ref/fate/audiomatch-square-aac
    • [DH] tests/ref/fate/audiomatch-square-mp3