
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (109)
-
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 (...) -
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 (...) -
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 (10814)
-
create video with fluctuated background color and drawbox with fluctuated color ?
27 mai 2019, par WangIs there anyway to create a video with fluctuated background color choosing from a list for example
[R, G, B]
the background color along time will be R,G,B,R,G,B .... I might use nullsrc with geq. But seems the geq is quite slow which apply to each pixel.I would also like to change the color of drawbox too, is there any easy way to do it ? I knew we might be able to use openclsrc but it seems overkill for this simple task.
Update, for drawbox I found a way, which is kind of abuse the timeline editing :
ffmpeg -f lavfi -i smptebars=r=30:d=30:size=800x600 -vf "drawbox=enable='eq(mod(n,3),0)':x=0:y=0:t=20:c=red,drawbox=enable='eq(mod(n,3),1)':x=0:y=0:t=20:c=green,drawbox=enable='eq(mod(n,3),2)':x=0:y=0:t=20:c=blue" /tmp/test_box.mp4
-
ffmpeg copy stream results in output file with twice the bitrate [closed]
19 août 2023, par Karl-Johan V. Jensenffmpeg noob here so sorry if I missed something fundamentally. I have a video from a camera which is not recognized by browsers for playback.


To fix I ran it through "ffmpeg -c copy" in an attempt to fix the meta-data - it works but the bit rate is different in the output file.Command run :


>ffmpeg -i c:\tmp\some-file638280751798189644.mp4 -c copy c:\tmp\output-copied22.mp4



Here is the output of ffprobe on the two files. Notice that the bitrate has gone from 869 kb/s to 1676 kb/s. Is there a way to prevent the "-c copy" command variation to not change the bitrate ?


C:\src\internal_audit_project\ffmpeg-n6.0-latest-win64-gpl-6.0\bin>ffprobe -hide_banner -i c:\tmp\some-file638280751798189644.mp4
Input #0, mpeg, from 'c:\tmp\some-file638280751798189644.mp4':
 Duration: 00:02:35.46, start: 4085.173844, bitrate: 869 kb/s
 Stream #0:0[0x1e0]: Video: hevc (Main), yuvj420p(pc, bt709), 2688x1520, 25.08 tbr, 90k tbn

C:\src\internal_audit_project\ffmpeg-n6.0-latest-win64-gpl-6.0\bin>ffprobe -hide_banner -i c:\tmp\output-copied23.mp4
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'c:\tmp\output-copied23.mp4':
 Metadata:
 major_brand : isom
 minor_version : 512
 compatible_brands: isomiso2mp41
 encoder : Lavf60.3.100
 Duration: 00:01:20.42, start: 0.000000, bitrate: 1676 kb/s
 Stream #0:0[0x1](und): Video: hevc (Main) (hev1 / 0x31766568), yuvj420p(pc, bt709), 2688x1520, 1675 kb/s, 18.05 fps, 25.08 tbr, 90k tbn (default)
 Metadata:
 handler_name : VideoHandler
 vendor_id : [0][0][0][0]



Attempted the following command. Expected the bitrate to be the same but the meta-data of the video file to be re-written, allowing me to play the output file on a browser based player.


>ffmpeg -i c:\tmp\some-file638280751798189644.mp4 -c copy c:\tmp\output-copied22.mp4



-
Heroku build failed & state changed from crashed to down
5 décembre 2020, par Cal92332020-12-05T08:10:45.000000+00:00 app[api]: Build started by user calvin.m71@hotmail.com
2020-12-05T08:11:38.587758+00:00 app[api]: Deploy 4fca112e by user calvin.m71@hotmail.com
2020-12-05T08:11:38.587758+00:00 app[api]: Release v6 created by user calvin.m71@hotmail.com
2020-12-05T08:11:38.635964+00:00 heroku[web.1]: State changed from crashed to down
2020-12-05T08:11:41.000000+00:00 app[api]: Build succeeded
2020-12-05T08:32:12.000000+00:00 app[api]: Build started by user calvin.m71@hotmail.com
2020-12-05T08:32:50.304709+00:00 app[api]: Release v7 created by user calvin.m71@hotmail.com
2020-12-05T08:32:50.304709+00:00 app[api]: Deploy 4fca112e by user calvin.m71@hotmail.com
2020-12-05T08:32:52.000000+00:00 app[api]: Build succeeded



Before it was that there was no ffmpeg buildpack on heroku, I added it with
https://elements.heroku.com/buildpacks/jonathanong/heroku-buildpack-ffmpeg-latest


But now I just get state changed and see no errors. Any help would be greatly appreciated !