Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (50)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (5820)

  • lavc/aarch64 : new optimization for 8-bit hevc_qpel_uni_v

    15 août 2023, par Logan Lyu
    lavc/aarch64 : new optimization for 8-bit hevc_qpel_uni_v
    

    checkasm bench :
    put_hevc_qpel_uni_v4_8_c : 146.2
    put_hevc_qpel_uni_v4_8_neon : 43.2
    put_hevc_qpel_uni_v6_8_c : 303.9
    put_hevc_qpel_uni_v6_8_neon : 69.7
    put_hevc_qpel_uni_v8_8_c : 495.2
    put_hevc_qpel_uni_v8_8_neon : 74.7
    put_hevc_qpel_uni_v12_8_c : 1100.9
    put_hevc_qpel_uni_v12_8_neon : 222.4
    put_hevc_qpel_uni_v16_8_c : 1955.2
    put_hevc_qpel_uni_v16_8_neon : 269.2
    put_hevc_qpel_uni_v24_8_c : 4571.9
    put_hevc_qpel_uni_v24_8_neon : 832.4
    put_hevc_qpel_uni_v32_8_c : 8226.4
    put_hevc_qpel_uni_v32_8_neon : 1035.7
    put_hevc_qpel_uni_v48_8_c : 18324.2
    put_hevc_qpel_uni_v48_8_neon : 2321.2
    put_hevc_qpel_uni_v64_8_c : 37659.4
    put_hevc_qpel_uni_v64_8_neon : 4122.2

    Co-Authored-By : J. Dekker <jdek@itanimul.li>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/hevcdsp_init_aarch64.c
    • [DH] libavcodec/aarch64/hevcdsp_qpel_neon.S
  • What is faster, Raw PCM audio files, or mp3 files decoded with FFmpeg ?

    8 janvier 2020, par Matthew Strom

    I’m pretty deep into the development of my Android app, and as I mess around with my audio files a second time to try longer audio clips (1000ms long), I am now getting audio glitches again. Before I was not getting any glitches with 160ms long files.

    • Background : I’m making a metronome, so imagine roughly 100 lines of code in the callback to constantly figure out what audio file to play and for how long.

    Without getting into my code, I was just wondering if file size or file type has any impact on performance ? I believe I’m using the sample Player rendering class (source) (for Raw file input) which seems to load the audio data of the file each callback. This would Perhaps loading data from a larger array would slow it down ? Although, It could also be the new features/logic that I’m adding to the callback.

    I know it is talked about frequently about using mp3’s and decoding with FFmpeg. Has anyone done any bench-marking between mp3 and raw, and is there any performance advantage to using mp3’s, or is it mainly to cut down on your APK size ?

    Sorry if this has been discussed somewhere, however, I wasn’t able to find any articles mentioning this aspect between the two file types. Looking more closely at the rendering class, my gut tells me that file size "shouldn’t" be a factor... Otherwise I’ll continue to debug and maybe get some systraces in if I can.

  • exec() with SuPHP and SafeMode Off (php.ini local) show wrong path and fail execution

    29 juillet 2013, par abkrim

    Try this

    &lt;?php
        if (exec(&#39;/usr/bin/ffmpeg -i 47.mp4 -acodec aac -ab 128kb -vcodec mpeg4 -b 1220kb -mbd 1 -s 320x180 final_video.mov"&#39;))
            { echo "Success"; }
        else { echo "No good"; }
    ?>

    But on shell see—>

    sh: /usr/local/php/bin/ffmpeg: No such file or directory

    Server it's Apache+SuPHP with a local php.ini file for disable SafeMode

    I don't understand why show sh : /usr/local/php/bin/ffmpeg : No such file or directory instead real path put on php script.