Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (106)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (10906)

  • Workaround to .ts files in video merging ?

    15 avril 2017, par Neo Herakles

    I’ve got these sentences of code that I use for video processing, the first one adds a watermark, the second creates a .ts file of the watermarked video and then adds an intro and outro to it but I found that it quickly fills disk space because of the .ts files being used, is there a way to achieve the same results without them ? Either by deleting them right after using them or by using a different process altogether.

    for %%I in ("C:\Users\Administrator\Desktop\work\*.mp4") do ffmpeg.exe
       -y -i "%%I" -i white.png -filter_complex "[0:v]scale=iw:ih[v0];[1:v][v0]scale2ref=iw/6:ih/18[logo][0v];[0v][logo]overlay=W-w-3:H-h-1[v]"
       -map "[v]" -map 0:a -codec:v libx264 -preset ultrafast -crf 23 -codec:a copy "C:\Users\Administrator\Desktop\Complete-videos\%%~nI.mp4"

    for %%I in ("C:\Users\Administrator\Desktop\Complete-videos\*.mp4") do ffmpeg -y
       -i %%I -c copy -vbsf h264_mp4toannexb -f mpegts -s 1280*720 %%I.ts && ffmpeg -y -i "concat:out1.ts|%%I.ts|out1.ts" -c:v libx264 -strict experimental -bsf:a aac_adtstoasc -ar 48000 -r 20 "C:\Users\Administrator\Desktop\Complete-videos\%%~nI.mp4
    pause
  • ffplay playback h264 encoded camera preview blur

    11 juillet 2019, par doufu

    I use the ffplay tool provided by ffmpeg to play an h264 encoded camera. When the camera is still, the interface will be very clear, but when I cover the camera for a while to remove the occlusion or move the camera quickly, the interface will be blurred, resulting in a mosaic-like picture, but the interface will become clear after a few seconds.
    Why is this happening ?
    Am I missing some options to run ffplay ?
    PS:Using AMCap will not have the above problem.
    The command opening my camera I used :

    ffplay.exe -f dshow -i video="camera name"

    Preview screencast video is uploaded to youtube

    The following is the printout information of ffplay:
    enter image description here

  • Revision ce08006951 : Always check and free denoiser buffer memory space The vp9_denoiser_free() func

    7 janvier 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c



    Always check and free denoiser buffer memory space

    The vp9_denoiser_free() function will internally check if the
    buffer pointers are NULL. This commit makes the encoder always
    call vp9_denoiser_free() after finishing encoding. It protects the
    case where noise_sensitivity_level is changed during encoding
    process and happen to be turned off towards the end of sequence,
    which could result memory space allocated to denoiser not being
    released.

    Change-Id : Ie20dc2f2e6e5fb6333fbab3356bc153978a6a0f8