Recherche avancée

Médias (91)

Autres articles (72)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5367)

  • swscale/x86/yuv_2_rgb : fix access to memory past the frame data in yuv to rgb conversion

    23 mai 2022, par Vardan Margaryan
    swscale/x86/yuv_2_rgb : fix access to memory past the frame data in yuv to rgb conversion
    

    Y, U, V data is loaded at the end of the current iteration for the next
    iteration.
    It results in memory access past the frame data on the last iteration
    (that data is never used after the loading).

    So load data at the start of the iteration, so that only useful data is
    loaded.

    Signed-off-by : Vardan Margaryan <v.t.margaryan@gmail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libswscale/x86/yuv_2_rgb.asm
  • FFMPEG Android Storage Access Framework

    6 juillet 2017, par martisan

    I’m using FFMPEG on Android to change bitrate etc of videos that weren’t recorded within my app.

    The problem I’m facing is that I can’t get the absolute path for a video the user selects from the SD Card.

    I’m using the Android Storage Access Framework and currently get the following Uri :
    content://com.android.externalstorage.documents/document/9C33-6BBD%3AVideos%2Freaps-driving.mp4

    The FFMPEG command I use :

    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
                       String[] cmd = {"-y", "-i", mVideoUri.toString(), "-c:v", "libx264", "-preset", "ultrafast", "-strict", "-2", "-s", optimalVideoSize, "-aspect", "16:9", "-b", bitrate, String.format("/storage/emulated/0/Movies/InstaVid/VID_INSTAVID%s.mp4", timeStamp)};
                       executeFFmpegBinary(cmd, timeStamp);

    It doesn’t matter if I use mVideoUri.toString() or mVideoUri.getPath().

    Is there any way I can get the absolute path ?

  • ffmpeg : avoid direct access to lowres use av_codec_g/set_lowres()

    3 octobre 2013, par Michael Niedermayer
    ffmpeg : avoid direct access to lowres use av_codec_g/set_lowres()
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg_opt.c