Posts by Evandro Klimpel Balmant • 144 points
7 posts
-
0
votes1
answer405
viewsA: Header command in PHP
You will not be able to do this with header('Location: '), pq when working with classes need to instantiate an object and call a method. You can do it like this: require…
-
1
votes3
answers1419
viewsA: Clicking on <li> the <a> link also work
If you set in CSS li a { display: block; } The "A" tag is the same width as the "LI", consequently everything is linked.
-
4
votes1
answer812
viewsA: Redirect page after uploading file for download
I don’t know the context, but maybe if you do this page that forces the download to open in a target="_Blank" already solve the download. To redirect would be to treat the click with JS, like this:…
phpanswered Evandro Klimpel Balmant 144 -
0
votes2
answers200
viewsA: How do I get Bitrate Mode from a C#MP3?
Along with the installation of ffmpeg you will also have available the ffprobe command for reading metadata of video and audio files. Follow an example of this command with return in JSON ffprobe -v…
-
1
votes1
answer117
viewsA: Take screenshot in the middle of ffmpeg / ffprobe video?
To catch a frame in the second 18: ffmpeg -ss 18 -i video.mp4 -vframes 1 -f image2 frame.jpg
-
1
votes3
answers332
viewsA: Is it possible to force Html5 video to play videos with other extensions, as if it were normal video?
I understand your case with the different extensions, maybe the tag video causes some problems for you. Recently I worked on a project with videos and had to treat the formats using FFMPEG to export…
-
2
votes1
answer963
viewsA: Advanced PHP search
First you need to create the search form with the fields you mentioned, this can be with tags for some but for the value I think you will need to create a "range", type value between X and Y.…