Recherche avancée

Médias (91)

Autres articles (38)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4184)

  • replace a word in subtitle with ffmpeg

    19 mars 2020, par wotanii

    I want to use ffmpeg to replace all occurrences of a word in all subtitles of a video file with ffmpeg. All non-subtitles channels should be copied (not reencoded) and all formatting from the original subtitles should stay if possible.

    example :

    ffmpeg -i input.mkv -SUBTITLEFILER='old_word/new_word' output.mkv

    I am using ubuntu 19.04 and bash (in case additional steps or dependencies would be required for this)

  • configure : Replace `pr` since it is not provided by busybox

    23 novembre 2015, par Kylie McClain
    configure : Replace `pr` since it is not provided by busybox
    

    While pr is a valid POSIX.1 command, its usage in configure
    is a little borderline and is possible to replace it with
    printf.

    Bug-Id : 913

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] configure
  • Replace blank spaces from arguments to run command

    12 août 2017, par ChrisBlp

    I’m using Runtime.getRuntime.exec(String) to cut some songs with ffmpeg.
    But when my song has a name with a blankspace it doesn’t work ...

    So before I cut the song, I want to replace every blank space of my songs by "\ ".

    I did that :

    String in = directory+songs.get(i);
    String out = directory+"trimed_"+songs.get(i);
    in.replaceAll(" "," \\ ");
    out.replaceAll(" ", "\\ ");
    String str = "ffmpeg -t 1 -i "+in+" -vcodec copy "+out;
    Runtime.getRuntime().exec(str);

    But it doesn’t replace anything at all when I print str, am I missing something ?

    Update : I tried every ideas given bellow and I didn’t find a way to fix the problem. Hence, I replaced the blankspaces by "_" and it’s working great.