Recherche avancée

Médias (91)

Autres articles (80)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (4111)

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

    


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

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