Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (58)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • 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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8901)

  • configure : Remove dcbzl check for e500v1 and e500v2 architectures

    6 février 2014, par Peter Krefting
    configure : Remove dcbzl check for e500v1 and e500v2 architectures
    

    The DCBZL instruction is not available for the e500v1 and e500v2
    architectures, but may still be recognized by the toolchain, so we
    need to explicitly disable it for these architectures.

    References : PowerPC™ e500 Core Family Reference Manual (Freescale)

    Found-by : Ståle Kristoffersen <staalebk@ifi.uio.no>

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] configure
  • ffmpeg for archval and convertability

    26 juillet 2021, par Satya

    I've got a couple hundred gigs of *.dv files. I'd like to convert them to H.264 or something else or even leave them alone. The purpose is archival, with an eye to maximum convertability especially to DVD. The content is family videos.

    &#xA;

    Would this be fine ?

    &#xA;

    ffmpeg -i input.dv \&#xA;    -c:v libx264 -preset slower \&#xA;    -crf 17 \&#xA;    -pix_fmt yuv420p \&#xA;    output.mp4&#xA;

    &#xA;

    I went with the slower preset because encoding time isn't an issue and I'd like a smaller file size. crf 17 is for least-lossy while being widely playable. I read somewhere that yuv420p is needed for some Quicktime players.

    &#xA;

    Should I throw in -c:a aac for AAC audio ? The audio is voice only, no need for music-hall quality.

    &#xA;

    I looked at https://trac.ffmpeg.org/wiki/Encode/H.264 for previous research and that's where I got those settings, but it is silent on the audio settings.

    &#xA;

  • Delphi android, deploying AND dynamic loading (external) libraries

    13 décembre 2020, par coban

    I am trying to start creating an application to test FFmpeg libraries, kind of a mediaplayer application, for ANDROID using Delphi 10.3/10.4

    &#xA;

    I am getting some (strange ?) behaviors on different machines and locations of the files on the phone/tablet.

    &#xA;

    The very first question should be ; what folder is the right one to put (external) libraries for dynamic/static loading ?

    &#xA;

    I tried 2 locations ; '.\assets\internal' -> 'files' folder of the app&#xA;and 'library\lib\armeabi-v7a' -> bin folder (if i'm right)

    &#xA;

    behavior on mobile phone Android 8

    &#xA;

    when I choose to place the (FFmpeg) libraries in the Files folder '.\assets\internal' and try to load the libraries, 3 of the 7 libraries succesfully loads, while the other does not. Every tiem the same libraries which fail and succeeds to load. The succesfully loading libraries are 'libavutil.so', 'swresample.so' and 'libswscale.so'.

    &#xA;

    When I choose to place the libraries in the bin folder 'library\lib\armeabi-v7a', all libraries are succesfully loaded.

    &#xA;

    behavior on tablet android 4.4.4

    &#xA;

    When choosing to put the libraries in the 'Files' folder, exact the same behavior as "Android 8 phone".

    &#xA;

    The strange thing is ; When I choos the bin folder, none of the libraries are being loaded ?

    &#xA;

    I did not compile/build the (FFmpeg) libraries myself, I downloaded them.&#xA;I tried libraries from different places.&#xA;In every attempt I checked for the existance of the files.&#xA;I used 'loadlibrary' function, after some reading and suggestions on the internet I allso tried 'dlopen' function directly which looks like unnecessary to use it directly after all.&#xA;I was not able to debug using D10.4 and Android 4.4.4 tablet, because of the minsdk version. Using D10.3 I am able to try on both machines.

    &#xA;

    Delphi10.3 'Android SDK 25.2.5 32bit', 'jdk1.8.0_60'

    &#xA;

    Delphi10.4 'Android SDK 25.2.5 32bit', 'AdoptOpenJDK jdk-8.0.242.08-hotspot'

    &#xA;

    Any idea why 3 of the libraries are able to load in case of they are in the 'Files' folder while all of them can be loaded when they are in the 'BIN' folder (android 8) ?&#xA;And why does nothing load by android 4.4.4 when the files are in the 'Bin' folder while 3 of them are able to be loaded when they are placed in the 'Files' Folder ?

    &#xA;

    I've been using FFmpeg libraries for windows (allmost)without issues, my question should not be FFmpeg specific but Delphi+android+(external)libraries specific except if this behavior is FFmpeg specific.

    &#xA;

    Both are Samsung machines,

    &#xA;

    Android 4.4 tablet cpu (using &#x27;syscheck&#x27; embarcadero recommends);&#xA;&#xA;family = ARM&#xA;processor = ARMv7 processor rev 5(v7I)&#xA;CPU Cores = 4&#xA;neon supported  yes&#xA;armv7 (ARMv7 compatible architecture)  yes&#xA;&#xA;Android 8 phone cpu&#xA;&#xA;Family   ARM&#xA;processor   unknown&#xA;CPU Cores   8&#xA;Neon   yes&#xA;armv7 = Arm&#xA;armv7 (ARMv7 compatible architecture)   yes&#xA;

    &#xA;

    Edit

    &#xA;

    Test on Android 10, redmi note 10 lite

    &#xA;

    None of the library files are being loaded from the 'Files'->'.\assets\internal' folder. All library files are being succesfully loaded from the 'Bin'->'library\lib\armeabi-v7a' Folder.

    &#xA;

    I'll need an reasonably explanation for this. It looks like Andrid specific behavior ?

    &#xA;

    Edit 2

    &#xA;

    One of the reasons seems like that some those FFmpeg libraries are loading other FFmpeg libraries, even if they are in the same directory, if they are outside the folder of the EXE file, or not in a (library) folder where the OS searches by default, they cannot find/load eachother.

    &#xA;

    This looks like the explanation why some of them are able to load in the 'Files'->'.\assets\internal' folder.

    &#xA;