Recherche avancée

Médias (91)

Autres articles (35)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

Sur d’autres sites (4164)

  • Permission issue with php + supervisord + ffmpeg + NAS + beanstalkd

    20 juin 2014, par Srini Vasan

    Im running a process using the following tools :

    php - process application
    beanstalkd - queue
    supervisord - process daemon
    ffmpeg - media conversion
    NAS - storage device

    The end result (media conversion) works perfectly, when i run the command manually as root user :

    ie. php /path/workers/media_processor.php < /dev/null &

    ie. ffmpeg takes the source mp3 file (which is on the NAS, path x) and output mp3 file also saved on NAS, path y

    But, when i run this via supervisor, ffmpeg is not generating the output mp3 as expected :
    when i also tried via lame encoder (audio encoder), the out file is not generated.

    When I changed the destination path (not NAS) to a different one (within the server),
    ffmpeg/lame is able to write file to the new server path.

    Below is my supervisor conf.

    [program:media_processor_audio]
    command=/usr/bin/php /path/workers/media_processor.php < /dev/null
    numprocs=1
    numprocs_start=1
    autostart=true
    autorestart=true
    stopsignal=QUIT
    log_stdout=true
    logfile=/path/workers/media_processor_audio.txt

    Im sure, the supervisord is running my process as root user only.
    I’ve confirmed this with get_current_user()

    Summary :

    ffmpeg/lame is able to write to NAS while running the comand manually.

    ffmpeg/lame is not able to write to NAS while the command runs via supervisord.

    Please Help. Thanks in advance.

    Regards,
    Srini

  • avfilter/vf_showinfo : small adjustments for the HDR10+ dump

    13 octobre 2021, par Limin Wang
    avfilter/vf_showinfo : small adjustments for the HDR10+ dump
    

    summary for the adjustments :
    1, remove the extra "," in the ,
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,
    to
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013

    2, add "," between the and new field
    fraction_bright_pixels
    to
    , fraction_bright_pixels

    3, remove the extra space between " "
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,
    to
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/vf_showinfo.c
  • How to automatically add date to output file generated in ffmpeg ?

    4 avril 2019, par Maxime Richard

    I am using Terminal to run ffmpeg commands (Mac OS) in order to record radio shows streamed online. The stream is in m3u8 I want to output it in mp3. So far so good, I am able to achieve that. However, I’d like the output file to read YYYYMMDD-fm93-segal.mp3 where YYYYMMMDD are the date the recording was made.

    I am not able to achieve this using -strftime 1 for some reason. When using my code, the output file reads %Y%m&amp;d-fm93-segal.mp3 instead of replacing the strings by the real date.

    Here is the line I’m using :

    ffmpeg -i "https://cogecomedia.leanstream.co/cogecomedia/CJMFFM.stream/playlist.m3u8" -acodec mp3 -strftime 1 "%Y%m%d-fm93-segal.mp3"

    Anyone knows why and could help me with that ?