Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (42)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (4544)

  • Convert powershell command to terminal (osx)

    10 mars 2015, par user1765661

    I use a loop on powershell to convert some videos, can you please help me to translate the same "code" so I can use it in the terminal of my mac ?

    Thank you.

    cd D:\Videos\Original

    new-item -path . -name "Videos_convert_003" -type directory

    dir -exclude *.png | foreach-object { $newname = $_.Basename + ".mp4"; ffmpeg -i "$_" -i logo_img_003.png -filter_complex overlay D:\Videos\Original\Videos_convert_003\$newname }
  • how download m3u8 in chunks using ffmpeg ?

    9 mai 2020, par relidon

    I'm trying to convert m3u8 to mp4 and I found the following method that works

    



    ffmpeg -i 'https://....m3u8' -bsf:a aac_adtstoasc \
    -vcodec copy -c copy -crf 50 output.mp4


    



    The end result, however, is too big for me to drag into an external hard drive.

    



    I also tried writing directly to the hard drive /Volumes/2TR/output.mp4 but the end result is the same - the file is too big, the operation fails.

    



    I noticed that if I terminate the operation at any point, the output.mp4 file works perfectly, but that it's not the full video (perfect). If the video is one hour and I just want 30 minutes of it I can terminate the ffmpeg operation at that point.

    



    So I'm wondering whether there's a way for ffmpeg to download the contents in two parts, output-part1.mp4 and output-part2.mp4 ?

    


  • convert heif/heic to jpg using gpac

    3 octobre 2017, par OneSolitaryNoob

    I’m trying to convert HEIC to JPG using GPAC/MP4Box. I have been able to get small JPG "tiles" for a single HEIC file but I can’t figure out how to get one large JPG.

    Commands are like :

    % MP4Box -dump-item 1:path=tile1.hevc iphonesample.heic
    % ffmpeg -i tile1.hevc -frames:v 1 -q:v 1 -an tile1.jpg