
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (65)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (5696)
-
Complex, how to -o, -mv or similar into this code ? [closed]
13 décembre 2020, par Sounds GoodTrying to change location of output file
Using Windows>Ubuntu app>Shell/Cmd>Bash (because Windows alone code does not work at all)
Using Ffmpeg/Youtube-dl/Sed together
It works on its own :


ffmpeg $( youtube-dl -f bestvideo+bestaudio --youtube-skip-dash-manifest -g https://www.youtube.com/watch?v=zSyNOO_gvUY | sed "s/.*/-ss 04:09 -to 04:15 -i &/") -map 0:v -map 1:a -c:v libx264 -c:a aac name.mp4


Bash starts as :
:/mnt/c/Users/Machine$


Fallowing just few of many problems I tried to figure out for this :


should I use
/
or\
to "subfolder"

Start from
/
orC
orDesktop
etc.

does
-o
need to be configured and if so how

placements after
Youtube-dl
or in the ending by keepingname.mp4
or not, or changing it to
'-o %(title)s.%(ext)s'
(title change needed as well thought)

help.


-
Symfony2 command different behavior in cli and from incron
27 janvier 2014, par user3227518I'm using
incron
to watch a folder and each time a file is uploaded to it a Symfony2 command is executed to encode a video and store it in my application.The encoding is made through shell scripts using
ffmpeg
. It works fine when I use the command in cli (php app/console ...) but when the same command is called from incron, it's likeffmpeg
won't work.Do you have any idea why the scripts would behave differently when the same command is used ?
shell_exec("/absolute/path/to/script.sh /absolute/path/to/file1.avi
/absolute/path/to/file2.avi /absolute/path/to/output/output.avi") ;Thanks in advance !
-
What kind of stream GStreamer produce ?
16 novembre 2014, par MaxI use following 2 commands to stream video from Raspberry Pi
RaPi
raspivid -t 999999 -h 720 -w 1080 -fps 25 -hf -b 2000000 -o - | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! gdppay ! tcpserversink host=$RA-IP-ADDR port=5000
Linux Box
gst-launch-1.0 -v tcpclientsrc host=$RA-IP-ADDR port=5000 ! gdpdepay ! rtph264depay ! avdec_h264 ! videoconvert ! autovideosink sync=false
But what kind of stream is it ? Can I read it with OpenCV ? or convert with
avconv|ffmpeg
nc $RA-IP-ADDR 5000 | avconv
? or watch with VLC ?