Recherche avancée

Médias (91)

Autres articles (102)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

  • rtpdec : Always check if we have the next packet queued

    14 janvier 2013, par Martin Storsjö
    rtpdec : Always check if we have the next packet queued
    

    It doesn’t matter what the actual reason for not returning
    an AVPacket was - if we didn’t return any packet and we have
    the next one queued, parse it immediately. (rtp_parse_queued_packet
    always consumes a queued packet if one exists, so there’s no risk
    for infinite loops.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtpdec.c
  • How to speed up ffmpeg video conversions [closed]

    24 janvier 2013, par PIKP

    I need to extract the audio as a MP3 file from a given video file. I have selected "ffmpeg" for audio extraction process. with the use of following arguments I have managed to extract the audio as a MP3. this work very well. but it takes about "2 minutes" to extract the audio from "21 minutes" long video file.

    ffmpeg -i source_video.avi -vn -ar 44100 -ac 2 -ab 128k -f mp3 sound.mp3

    for my purpose "2 minutes" for "21 minutes" is a long time. I need to speed up this as much as possible.

    could someone please tell me what are the factors that control the conversion speed ?

    currently I'm using a SATA hard disk with 7500rmp, will it speed up the conversion process if I upgrade my hard disk to SSD ?

    Thank you !

  • How to concat videos that have different colour spaces ?

    17 avril 2023, par Ham789

    enter image description hereI writing a Python program that uses subprocess to automate ffmpeg. The program concatenates many videos together with the concat filter. The problem I have is that the colour of some of the videos is very washed out in the final output. I believe this is because the videos have different colour spaces. Some are B.709 and some are B.2020. The B.2020 videos are washed out.

    &#xA;

    I have tried converting the B.2020 videos to B.709 before concatenating by using the following command on each video but the outputs are still washed out :

    &#xA;

    ffmpeg -i input.mov -vf colorspace=all=bt709:iall=bt2020:fast=1 output.mov&#xA;

    &#xA;

    It wasn't clear to me which way round the arguments should go so I also tried switching the bt2020 and bt709 terms but they still look washed out but with more saturation.

    &#xA;

    Is this the right approach ? Am I missing some other arguments in order to convert the B.2020 videos to B.709 while preserving their colour ?

    &#xA;

    I have attached a side by side of the original and converted video.

    &#xA;

    The metadata of the videos I am trying to concat are :

    &#xA;

    Video 1

    &#xA;

      &#xA;
    • color_range=tv
    • &#xA;

    • color_space=bt709
    • &#xA;

    • color_transfer=bt709
    • &#xA;

    • color_primaries=bt709
    • &#xA;

    &#xA;

    Video 2

    &#xA;

      &#xA;
    • color_range=tv
    • &#xA;

    • color_space=bt2020nc
    • &#xA;

    • color_transfer=arib-std-b67
    • &#xA;

    • color_primaries=bt2020
    • &#xA;

    &#xA;