Recherche avancée

Médias (91)

Autres articles (52)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6706)

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

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

  • 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