Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (78)

  • 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

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

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

Sur d’autres sites (12415)

  • Is there a need to apply Deblocking filter, when I have all Intra frames Encoding

    31 août 2015, par Codec Guy

    I am working on H.264 Deblocking Filter and need some clarity.

    • While designing an all Intra Encoder and Decoder, is it mandatory to
      add Deblocking Filter block in the Codec.
    • If deblocking filter is not enabled for all Intra Encoding does that
      cause any PSNR degradation(I checked few streams the PSNR almost
      remained the same).
    • If I am encoding all my frames using Intra prediction, does that also
      have any blocking artifacts.

    Thanks in advance

  • Embedding Metadata to H.264 encoded file

    7 septembre 2012, par kerim yucel

    I am currently developing an application which produces certain metadata with respect to preview frames coming from the camera. I can see this metadata being produced properly and I have no problems here.

    However, I have to embed this metadata to these frames of interest (frames are processed by a native algorithm to produce this metadata). I am using ffmpeg with x264 to encode the frames into H.264. I have checked x264.h and some documentations but failed to find what I seek.

    My question is ; is there any unused portion of H.264 syntax that I can embed my metadata to encoded frames ?

    I hope I was clear enough. Thanks in advance.

  • ffmpeg : cut from left (with -ss) - incorrect result

    20 novembre 2018, par Kirill Zhirnov

    I have an auto generated video from image (30 secons) :

    ffmpeg -loop 1 -i img1.png -f lavfi -i anullsrc -pix_fmt yuv420p -c:v libx264 -c:a aac -ar 44100 -ac 2 -t 30 img.ts

    I need to cut it. If I cut it from right (e.g from 0 seconds to 5) - it works fine :

    ffmpeg -ss 0 -i img.ts -to 5 -c copy cropped.ts

    But if I want to cut it from left (e.g from 5 second to 8) - the result is damaged video :

    ffmpeg -ss 5 -i img.ts -to 8 -c copy cropped.ts

    What should I do to fix it ?

    Thanks in advance !