
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (38)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer 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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (7132)
-
ffmpeg and Youtube upload - can't merge existing audio track with external one
9 avril 2012, par Aleksy GoroszkoI am realizing campaign, where idea is that users are creating TV ad. The process looks as following :
- User watches ad (youtube video)
- User selects video (mp4 file played in Flash Player)
- User records his own voice using webcam/mic for the selected video
- User's voice is uploaded to server
- User's voice is merged with selected video (video+music) and saved as mp4 file
- User's video is uploaded to youtube
When realizing audio-video merging I found some suprises :
When I was using command
ffmpeg -i sourceVideoFile.mp4 -i sourceAudioFile.mp3 -acodec copy -vcodec copy outputFile.mp4 - video's music was replaced by user's voice.
So I used option -newaudio :
ffmpeg -i sourceVideoFile.mp4 -i sourceAudioFile.mp3 -acodec copy -vcodec copy outputFile.mp4 -newaudio - I can hear that output video has both music and user's voice. So - that's what I wanted to reach. But...
The surprize is that if I upload this video to Youtube, after it's processing I can watch it and hear only music. User's voice disappears !
So, how to keep both voice and music ?
Any idea, gurus ? :)
-
PaperClip check existence before process
15 juin 2015, par bobbystouketI’m trying to skip
PaperClip
process if my music has been deleted.Basically when I upload a music, I want to destroy every single piece of this uploaded file if something went wrong. This operation is delayed and done by
ffmpeg
. Another task is delayed to attached picture to my music.Unfortunately,
PaperClip
process (to attach the picture) has already been delayed when I destroy bad musics. This means when the process starts the source doesn’t exist anymore.
This blocks mydelayed_jobs
and I have to destroy it manually.I’m using Delayed_paperclip to create those delayed jobs.
How can I check if the source exists before processing ?
-
Batch : Looping through folders and subfolders and get them into a script
2 janvier 2017, par arielbejeI want to convert
.flac
files fromX:\Music\flac\flacfolder\name.flac
toX:\Music\mp3\flacfolder\name.mp3
usingffmpeg
, but I couldn’t find how to loop through while passing the directory to a different command and manipulating it.