Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (46)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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 (7041)

  • How to play a Video with mpv with multiple audio streams

    27 février 2024, par T-Ghost

    I try to play a movie in two languages.
Audio 1 to Speaker
Audio 2 to Headset

    


    mpv --lavfi-complex="[aid1] [aid2] amix [ao]" "input.mp4"


    


    Play the video and mix audio1 & audio2 and output is standard device

    


    mpv "input.mp4" --vid=1 --aid=1 --audio-device="wasapi/{d3178b30-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"


    


    Play video with audio1

    


    mpv "input.mp4" --aid=2 --no-video --audio-device="wasapi/{06a44940-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"


    


    Play audio2 only

    


    how to combine this ?

    


  • why jmf can't play rtp stream ?

    24 janvier 2017, par ahmet burak

    I produced an rtp link with ffmpeg and I tried to listen and play this stream. VLC and ffmpeg can play rtp stream, both work well but jmf doesn’t.

    Although there is no any error, jmf doesn’t play rtp stream and there is no sound.

    My rtp stream (http:.. is a radio link and rtp :... my stream)

    ffmpeg -i http://airspectrum.cdnstream1.com:8114/1648_128 -acodec copy -f rtp "rtp ://127.0.0.1:10000/audio/1"

    public void play() {
       MediaLocator mediaLocator = new MediaLocator("rtp://127.0.0.1:10000/audio/1");
       try {
           if (mediaLocator == null) {
               System.err.println("null locator");
           }
           player = Manager.createRealizedPlayer(mediaLocator);
           player.start();
       } catch (CannotRealizeException e) {
           e.printStackTrace();
       } catch (IOException e) {
           e.printStackTrace();
       } catch (NoPlayerException e) {
           e.printStackTrace();
       }

    }
    1. os ubuntu 16.08
    2. java jdk 1.8
    3. javax.media.jmf 2.1.1e (maven repo version)
  • how to play edited videos in mvp

    19 avril 2021, par Eswar T

    how to play edited videos(before exporting them) like how we can play in ffplay like here an example in ffplay so can we also play them using MVP if yes please convert this command thank you

    


    ffplay -i 1.mp4 -ss 00:00:30.100 -t 00:00:10 -af volume=2.0,atempo=2.0-vf transpose=0,transpose=0,setpts=1/0.5*PTS,fps=30) 


    


    and using a playlist how can we play multiple edited files like

    


    ffplay -i 1.mp4 -ss 00:00:30.100 -t 00:00:10 -af volume=2.0,atempo=2.0-vf transpose=0,transpose=0,setpts=1/0.5*PTS,fps=30) && ffplay -i 2.mp4 -ss 00:00:30.100 -t 00:00:10 -af volume=2.0,atempo=2.0-vf transpose=0,transpose=0,setpts=1/0.5*PTS,fps=30)


    


    thank you