Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (51)

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

  • Convert a Video_TS dir to a single mp4 or mkv file ?

    29 août 2018, par RocketNuts

    I’ve got a file-to-file copy from a DVD, consisting of a Video_TS directory with a bunch of BUP, IFO and VOB files. I can open some (not all) of these files in a player like VLC, and it seems to contain fragments of the movie but it appears like garbage. As if the encoding or file structure is corrupted.

    However, if I open the entire Video_TS dir with VLC, it plays fine.

    Is there a way to convert this Video_TS dir to one single video file, such as an MP4 or MKV ?

    I’ve read about the possibility of binary concatenating the VOB files, and I tried that, but to no avail. Also I wouldn’t know how to the determine the exact order of the VOB files, and more importantly that information must be within the files itself somehow (considering that video players can play it automatically).

    (edit) Someone edited the question and removed the ffmpeg part. Sorry if I didn’t clarify this further : I’m actually explicitly looking for a way to do this with ffmpeg (from shell, on macOS).

  • Symfony2 command different behavior in cli and from incron

    27 janvier 2014, par user3227518

    I'm using incron to watch a folder and each time a file is uploaded to it a Symfony2 command is executed to encode a video and store it in my application.

    The encoding is made through shell scripts using ffmpeg. It works fine when I use the command in cli (php app/console ...) but when the same command is called from incron, it's like ffmpeg won't work.

    Do you have any idea why the scripts would behave differently when the same command is used ?

    shell_exec("/absolute/path/to/script.sh /absolute/path/to/file1.avi
    /absolute/path/to/file2.avi /absolute/path/to/output/output.avi") ;

    Thanks in advance !

  • Fastest way to combine an image and audio file to make a video using ffmpeg

    10 septembre 2020, par Ritik Sahu Student

    i am using ffmpeg to combine an image and audio to make video with this command from my python program

    


    process = subprocess.Popen('ffmpeg -loop 1 -i "{picture}" -i "{audio}" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest "{out_path}"'.format(picture=picture, audio=audio, out_path=out_path), stdout=subprocess.PIPE, shell=False)


    


    but it is taking very long almost 30-45 minutes on my pc with specifications 1GB Ram and intel xenon processor. is there any way to make this process faster
i am ready to compromise the quality (decent).