Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (16147)

  • FFmpeg problem while writing streams to file

    23 septembre 2011, par NoviceAndNovice

    I finally "able" to write video stream packets to a file using the function

    av_interleaved_write_frame(outputContext, &packet);

    But after a short period of time i got this error :

    Application provided invalid, non monotonically increasing dts to muxer
    in stream 0: *numberX* >= *numberY*

    Anybody has any idea, what may cause this ? And how to fix it ?

    Best Wishes

  • avcodec/hevc_ps : fix the problem of memcmp losing effectiveness

    29 mars 2024, par Tong Wu
    avcodec/hevc_ps : fix the problem of memcmp losing effectiveness
    

    HEVCHdrParams* receives a pointer which points to a dynamically
    allocated memory block. It causes the memcmp always returning 1.
    Add a function to do the comparision. A condition is also added to
    avoid malloc(0).

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Tong Wu <tong1.wu@intel.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevc_ps.h
  • Problem with Getting Output with Accents When Using PHP exec Command with ffprobe

    25 septembre 2020, par user5919866

    I am retrieving the output of ffprobe with PHP exec command to get information from mp3 files. The problem is that if there is any text in the output containing accents or apostrophes, then I don't get those displayed.

    &#xA;

    I am running PHP 7.3.19 on Debian 10. The output locale -a from the commandline is :

    &#xA;

    C&#xA;C.UTF-8&#xA;en_US.utf8&#xA;POSIX&#xA;

    &#xA;

    I have tried several things in my PHP script such as :

    &#xA;

    $cmd = &#x27;LANG=\"en_US.UTF8\" ffprobe -loglevel error -show_entries format=duration:format_tags -of json "&#x27; . $FinalFilenamePath . &#x27;"&#x27;;&#xA;exec($cmd, $output, $return);&#xA;

    &#xA;

    and :

    &#xA;

    $cmd = &#x27;env -i ffprobe -loglevel error -show_entries format=duration:format_tags -of json "&#x27; . $FinalFilenamePath . &#x27;"&#x27;;&#xA;exec($cmd, $output, $return); &#xA;

    &#xA;

    and :

    &#xA;

    $cmd = &#x27;LC_ALL=en_US.UTF-8 ffprobe -loglevel error -show_entries format=duration:format_tags -of json "&#x27; . $FinalFilenamePath . &#x27;"&#x27;;&#xA;exec($cmd, $output, $return);&#xA;

    &#xA;

    So, how can I be sure that when I run the ffprobe command via PHP's exec, I can display characters such as accents, apostrophes, etc.

    &#xA;