Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (112)

  • 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 ;

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (11355)

  • arm : hpeldsp : prevent overreads in armv6 asm

    5 mars 2014, par Janne Grunau
    arm : hpeldsp : prevent overreads in armv6 asm
    

    Based on a patch by Russel King <rmk+libav@arm.linux.org.uk>

    Bug-Id : 646
    CC : libav-stable@libav.org

    • [DH] libavcodec/arm/hpeldsp_armv6.S
    • [DH] libavutil/arm/asm.S
  • FFMPEG : Multiple cuts/splices in the same video ? [duplicate]

    10 août 2018, par Brayden

    This question already has an answer here :

    Sorry in advance if this was a duplicate. I couldn’t find the solution on Google, since the question is weird to word.

    Anyway, can you use ffmpeg commands to splice videos ?

    For example...

    ffmpeg -i MOVIE.mp4 -ss 00:00:00.000 -to 00:06:14.000 -ss 00:07:00.000 -to 00:07:15.000

    You could have multiple -ss and -to commands to basically designate multiple cuts in the video, so that the final result would be from 0:0 to 6:14, and then after that, directly skip to 7:00 and end finally at 7:15. Does that make sense ?

    I know you can use real editors for this, but that’s a bit more time consuming than to just simply do it here with a command. However, if it doesn’t have this feature, it’s not a big deal, I was just wondering.

    Thanks !

  • ffmpeg doesn't accept input in script

    21 octobre 2022, par Eberhardt

    this is a beginner's question but i can't figure out the answer after looking into it for several days :

    &#xA;

    I want ffmpeg to extract the audio portion of a video and save it in an .ogg container. If i run the following command in terminal it works as expected :

    &#xA;

    ffmpeg -i example.webm -vn -acodec copy example.ogg&#xA;

    &#xA;

    For convenience, i want to do this in a script. However, if i pass a variable to ffmpeg it apparently just considers the first word and produces the error "No such file or directory".

    &#xA;

    I noticed that my terminal escapes spaces by a \ so i included this in my script. This doesn't solve the problem though.

    &#xA;

    Can someone please explain to me, why ffmpeg doesn't consider the whole variable that is passed to it in a script while working correctly when getting passed the same content in the terminal ?

    &#xA;

    This is my script that passes the filename with spaces escaped by \ to ffmpeg :

    &#xA;

    #!/bin/bash&#xA;&#xA;titelschr=$(echo $@ | sed "s/ /\\\ /g")&#xA;titelohne=$(echo $titelschr | cut -d. -f 1)&#xA;titelogg=$(echo -e ${titelohne}.ogg)  &#xA;&#xA;ffmpeg -i $titelschr -vn -acodec copy $titelogg&#xA;

    &#xA;

    Thank you very much in advance !

    &#xA;