
Advanced search
Medias (91)
-
MediaSPIP Simple : futur thème graphique par défaut?
26 September 2013, by
Updated: October 2013
Language: français
Type: Video
-
avec chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
sans chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
config chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
SPIP - plugins - embed code - Exemple
2 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
GetID3 - Bloc informations de fichiers
9 April 2013, by
Updated: May 2013
Language: français
Type: Picture
Other articles (83)
-
MediaSPIP v0.2
21 June 2013, byMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP Core : La Configuration
9 November 2010, byMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...) -
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
On other websites (7283)
-
avformat/file: Fix file delete for Windows
31 December 2018, by Karthick Jeyapal -
How to copy ffmpeg conversion output to file name without previous file extension [duplicate]
20 January, by TimI am trying to batch convert mp4 music files to m4a music files using ffmpeg on ubuntu .The command works but uses previous file extension for new name.


find ./ -iname "*.mp4" type f -exec ffmpeg -i {} -vn -acodec cp "{}".m4a 



This command produces a new file as such:
..01_Loser.mp4.m4a


but I need
..01_Loser.m4a


I cannot figure out how to get file name without previous extension. Any help would be appreciated. Thanks!


-
How to make ffmpeg delete the original file after changing containers? (using a send to bat file)
12 March 2020, by BloggyI’m currently using a bat file in my shell:sendto folder that allows me to right click MKV files and open a cmd window that uses ffmpeg to change containers and produces an mp4 in the same directory as the source file. It works great, but I’d like to automate the process of deleting the original MKVs after (successfully) changing containers, and skipping the recycle bin if possible.
Right now my .bat file is like follows:
"C:\ffmpeg\bin\ffmpeg.exe" -i %1 -codec copy "%~n1.mp4"
I’ve looked it up already but could only find a similar question about batch processing an entire folder and without the sendto part, and I wasn’t sure how to make that work for me.
So if someone could point me towards what to append to it to make it happpen, I’d appreciate it.Thanks ! :)