
Recherche avancée
Autres articles (51)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
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 (10214)
-
Finding file extension for media file using ffprobe
12 septembre 2013, par luddetI'm writing a media handling tool, using ffmpeg and ffprobe.
Part of the workflow consists of the application retreiving media files with nondescript extensionless file names.
Now I could get the extension from the media source but that would not fit as neatly into the program code flow, so I'm using ffprobe to extract the format information.The problem i have encountered is the format "QuickTime / MOV" where ffprobe gives me
format_name="mov,mp4,m4a,3gp,3g2,mj2"
Is there a way to know which of the extensions is most appropriate ?
I guess the simplest solution is to pick the first,
mov
, since that should work for all of them. But I would prefer to be more specific.Any way to accomplish this ?
-
Renaming carrierwave extension before process ends
6 septembre 2013, par JanI have an audiofile which gets uploaded via carrierwave. I wanna rename the current_file before it gets processed.
When I do processing a version, normally I rewrite the file extension via
def full_filename(for_file=file)
super.chomp(File.extname(super)) + '.mp3'
endbut this will be executed after the version creation process.
How can I make a version and renmame it before it gets saved.
To be more concret :
I am converting an WAV file to a MP3 by using ffmpeg.
FFMPEG needs an inputfile (-i inputfile.wav) and and outputfilename which needs the mp3 fileextension to process an mp3. (output.mp3 in my case)
How can I rename the extension before it get's saved ?
ffmpeg -i inputfile.wav -acodec libmp3lame -f mp3 watermarked.mp3
HOW CAN I RENAME THE EXTENSTION BEFORE IT GET SAVED? ^^^The above snip (-f forcing the codec and format) does NOT it's job and
def full_filename(for_file=file)
super.chomp(File.extname(super)) + '.mp3'
endis happening too late (done after processing)
How can I rename the temporary Carrierfile name ?
-
x11grab : Drop a spurious space in the extension reporting message
27 août 2014, par Luca Barbato