Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (29)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

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

Sur d’autres sites (4626)

  • Merge pull request #1536 from thomasgohard/ca-postal-code-update

    21 août 2015, par staabm
    Merge pull request #1536 from thomasgohard/ca-postal-code-update
    

    Additionals : Updates to postalCodeCA method

    Allow both upper case and lower case characters and zero or more spaces between the Forward Sorting Area and Local Delivery Unit portions as users do not always use all upper case or include a space (see wet-boew/wet-boew#6760).

    Correct the regular expression to fail entries that include invalid characters D, F, I, O, Q, and U which are not used in Canadian postal codes.

  • Images converted to webp with ffmpeg have multiple frames [closed]

    25 avril 2023, par jhizzle207

    Running into an issue where JPG images converted to webp via ffmpeg are coming out with multiple frames, and causing issues such as the flickering example below

    


    https://shocknet.b-cdn.net/bffff44b0252dee213885a6f640fa211d622d02f80413d9e5415245a91fd9027%2FIMG_6915.webp

    


    Others have a grayscale layer that makes the image display as black and white.

    


    We're using ffmpeg defaults and -vf to scale them down. We have tried -c:v libwebp as the default lib seems to be an animation, but that's not stopping the output from containing multiple frames and causing issues.

    


    What would be the correct way to take images of other formats and dimensions and scale them to sane webp for optimal delivery reliability ?

    


  • I want to separate MPEG2ts data into images and metadata (klv)

    4 août 2020, par 夏目たかし

    please. Help me.
    
I would like to separate the streamed MPEG2ts data into images and metadata (klv).

    


    Delivery
    
ffmpeg -fflags +genpts -re -i NightFlightIR.mpg -f mpegts -c copy -map 0:v -map 0:d udp ://127.0.0.1:5004
    

    
reception
    
ffmpeg -i 'udp ://127.0.0.1:5004' -vsync 0 -q:v 2 -f image2 -update 1 img.jpg -c copy -map d:0 -f data klv.bin
    

    
The image is output, but the klv.bin is empty.
    

    
This command outputs data to standard output, but cannot output to a file.
    
ffmpeg -i 'udp ://127.0.0.1:5004' -vsync 0 -q:v 2 -f image2 -update 1 img.jpg -c copy -map d:0 -f data -
    

    
On ffmpeg2.8.6, the klv.bin contains data, but on 3.x and 4.x, it's empty.
    
Is it possible to write klv data to klv.bin on 4.x ?