
Recherche avancée
Autres articles (72)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 (4591)
-
[ffmpeg]How do I play udp streams on my phone
30 décembre 2018, par 徐思龙I used FFMPEG to record the screen push stream [UDP]
This is the command line I typed
Ffmpeg-f gdigrab-framerate 25-offset_x 10-offset_y 20-video_size 640x480-i desktop vcodec libx264-preset :v ultrafast-tune :vzerolatency -f h264 udp ://localhost:8888
ffplay can be played on the localhost :ffplay udp ://192.168.31.18:8888
Use VLC APP on IPHONE, input udp ://192.168.31.18:8888, it can’t play.
What do I need to do ?
thank you
-
How to ssh vps and play the video ?
25 juillet 2017, par scrapyI build apache2 on vps,start it,and upload test.mp4 into /var/www/html.
ffplay http://vps_ip/test.mp4
I can watch test.mp4 ,maybe there is a other way to play it.
1.ssh root@vps_ip
2.mv /var/www/html/test.mp4 /tmp/test.mp4
3.ffplay /tmp/test.mp4
Could not initialize SDL - No available video device
(Did you set the DISPLAY variable?)libsdl2-dev and sdl are all installed on my vps.
How to ffplay it after sshing login it ? -
How to play, pause and stop a video in the buttons of GUI created in Python ?
24 juillet 2016, par PurvajI have created a GUI in Python. In the GUI I have three buttons, Play, Pause and Stop. On the click of the respective buttons, i want the respective tasks to be done, that is, play, pause and stop a video. Any body have any idea please help me. This is what i have tried to do so far :
from tkinter import *
import subprocess
import os
import vlc
root=Tk()
root.title("ARP")
root.geometry("200x100")
def play():
left_video = subprocess.Popen(["C:/Program Files (x86)/VideoLAN/VLC/vlc.exe","\\C:\FFmpegTool\\bin\\samplevideo.mp4"])
right_video = subprocess.Popen(["C:/Program Files (x86)/VideoLAN/VLC/vlc.exe","\\C:\FFmpegTool\\bin\\rotate1.mp4"])
app=Frame(root)
app.grid()
button1=Button(app, text="Play", command=play)
button1.grid()
button2=Button(app)
button2.grid()
button2.configure(text="Pause")
button3=Button(app)
button3.grid()
button3.configure(text="Stop")
root.mainloop()Please help me.