Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (63)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (4997)

  • av_hwdevice_iterate_types returns an empty list

    9 juillet 2020, par Ruslan Ablyazov

    I used an example https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/hw_decode.c

    


    The av_hwdevice_iterate_types function returns an empty list. What could be the reason ?

    


    And avcodec_find_decoder_by_name("h264_cuvid") returns NULL.

    


    FFmpeg version :

    


    ffmpeg version 4.3 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 8 (Debian 8.3.0-6)
configuration: --enable-gpl --enable-ladspa --enable-libpulse --enable-libsoxr --enable-libspeex --enable-avfilter --enable-avresample --enable-postproc --enable-pthreads --enable-libass --enable-libfreetype --enable-libmp3lame --enable-libx264 --enable-libx265 --enable-nonfree --disable-ffplay --enable-libxvid --enable-cuda --enable-cuda-nvcc --enable-cuvid --enable-nvenc --enable-nonfree --enable-libnpp --extra-cflags=-I/usr/local/cuda/include --extra-ldflags=-L/usr/local/cuda/lib64
libavutil 56. 51.100 / 56. 51.100
libavcodec 58. 91.100 / 58. 91.100
libavformat 58. 45.100 / 58. 45.100
libavdevice 58. 10.100 / 58. 10.100
libavfilter 7. 85.100 / 7. 85.100
libavresample 4. 0. 0 / 4. 0. 0
libswscale 5. 7.100 / 5. 7.100
libswresample 3. 7.100 / 3. 7.100
libpostproc 55. 7.100 / 55. 7.100


    


    The command ffmpeg -c:v h264_cuvid -i 7.mp4 71.mp4 outputs :

    


    ...
Stream mapping:
Stream #0:0 -> #0:0 (h264 (h264_cuvid) -> h264 (libx264))
....


    


    And it works.

    


    The command ffmpeg-hwaccel cuda-i 7.mp4 71.mp4 outputs :

    


    ...
Stream mapping:
Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
....


    


    The command ffmpeg -codecs outputs :

    


     ...
 DEV.LS h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_v4l2m2m h264_cuvid ) (encoders: libx264 libx264rgb h264_nvenc h264_v4l2m2m nvenc nvenc_h264 )
 D.VIL. hap                  Vidvox Hap
 DEV.L. hevc                 H.265 / HEVC (High Efficiency Video Coding) (decoders: hevc hevc_v4l2m2m hevc_cuvid ) (encoders: libx265 nvenc_hevc hevc_nvenc hevc_v4l2m2m )
 ...


    


  • Add support for playing Audible AAXC (.aaxc) files [PATCH v4]

    1er janvier 2000, par Vesselin Bontchev
    Add support for playing Audible AAXC (.aaxc) files [PATCH v4]
    

    The AAXC container format is the same as the (already supported) Audible
    AAX format but it uses a different encryption scheme.

    Note : audible_key and audible_iv values are variable (per file) and are
    externally fed.

    It is possible to extend https://github.com/mkb79/Audible to derive the
    audible_key and audible_key values.

    Relevant code :

    def decrypt_voucher(deviceSerialNumber, customerId, deviceType, asin, voucher) :
    buf = (deviceType + deviceSerialNumber + customerId + asin).encode("ascii")
    digest = hashlib.sha256(buf).digest()
    key = digest[0:16]
    iv = digest[16 :]

    # decrypt "voucher" using AES in CBC mode with no padding
    cipher = AES.new(key, AES.MODE_CBC, iv)
    plaintext = cipher.decrypt(voucher).rstrip(b"\x00") # improve this !
    return json.loads(plaintext)

    The decrypted "voucher" has the required audible_key and audible_iv
    values.

    Update (Nov-2020) : This patch has now been tested by multiple folks -
    details at the following URL :

    https://github.com/mkb79/Audible/issues/3

    Signed-off-by : Vesselin Bontchev <vesselin.bontchev@yandex.com>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Android ffmpeg Command not executing

    22 juin 2020, par MoTahir

    I am using this FFMPEG library,

    &#xA;

    first I am playing the video inside my videoView to make sure that the video path is correct

    &#xA;

    videoView.setVideoURI(Uri.parse(getExternalFilesDir(null)?.absolutePath &#x2B; "videoToBeEdit"))&#xA;

    &#xA;

    then I am calling the code written below to crop the video then put it inside the videoView again just to see the result

    &#xA;

    val ff = FFmpeg.getInstance(this@EditVideoActivity)&#xA;if (ff.isSupported){&#xA;&#xA;  val inFile = File(getExternalFilesDir(null)?.absolutePath ,"videoToBeEdit")&#xA;  val outFile = File(getExternalFilesDir(null)?.absolutePath , "result")&#xA;&#xA;  val command = arrayOf("ffmpeg","-i", inFile.absolutePath , "-filter:v", "crop=100:100:0:0", outFile.absolutePath)&#xA;&#xA;  ff.execute(command, object : ExecuteBinaryResponseHandler() {&#xA;    override fun onSuccess(message: String?) {&#xA;      super.onSuccess(message)&#xA;      videoView.setVideoURI(Uri.parse(getExternalFilesDir(null)?.absolutePath &#x2B; "videoToBeEdit"))&#xA;    }&#xA;&#xA;    override fun onProgress(message: String?) {&#xA;      super.onProgress(message)&#xA;    }&#xA;&#xA;    override fun onFailure(message: String?) {&#xA;      super.onFailure(message)&#xA;      Log.e("error", "failed")&#xA;    }&#xA;&#xA;    override fun onStart() {&#xA;      super.onStart()&#xA;      Log.e("start", "started the process")&#xA;    }&#xA;&#xA;    override fun onFinish() {&#xA;      super.onFinish()&#xA;      Log.e("finish", "done")&#xA;    }&#xA;  })&#xA;}&#xA;

    &#xA;

    but my code above goes from start to error then finish, it doesn't show any error messages and that's making it really hard to know what's actually wrong :( I tried to write my command in different ways following those tutorials tutorial1 tutorial2 link&#xA;please help, thank you in advance...

    &#xA;