Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (56)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (5162)

  • ffmpeg map and filter_complex subprocess in python

    4 décembre 2015, par jlarsch

    I want to crop and re encode videos via ffmpeg from within python using subprocesses.

    I managed starting a subprocess using a pure string command and shell=True but I want to build more complex commands and would prefer to use shell=False and passing a list of arguments.

    So what works is this form (this is a simplified example, there will be multiple streams in the final version) :

    import subprocess as sp

    sp.Popen('ffmpeg.exe -i Test.avi -filter_complex "[0:v]crop=1024:1024:0:0[out1]" -map [out1] out1.mp4', shell=True)

    This script produces the expected cropped output video.

    For a list of arguments, I tried :

    FFMPEG_PATH = 'ffmpeg.exe'
    aviP='Test.avi'
    sp.Popen([FFMPEG_PATH,
    '-i', aviP,
    '-filter_complex', '[0:v]crop=1024:1024:0:0[out1]',
    '-map', '[out1] out1.mp4'])

    When I execute this second version, simply nothing happens. (no error, no output)

    I suspect I am messing up something in the map command syntax ?

  • Anomalie #4230 : Limite à la longueur des paramètres d’un modèle

    10 février 2021, par b b

    Si tout le monde est d’accord et que SPIP 3.3 est compatible PHP 7.3, on peut fermer non ? Sinon on attend la version de SPIP qui nécessitera PHP 7.3 mini et zou :p

    PS : j’ai bien ri avec le coup de guerre & paix en argument, merci :D

  • ffmpeg : Missing subtitles on iPod

    7 septembre 2016, par forthrin

    I generating a playable video on a 3rd generation iPod Nano using the following command line, but I’m having certain challenges related to subtitles, stability and metadata.

    ffmpeg -y -i in.mkv -i in.srt -profile:v baseline -level 3 -refs 6 -ar 44100 -ac 2 -ab 128k
    -vf "scale=640:-1,pad=iw:480:0:(oh-ih)/2" -map 0:0 -map 0:1 -map 1:0 -map_metadata -1
    -movflags +faststart -scodec mov_text -metadata:s:s:0 language=eng out.mp4
    1. Subtitles won’t show. I tried both iPod settings "Subtitles On" and "Captions On". iPod software is latest 1.1.3. Subtitles show with OS X QuickTime after I change from "Auto" to "English" in the subtitle menu. Is there an ffmpeg flag to make subtitles display on the iPod ?

    2. The video player exits after 11-12 minutes for many of the converted videos. Restricting the bitrate -b:v 600k -bufsize 600k did not help. Any advice how to circumvent this ?

    3. Lastly, how can I make the video show under the "TV show" menu on the iPod ? Couldn’t find any help searching for "ffmpeg metadata tv". Or is this an internal iTunes feature ?