
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (77)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (8737)
-
How can I combine two audio file with one video file ?
9 septembre 2019, par A PersonI am trying to combine two audio files (left and right audio) with the video file. I need to make sure that the final output uses the audio files correctly so there is no lip sync issue. the audio file and video file have same time length.
Im trying to use ffmpeg or ffastrans to do it but as i am new to this, im not sure about the commands and possibilities.
I’ve Tried this code below but did not get the output i want.
ffmpeg -i file1.mp3 -i file2.mp3 mix.mp4 -map 0:0 -map 1:0 -newaudio
The expected output should take in the 3 files (2 audio and 1 video) and output a single video file that has audio and video in playback.
-
FFMPEG : How to transcode Attached Picture (APIC) from source mp3 file to destination mp3 file using FFMPEG ?
24 février 2012, par javanetbeansI have input file as 02.mp3. I want to change it to mp3 file with some bit rate. While doing so, I want to preserve all the metadata plus the APIC, attached picture corresponding to image should also be transfered to the destionation file. I am using FFMPEG and i am using the following command...
ffmpeg -y -i 02.mp3 -id3v2_version 3 -ab 128000 -ss 0 -acodec libmp3lame -f mp3 -ac 2 -ar 44100 output.mp3
source file : 02.mp3
destination file : output.mp3.But in destination file, i am not getting APIC(attached picture corresponding to 02.mp3).I am getting all other mp3 tags in output.mp3 except for APIC. How to get APIC in destinaton file as well ?
-
Match audio file with video file in batch (.bat)
3 octobre 2019, par Jake Pearsoni have done my research and found a fairly new thread that opened -> Finding File Matches & Variable Assignment using a .BAT Script
However,it doesn’t seem like this person has same issue as me although they maybe using the same fotware for ingesting the videos as the naming convention says so.
For me i have many different output names. the string in the output files has same name like the thread above ->
channel_typeOfProgram_ID_DatesinString.m2v
or.wav
The one thing thast common is that before the date starts, i have High written in the file name followed by c in the video file name or 00, 01 for audio and i believe in the Finding File Matches & Variable Assignment using a .BAT Script the person who answer it made it clear that 00c is left audio and 01c is right audio.
Here are example of the files names I get.
Video
BA_MUS_006606Highc450277**20190320**1831370611.m2v
Audio
BA_MUS_006606High00c450277201903201831370623.wav
BA_MUS_006606High01c450277201903201831370625.wav
or the file name would have
BA_PRG_006606_02High01c45027720190320183137785
so its a problem to break the code to using delimiters as the number of _ or segments are going to be different.