
Recherche avancée
Autres articles (53)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 (...)
Sur d’autres sites (5395)
-
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 ?