Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (32)

  • 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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • FFMPEG - Accepting GUI inputs from tkiner python

    19 mai 2017, par B Hok
    @echo off for %%a in (*.mp3) DO ffmpeg -i "%%a" -f image2 -loop 1 -r 30 -i img.png -shortest -c:a copy -c:v libx264 -crf 23 -preset veryfast -vf scale=1280:720 -pix_fmt yuv420p "%%a.mp4" pause

    I have this code here, but I can only get the batch program to accept inputs that I manually input in the code. I am trying to get the batch program to accept inputs from tkiner (python GUI). Any advice or direction on how to do this ?

  • FFMPEG - Accepting GUI inputs from tkiner python

    19 mai 2017, par B Hok
    @echo off for %%a in (*.mp3) DO ffmpeg -i "%%a" -f image2 -loop 1 -r 30 -i img.png -shortest -c:a copy -c:v libx264 -crf 23 -preset veryfast -vf scale=1280:720 -pix_fmt yuv420p "%%a.mp4" pause

    I have this code here, but I can only get the batch program to accept inputs that I manually input in the code. I am trying to get the batch program to accept inputs from tkiner (python GUI). Any advice or direction on how to do this ?

  • Save and re-stream RSTP video as straight UDP

    30 septembre 2013, par user1701362

    I am trying to write a program that will connect to a RTSP video source and redirect the video data to another location using UDP. I am also saving the RTSP packets to be able to replay the video stream at a latter moment in time as well. Right now my program can connect to the RTSP video stream and redirect and save, but when I try to look at the redirected video I get nothing using VLC.

    Currently the program just strips out the datagram from the RTSP video packets it receives in its open UDP socket and re-sends them using this code using the boost asio library.

    newVideoSocket->send_to(&dg.data[0], dg.data.size() ,Endpoint);

    When I look at the traffic using Wireshark I see that it is actually sending the data to the new address and it is recognized as a UDP packet, but when I try and view the video using VLC nothing happens. The video stream is Mpeg4 with the video encoded as H.264 and VLC can play it.

    I have tried to connect to the redirected stream as UDP and as RTP at both multicast and unicast addresses but have had no success. Do I need to add or take something out of the datagram before I resend it ? Or is it something wrong with how I am tring to view it in VLC ? Thanks for the help.