
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (66)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (6110)
-
Minutes and seconds as variabe in Python
7 avril 2014, par Badr HariHow can I store hours/minutes/seconds as variable in python ?
For example :
time = "01:30" # 1 minute and 30 seconds
time2 = time + 10 secondsBasically a program (using FFMPEG) will decide when to start playing an audio file but the value can be changed in +-10 seconds, the questions is how can I store this value.
Last try to clarify my question :
time variable is "01:30" which clearly represent the time, 01 min 30 seconds, how can I add 10 seconds to it to make the variable 10:40, clearly 01:30+:00:10 is not the solution.Sorry for confusion folks, I do my best.
-
FFMPEG Video with extremely long audio
13 janvier 2021, par Dean Van GreunenThe issue with ffmpeg.


- 

- A 10 second video plays for 3 hours due to audio also the video is frozen on the first frame
- If I remove the audio using the -an flag then the video duration is correct and the video plays corretly, but I would still like to have the audio in the video.






Any idea ?


Here is my FFMPEGargs


ffmpeg -i video.webm -c:v copy -c:a copy output.mp4



-
libavdevice/decklink : add support for 10-bit output for Decklink SDI
6 octobre 2017, par Devin Heitmuellerlibavdevice/decklink : add support for 10-bit output for Decklink SDI
Can be tested via the following command :
./ffmpeg -i foo.ts -f decklink -vcodec v210 'DeckLink Duo (1)'
Note that the 8-bit support works as it did before, and setting
the pix_fmt isn't required for 10-bit mode. The code defaults to
operating in 8-bit mode when no vcodec is specified, for backward
compatibility.Updated to reflect feedback from Marton Balint <cus@passwd.hu>
Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
Signed-off-by : Marton Balint <cus@passwd.hu>