Recherche avancée

Médias (91)

Autres articles (85)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8979)

  • Command to get only one audio track in output specified by language code with ffmpeg

    22 mai 2023, par killerlearner

    Ffmpeg Command to get video with only English audio

    


    I tried running ffmpeg -i input_video.ext -map 0:v -map 0:a:language=eng -c:v copy -c:a copy -map_metadata -1 -sn output.mp4
But the output file I got is 0 byte.
So can anyone tell me the write command.
I want to get video with only one language audio, I specify with code like eng, hin etc. With subtitles removed and x264 format !

    


  • ffmpeg c api for cutting video

    13 janvier 2012, par user1148080

    first thing sorry for my bad english, i'm making an android app that need to get part of a video, the idea is i need a method that get input a video file, start-time, end-time then cutting video from star-time to end-time and output to a new file, i get ffmpeg for android from http://bambuser.com/opensource and able to compile it, integrate with JNI, but now i dont know which ffmpeg's api to use for do the thing a need, any help, example are much appreciated.

  • FFMPEG action on events

    19 décembre 2022, par A. Sk.

    iam trying to make action on events in FFMPEG.

    


    For example : ffmpeg -i http://domain/index.m3u8 -c copy -f segment -strftime 1 -segment_time 10 %Y-%m-%d-%H-%M-%S.mp4

    


    FFMPEG take live stream, cut by slices and create files. I want to run a script do_with_file.sh after every slice created, without ffmpeg pausing.

    


    Is there any option in ffmpeg to make it ?

    


    Ofcource, i can take stdout from ffmpeg and looking for "segment" text :
ffmpeg ....mp4 | grep 'segment @' | do_with_file.sh

    


    First of all, info line about "segment" showed in stdout, before file was created.
It is not working, if i want run ffmpeg in background.
And in my mind, it is not geek way :)

    


    P.S. English is not my native language, sorry for mistakes.