Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (61)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • 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

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (9637)

  • recive klv data from a ffmpeg mulsticast

    5 avril 2019, par diego

    I am trying to get the klv data from a .mpeg.

    I tried this command and it works perfectly :

    ffmpeg -i video.mpg -map data-re -codec copy -f data data.klv

    Now I would like to open two CMD and transfer it by multicast, how could I do this ? i tried many comands like next ones, but I do not get the same .klv

    sender : ffmpeg -i video.mpeg -c copy -f mpegts udp://239.1.1.1:49410

    receiver : ffmpeg -i udp://239.1.1.1:49410 -map 0 -codec copy -f data data.klv

    I am new with ffmpeg and I do not know exactly what I need to change to get exactly whay I get in the first command.

    Thanks

  • avfilter/vf_lut : gammaval709()

    13 novembre 2014, par Peter Ross
    avfilter/vf_lut : gammaval709()
    

    See http://www.itu.int/rec/R-REC-BT.709
    Item 1.2, overall opto-electronic transfer characteristics at source

    Signed-off-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_lut.c
  • playing multiple intervals of a video [on hold]

    6 juin 2018, par gagan singh

    I have a video. I know how to play one interval say 10s-20s.

    How do I play multiple intervals, say 10s-20s then immediately 30s-50s and so on ?

    I am also fine with running ffmpeg -c once to extract the combined stream of my time ranges.

    In one of the ffmpeg query, some one mentioned edit list support in some video players. What is that ?

    I am fine with playing the video with any linux video player, vlc, mplayer etc.
    anything which can play something like the following.

    player —intervals=10-20,30-50 video.mp4

    basically for a movie, I want to play selected intervals of the movie, instead of the whole movie.

    I hope this makes my question clearer.