Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (68)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (5916)

  • Anomalie #4468 : CSS colonne gauche du privé

    7 avril 2020

    RastaPopoulos :
    peut-être une variante "important" qui justement là prend la couleur principale ?

    Oui tant qu’à faire

    marcimat :
    Ça pourrait pas être renommé le "boutons_groupe" en anglais (le reste des classes de cette catégorie est en anglais ; ça fait bizarre, même le .block que tu ajoutes...)

    Heu, du coup j’ai pas compris, tu suggères de tout mettre en français ou en anglais ?
    L’un ou l’autre pourquoi pas, avec le mélange actuel on sait pas trop sur quel pied danser quand on arrive après pour ajouter des trucs.

    Le .boutons_groupe à la place de .button-group c’était pour que ça soit cohérent quand c’est utilisé dans les formulaires :

    Le .block c’est un peu pareil : c’est une classe qu’on peut passer en paramètre de |icone_horizontale et de #BOUTON_ACTION, et là actuellement c’est que des termes anglais (add, link, etc.)

    C’est pas simple cette histoire...

    b b :

    faut s’y retrouver dans ces CSS minifiées

    Pour info c’est débrayable avec define(’_INTERDIRE_COMPACTE_HEAD_ECRIRE’,true) ; ;)

    Ah mais je parlais de l’écriture avec toutes les règles sur une ligne et sans espace dans les CSS :
    .classe{truc:machin;chose:bidule;pouet:truc;}

    J’ai perdu un dizième à chaque oeil à tout relire :p

  • ffmpeg configuration difficulty with filter_complex and hls

    4 février 2020, par akc42

    I am trying to set up ffmpeg so that it will record from a microphone and encode the results at the same time into a .flac file for later syncing up with some video I will be making.

    The microphone is plugged into a raspberry pi (4B) and I am currently trying it with a blue yeti mic, but I think I can do the same with a focusrite scarlett 2i2 plugged in instead. However I was puzzling about how to start the server recording and decided I could do it from a web browser if I made a simple nodejs server that spawned ffmpeg as a child process.

    But then I was inspired by this sample ffmpeg command which displays (on my desktop with an graphical interface) a volume meter

    ffmpeg -hide_banner -i 'http://distribution.bbb3d.renderfarming.net/video/mp4/bbb_sunflower_1080p_30fps_normal.mp4' -filter_complex "showvolume=rate=25:f=0.95:o=v:m=p:dm=3:h=80:w=480:ds=log:s=2" -c:v libx264 -c:a aac -f mpegts - | ffplay -window_title "Peak Volume" -i -

    What if I could stream the video produced by the showvolume filter to the web browser that I am using to control the ffmpeg process (NOTE I don’t want to send the audio with this). So I tried to read up on hls (since the control device will be an ipad - in fact that is what I will record the video on), and came up with this command

    ffmpeg -hide_banner -f alsa -ac 2 -ar 48k -i hw:CARD=Microphone -filter_complex "asplit=2[main][vol],[vol]showvolume=rate=25:f=0.95:o=v:m=p:dm=3:h=80:w=480:ds=log:s=2[vid]" -map [main] -c:a:0 flac recordings/session_$(date +%a_%d_%b_%Y___%H_%M_%S).flac -map [vid] -preset veryfast -g 25 -an -sc_threshold 0 -c:v:1 libx264 -b:v:1 2000k -maxrate:v:1 2200k -bufsize:v:3000k -f hls -hls_time 4 -hls_flags independent_segments delete_segments -strftime 1 -hls_segment_filename recordings/volume-%Y%m%d-%s.ts recordings/volume.m3u8

    The problem is I am finding the documentation a bit opaque as to what happens once I have generated two streams - the main audio and a video stream, and this command throws both a warning and an error :-

    The warning is Guessed Channel Layout for Input Stream #0.0 : stereo

    and the error is

    [NULL @ 0x1baa130] Unable to find a suitable output format for 'hls'
    hls: Invalid argument

    What I am trying to do is set up stream labels [main] and [vol] as I split the incoming audio into two parts, then I pass [vol] through the "showvolume" filter and end up with stream [vid].

    I think I need to then use -map to specify encoding the [main] stream down to flac and writing it out to file (The file exists after I run the command although they have zero length), and use another -map to pass through to the -f hls section. But I think I have something wrong at this stage.

    Can someone help me get this command right.

  • FFMPEG Concat fast video .ts to .mp4

    7 octobre 2015, par thiago.adriano26

    How Can I Optimization this concat ? I’m trying concat two movies with 30 minutes in one with 1 hour in .mp4. Look at my example below :

    ffmpeg -i "concat:E:\Servico\Band\Videos\video-07-10-2015_10-32-21.ts|E:\Servico\Band\Videos\video-07-10-2015_09-43-22.ts " -preset ultrafast  E:\Servico\Band\Videos\Temp\out.mp4