Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (104)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (6621)

  • Anomalie #4756 : Régressions liées aux évolutions des styles du privé

    17 mai 2021, par Maïeul Rouquette

    avec le passage en markup fieldset/legend pour les radios, on a mis une classe .label sur les legend concernées (ainsi que dans saisies aussi sur les labels des textarea, etc). Du coup .pleine_largeur du conteneur foire.

    a priori, il faudrait doubler le `.formulaire_spip .pleine_largeur > label` par un `.formulaire_spip .pleine_largeur > .label` (de même qu’on a un .formulaire_spip .editer label, .formulaire_spip .editer .label).

  • Java ProcessBuilder : space within quotation marks

    29 mai 2014, par Zahlii

    I am using ProcessBuilder to run FFMPEG to convert and label some of my MP3-Files.

    Manually using the following in a .bat file works as expected :

    "E:\Dokumente\workspace\MusicBot\ffmpeg\bin\ffmpeg.exe"
       -i "The Glitch Mob - We Can Make The World Stop.mp4"
       -metadata author="The Glitch Mob"
       -metadata title="We Can Make The World Stop"
       -ab 320k "mob.mp3"

    Now what i am trying to achieve using java’s ProcessBuilder

    ProcessBuilder pr = new ProcessBuilder(FFMPEG_PATH,
       "-i", target.getAbsolutePath(),
       "-metadata", "title=\"We Can Make The World Stop\"",
       "-metadata", "author=\"The Glitch Mob\"",
       "-ab", "320k",
       tar.getAbsolutePath());

    results in a [NULL @ 000000000032f680] Unable to find a suitable output format for 'Can'.
    Using title and author without spaces in them works, however.

  • Find/extract the frames which are different in two videos

    24 novembre 2022, par Greendrake

    I have two H.264 video files roughly 30GB each, with 256291 frames in each. Most, if not all, frames in the 1st video appear identical to their counterparts in the 2nd video. That said, the video content is seemingly almost (maybe completely) identical.

    


    The raw H.264 streams extracted from the video files are actually supposed to be identical but they are not : one is bigger than the other by about 2MB. So, it seems like there ought to be some differences in the picture somewhere.

    


    I have used the following command to extract a frame each 0.5s from the files and then compared the frames' md5 hashes. All 21356 frame files extracted from the first video exactly match their counterparts from the second video.

    


    for i in {0..21356} ; do ffmpeg -hide_banner -loglevel error -accurate_seek -ss `echo $i*0.5 | bc` -i video.mp4 -frames:v 1 frames/period_down_$i.bmp ; done


    


    So, the odds that the video is anyhow different are low. But not 0% chance as the one or a few different frames could just fall outside of the 0.5s picks that I tried.

    


    Is there any smart way to find/extract the diffing frames only ?

    


    I could extract all frames and compare them but that's not smart at all and would take lots of time / disk space.