
Recherche avancée
Autres articles (104)
-
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 (4464)
-
FFMPEG batch for loop with multiple inputs
8 février 2017, par Jack BrownWhat we have :
test.mp3
test.mp4We want to merge this using ffmpeg
ffmpeg -i "test.mp3" -i "test.mp4" -c copy D:\test_final.mp4
The thing is we just need this to do for tons of videos.
What we currently have :
for %%a in ("merge\*.*") do ffmpeg -i "%%a" -i "%%a" -c copy D:\%%~na
So, what’s the correct form ? I have no idea :/
In
merge
there are always mp3 and mp4 files with the same name. -
Stream Desktop with audio FFmpeg
4 décembre 2016, par iNCEPTiON_Im trying to stream my desktop screen with the default audio device to my other computer over my network, it works with gdigrab but i never got the audio working ...
thats what im currently using
ffmpeg -f gdigrab -i desktop -framerate 90 -video_size 1920x1080 -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -f mpegts udp://ip -acodec libmp3lame -ab 32k -ac 1 -re -f udp://ip
ive tryied tons of commands without succes. what am i doing wrong here
-
ffmpeg restream rtsp to mjpeg
20 septembre 2015, par JpaytonWPDI have a few IP cameras that stream 720 X264 video over rtsp. The streams are really unreliable when viewing on Android. They also fail if more then 2 connections are made.
I have a ubuntu server that I can use to connect and restream as mjpeg or something else. There are tons of different commands out there but they all seem to involve transcoding the video.
How can I simply restream the live rtsp feed as a mjpeg without doing anything to the video itself ? Theres no audio so no worries there.